guc.c 138.0 KB
Newer Older
1 2 3 4 5
/*--------------------------------------------------------------------
 * guc.c
 *
 * Support for grand unified configuration scheme, including SET
 * command, configuration file, and command line options.
6
 * See src/backend/utils/misc/README for more information.
7 8
 *
 *
9
 * Copyright (c) 2000-2005, PostgreSQL Global Development Group
10
 * Written by Peter Eisentraut <peter_e@gmx.net>.
11 12
 *
 * IDENTIFICATION
13
 *	  $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.262 2005/05/15 00:26:19 momjian Exp $
14
 *
15 16 17 18
 *--------------------------------------------------------------------
 */
#include "postgres.h"

19
#include <ctype.h>
20 21 22
#include <float.h>
#include <limits.h>
#include <unistd.h>
23
#include <sys/stat.h>
24 25

#include "utils/guc.h"
26
#include "utils/guc_tables.h"
27

28
#include "catalog/namespace.h"
29
#include "catalog/pg_type.h"
30
#include "commands/async.h"
31
#include "commands/variable.h"
32
#include "commands/vacuum.h"
33
#include "executor/executor.h"
34
#include "fmgr.h"
35
#include "funcapi.h"
36
#include "libpq/auth.h"
37
#include "libpq/pqcomm.h"
38
#include "libpq/pqformat.h"
39
#include "mb/pg_wchar.h"
40 41 42 43
#include "miscadmin.h"
#include "optimizer/cost.h"
#include "optimizer/geqo.h"
#include "optimizer/paths.h"
44
#include "optimizer/prep.h"
45
#include "parser/parse_expr.h"
46
#include "parser/parse_relation.h"
47
#include "postmaster/bgwriter.h"
48
#include "postmaster/syslogger.h"
49
#include "postmaster/postmaster.h"
J
Jan Wieck 已提交
50
#include "storage/bufmgr.h"
51
#include "storage/fd.h"
52 53
#include "storage/freespace.h"
#include "storage/lock.h"
54 55
#include "storage/proc.h"
#include "tcop/tcopprot.h"
56 57
#include "utils/array.h"
#include "utils/builtins.h"
58
#include "utils/memutils.h"
59
#include "utils/pg_locale.h"
60
#include "pgstat.h"
61 62


63 64 65 66
#ifndef PG_KRB_SRVTAB
#define PG_KRB_SRVTAB ""
#endif

67 68 69
#define CONFIG_FILENAME	"postgresql.conf"
#define HBA_FILENAME	"pg_hba.conf"
#define IDENT_FILENAME	"pg_ident.conf"
70

B
Bruce Momjian 已提交
71 72 73
#ifdef EXEC_BACKEND
#define CONFIG_EXEC_PARAMS "global/config_exec_params"
#endif
74 75

/* XXX these should appear in other modules' header files */
76
extern bool Log_disconnections;
77
extern DLLIMPORT bool check_function_bodies;
B
Bruce Momjian 已提交
78 79
extern int	CommitDelay;
extern int	CommitSiblings;
80
extern char *default_tablespace;
81

82
static const char *assign_log_destination(const char *value,
B
Bruce Momjian 已提交
83
					   bool doit, GucSource source);
84

T
Tatsuo Ishii 已提交
85
#ifdef HAVE_SYSLOG
86
extern char *Syslog_facility;
87
extern char *Syslog_ident;
88

89
static const char *assign_facility(const char *facility,
90
				bool doit, GucSource source);
91
#endif
92

93 94 95
static const char *assign_defaultxactisolevel(const char *newval, bool doit,
						   GucSource source);
static const char *assign_log_min_messages(const char *newval, bool doit,
B
Bruce Momjian 已提交
96
						GucSource source);
97
static const char *assign_client_min_messages(const char *newval,
98
						   bool doit, GucSource source);
99
static const char *assign_min_error_statement(const char *newval, bool doit,
100
						   GucSource source);
101
static const char *assign_msglvl(int *var, const char *newval, bool doit,
B
Bruce Momjian 已提交
102
			  GucSource source);
103
static const char *assign_log_error_verbosity(const char *newval, bool doit,
104
						   GucSource source);
105
static const char *assign_log_statement(const char *newval, bool doit,
B
Bruce Momjian 已提交
106
					 GucSource source);
107
static const char *show_num_temp_buffers(void);
108
static bool assign_phony_autocommit(bool newval, bool doit, GucSource source);
109
static const char *assign_custom_variable_classes(const char *newval, bool doit,
B
Bruce Momjian 已提交
110
							   GucSource source);
111 112
static bool assign_stage_log_stats(bool newval, bool doit, GucSource source);
static bool assign_log_stats(bool newval, bool doit, GucSource source);
113
static bool assign_transaction_read_only(bool newval, bool doit, GucSource source);
114
static const char *assign_canonical_path(const char *newval, bool doit, GucSource source);
115

116

117 118
/*
 * GUC option variables that are exported from this module
119
 */
120
#ifdef USE_ASSERT_CHECKING
B
Bruce Momjian 已提交
121
bool		assert_enabled = true;
122
#endif
B
Rename:  
Bruce Momjian 已提交
123
bool		log_duration = false;
B
Bruce Momjian 已提交
124 125 126 127
bool		Debug_print_plan = false;
bool		Debug_print_parse = false;
bool		Debug_print_rewritten = false;
bool		Debug_pretty_print = false;
128
bool		Explain_pretty_print = true;
129

B
Rename:  
Bruce Momjian 已提交
130 131 132 133
bool		log_parser_stats = false;
bool		log_planner_stats = false;
bool		log_executor_stats = false;
bool		log_statement_stats = false;		/* this is sort of all
B
Bruce Momjian 已提交
134
												 * three above together */
135
bool		log_btree_build_stats = false;
136

B
Bruce Momjian 已提交
137
bool		SQL_inheritance = true;
138

139 140
bool		Australian_timezones = false;

141
bool		Password_encryption = true;
142

143
bool		default_with_oids = false;
144

145
int			log_min_error_statement = PANIC;
146
int			log_min_messages = NOTICE;
147
int			client_min_messages = NOTICE;
148
int			log_min_duration_statement = -1;
149

150 151
int			num_temp_buffers = 1000;

152 153 154 155
char	   *ConfigFileName;
char	   *HbaFileName;
char	   *IdentFileName;
char	   *external_pid_file;
156

157

158 159 160 161 162
/*
 * These variables are all dummies that don't do anything, except in some
 * cases provide the value for SHOW to display.  The real state is elsewhere
 * and is kept in sync by assign_hooks.
 */
163
static char *client_min_messages_str;
164 165
static char *log_min_messages_str;
static char *log_error_verbosity_str;
166
static char *log_statement_str;
167
static char *log_min_error_statement_str;
168
static char *log_destination_string;
169
static bool phony_autocommit;
170
static bool session_auth_is_superuser;
171 172 173 174
static double phony_random_seed;
static char *client_encoding_string;
static char *datestyle_string;
static char *default_iso_level_string;
175 176
static char *locale_collate;
static char *locale_ctype;
177
static char *regex_flavor_string;
178
static char *server_encoding_string;
179
static char *server_version_string;
180 181
static char *timezone_string;
static char *XactIsoLevel_string;
182
static char *data_directory;
183
static char *custom_variable_classes;
184 185 186 187 188
static int	max_function_args;
static int	max_index_keys;
static int	max_identifier_length;
static int	block_size;
static bool integer_datetimes;
B
Bruce Momjian 已提交
189

190
/* should be static, but commands/variable.c needs to get at it */
B
Bruce Momjian 已提交
191
char	   *session_authorization_string;
192

193

194
/*
195 196 197
 * Displayable names for context types (enum GucContext)
 *
 * Note: these strings are deliberately not localized.
198
 */
B
Bruce Momjian 已提交
199
const char *const GucContext_Names[] =
200
{
B
Bruce Momjian 已提交
201 202 203 204 205 206
	 /* PGC_INTERNAL */ "internal",
	 /* PGC_POSTMASTER */ "postmaster",
	 /* PGC_SIGHUP */ "sighup",
	 /* PGC_BACKEND */ "backend",
	 /* PGC_SUSET */ "superuser",
	 /* PGC_USERSET */ "user"
207 208 209 210 211 212
};

/*
 * Displayable names for source types (enum GucSource)
 *
 * Note: these strings are deliberately not localized.
B
Bruce Momjian 已提交
213 214
 */
const char *const GucSource_Names[] =
215
{
B
Bruce Momjian 已提交
216 217 218 219 220 221 222 223 224 225 226
	 /* PGC_S_DEFAULT */ "default",
	 /* PGC_S_ENV_VAR */ "environment variable",
	 /* PGC_S_FILE */ "configuration file",
	 /* PGC_S_ARGV */ "command line",
	 /* PGC_S_DATABASE */ "database",
	 /* PGC_S_USER */ "user",
	 /* PGC_S_CLIENT */ "client",
	 /* PGC_S_OVERRIDE */ "override",
	 /* PGC_S_INTERACTIVE */ "interactive",
	 /* PGC_S_TEST */ "test",
	 /* PGC_S_SESSION */ "session"
227 228 229 230 231 232 233 234
};

/*
 * Displayable names for the groupings defined in enum config_group
 */
const char *const config_group_names[] =
{
	/* UNGROUPED */
235
	gettext_noop("Ungrouped"),
236 237
	/* FILE_LOCATIONS */
	gettext_noop("File Locations"),
238
	/* CONN_AUTH */
239
	gettext_noop("Connections and Authentication"),
240
	/* CONN_AUTH_SETTINGS */
241
	gettext_noop("Connections and Authentication / Connection Settings"),
242
	/* CONN_AUTH_SECURITY */
243
	gettext_noop("Connections and Authentication / Security and Authentication"),
244
	/* RESOURCES */
245
	gettext_noop("Resource Usage"),
246
	/* RESOURCES_MEM */
247
	gettext_noop("Resource Usage / Memory"),
248
	/* RESOURCES_FSM */
249
	gettext_noop("Resource Usage / Free Space Map"),
250
	/* RESOURCES_KERNEL */
251
	gettext_noop("Resource Usage / Kernel Resources"),
252
	/* WAL */
253
	gettext_noop("Write-Ahead Log"),
254
	/* WAL_SETTINGS */
255
	gettext_noop("Write-Ahead Log / Settings"),
256
	/* WAL_CHECKPOINTS */
257
	gettext_noop("Write-Ahead Log / Checkpoints"),
258
	/* QUERY_TUNING */
259
	gettext_noop("Query Tuning"),
260
	/* QUERY_TUNING_METHOD */
261
	gettext_noop("Query Tuning / Planner Method Configuration"),
262
	/* QUERY_TUNING_COST */
263
	gettext_noop("Query Tuning / Planner Cost Constants"),
264
	/* QUERY_TUNING_GEQO */
265
	gettext_noop("Query Tuning / Genetic Query Optimizer"),
266
	/* QUERY_TUNING_OTHER */
267
	gettext_noop("Query Tuning / Other Planner Options"),
268
	/* LOGGING */
269
	gettext_noop("Reporting and Logging"),
270 271
	/* LOGGING_WHERE */
	gettext_noop("Reporting and Logging / Where to Log"),
272
	/* LOGGING_WHEN */
273
	gettext_noop("Reporting and Logging / When to Log"),
274
	/* LOGGING_WHAT */
275
	gettext_noop("Reporting and Logging / What to Log"),
276
	/* STATS */
277
	gettext_noop("Statistics"),
278
	/* STATS_MONITORING */
279
	gettext_noop("Statistics / Monitoring"),
280
	/* STATS_COLLECTOR */
281
	gettext_noop("Statistics / Query and Index Statistics Collector"),
282
	/* CLIENT_CONN */
283
	gettext_noop("Client Connection Defaults"),
284
	/* CLIENT_CONN_STATEMENT */
285
	gettext_noop("Client Connection Defaults / Statement Behavior"),
286
	/* CLIENT_CONN_LOCALE */
287
	gettext_noop("Client Connection Defaults / Locale and Formatting"),
288
	/* CLIENT_CONN_OTHER */
289
	gettext_noop("Client Connection Defaults / Other Defaults"),
290
	/* LOCK_MANAGEMENT */
291
	gettext_noop("Lock Management"),
292
	/* COMPAT_OPTIONS */
293
	gettext_noop("Version and Platform Compatibility"),
294
	/* COMPAT_OPTIONS_PREVIOUS */
295
	gettext_noop("Version and Platform Compatibility / Previous PostgreSQL Versions"),
296
	/* COMPAT_OPTIONS_CLIENT */
297
	gettext_noop("Version and Platform Compatibility / Other Platforms and Clients"),
298 299 300 301
	/* PRESET_OPTIONS */
	gettext_noop("Preset Options"),
	/* CUSTOM_OPTIONS */
	gettext_noop("Customized Options"),
302
	/* DEVELOPER_OPTIONS */
303
	gettext_noop("Developer Options"),
304
	/* help_config wants this array to be null-terminated */
305 306 307
	NULL
};

308 309 310 311 312
/*
 * Displayable names for GUC variable types (enum config_type)
 *
 * Note: these strings are deliberately not localized.
 */
B
Bruce Momjian 已提交
313
const char *const config_type_names[] =
314
{
B
Bruce Momjian 已提交
315 316 317 318
	 /* PGC_BOOL */ "bool",
	 /* PGC_INT */ "integer",
	 /* PGC_REAL */ "real",
	 /* PGC_STRING */ "string"
319 320
};

321

322
/*
323 324 325 326
 * Contents of GUC tables
 *
 * See src/backend/utils/misc/README for design notes.
 *
327 328 329
 * TO ADD AN OPTION:
 *
 * 1. Declare a global variable of type bool, int, double, or char*
B
Bruce Momjian 已提交
330
 *	  and make use of it.
331 332
 *
 * 2. Decide at what times it's safe to set the option. See guc.h for
B
Bruce Momjian 已提交
333
 *	  details.
334 335
 *
 * 3. Decide on a name, a default value, upper and lower bounds (if
B
Bruce Momjian 已提交
336
 *	  applicable), etc.
337 338 339
 *
 * 4. Add a record below.
 *
340
 * 5. Add it to src/backend/utils/misc/postgresql.conf.sample, if
B
Bruce Momjian 已提交
341
 *	  appropriate
342
 *
343
 * 6. Add it to src/bin/psql/tab-complete.c, if it's a USERSET option.
344
 *
345
 * 7. Don't forget to document the option.
346 347
 *
 * 8. If it's a new GUC_LIST option you must edit pg_dumpall.c to ensure
B
Bruce Momjian 已提交
348
 *	  it is not single quoted at dump time.
349 350
 */

351

352
/******** option records follow ********/
353

354
static struct config_bool ConfigureNamesBool[] =
355
{
356
	{
357
		{"enable_seqscan", PGC_USERSET, QUERY_TUNING_METHOD,
358
			gettext_noop("Enables the planner's use of sequential-scan plans."),
359 360 361
			NULL
		},
		&enable_seqscan,
362
		true, NULL, NULL
363
	},
364
	{
365
		{"enable_indexscan", PGC_USERSET, QUERY_TUNING_METHOD,
366
			gettext_noop("Enables the planner's use of index-scan plans."),
367 368 369
			NULL
		},
		&enable_indexscan,
370
		true, NULL, NULL
371
	},
372 373 374 375 376 377 378 379
	{
		{"enable_bitmapscan", PGC_USERSET, QUERY_TUNING_METHOD,
			gettext_noop("Enables the planner's use of bitmap-scan plans."),
			NULL
		},
		&enable_bitmapscan,
		true, NULL, NULL
	},
380
	{
381
		{"enable_tidscan", PGC_USERSET, QUERY_TUNING_METHOD,
382
			gettext_noop("Enables the planner's use of TID scan plans."),
383 384 385
			NULL
		},
		&enable_tidscan,
386
		true, NULL, NULL
387 388
	},
	{
389
		{"enable_sort", PGC_USERSET, QUERY_TUNING_METHOD,
390
			gettext_noop("Enables the planner's use of explicit sort steps."),
391 392 393
			NULL
		},
		&enable_sort,
394
		true, NULL, NULL
395
	},
396
	{
397
		{"enable_hashagg", PGC_USERSET, QUERY_TUNING_METHOD,
398
			gettext_noop("Enables the planner's use of hashed aggregation plans."),
399 400 401
			NULL
		},
		&enable_hashagg,
402 403
		true, NULL, NULL
	},
404
	{
405
		{"enable_nestloop", PGC_USERSET, QUERY_TUNING_METHOD,
406
			gettext_noop("Enables the planner's use of nested-loop join plans."),
407 408 409
			NULL
		},
		&enable_nestloop,
410
		true, NULL, NULL
411 412
	},
	{
413
		{"enable_mergejoin", PGC_USERSET, QUERY_TUNING_METHOD,
414
			gettext_noop("Enables the planner's use of merge join plans."),
415 416 417
			NULL
		},
		&enable_mergejoin,
418
		true, NULL, NULL
419 420
	},
	{
421
		{"enable_hashjoin", PGC_USERSET, QUERY_TUNING_METHOD,
422
			gettext_noop("Enables the planner's use of hash join plans."),
423 424 425
			NULL
		},
		&enable_hashjoin,
426
		true, NULL, NULL
427 428
	},
	{
429
		{"geqo", PGC_USERSET, QUERY_TUNING_GEQO,
430
			gettext_noop("Enables genetic query optimization."),
431
			gettext_noop("This algorithm attempts to do planning without "
432
						 "exhaustive searching.")
433 434
		},
		&enable_geqo,
435
		true, NULL, NULL
436
	},
437
	{
438 439
		/* Not for general use --- used by SET SESSION AUTHORIZATION */
		{"is_superuser", PGC_INTERNAL, UNGROUPED,
440
			gettext_noop("Shows whether the current user is a superuser."),
441 442 443
			NULL,
			GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
444 445 446
		&session_auth_is_superuser,
		false, NULL, NULL
	},
447
	{
448
		{"ssl", PGC_POSTMASTER, CONN_AUTH_SECURITY,
449
			gettext_noop("Enables SSL connections."),
450 451 452
			NULL
		},
		&EnableSSL,
453
		false, NULL, NULL
454 455
	},
	{
456
		{"fsync", PGC_SIGHUP, WAL_SETTINGS,
457
			gettext_noop("Forces synchronization of updates to disk."),
458
			gettext_noop("The server will use the fsync() system call in several places to make "
459 460
						 "sure that updates are physically written to disk. This insures "
						 "that a database cluster will recover to a consistent state after "
461
						 "an operating system or hardware crash.")
462 463
		},
		&enableFsync,
464
		true, NULL, NULL
465
	},
466
	{
467
		{"zero_damaged_pages", PGC_SUSET, DEVELOPER_OPTIONS,
468
			gettext_noop("Continues processing past damaged page headers."),
469 470 471 472
			gettext_noop("Detection of a damaged page header normally causes PostgreSQL to "
			"report an error, aborting the current transaction. Setting "
						 "zero_damaged_pages to true causes the system to instead report a "
						 "warning, zero out the damaged page, and continue processing. This "
473
						 "behavior will destroy data, namely all the rows on the damaged page."),
474
			GUC_NOT_IN_SAMPLE
475 476
		},
		&zero_damaged_pages,
477 478
		false, NULL, NULL
	},
479
	{
480
		{"silent_mode", PGC_POSTMASTER, LOGGING_WHEN,
481
			gettext_noop("Runs the server silently."),
482
			gettext_noop("If this parameter is set, the server will automatically run in the "
B
Bruce Momjian 已提交
483
			 "background and any controlling terminals are dissociated.")
484 485
		},
		&SilentMode,
486
		false, NULL, NULL
487 488
	},
	{
489
		{"log_connections", PGC_BACKEND, LOGGING_WHAT,
490
			gettext_noop("Logs each successful connection."),
491 492 493
			NULL
		},
		&Log_connections,
494
		false, NULL, NULL
495
	},
496 497
	{
		{"log_disconnections", PGC_BACKEND, LOGGING_WHAT,
P
Peter Eisentraut 已提交
498
			gettext_noop("Logs end of a session, including duration."),
B
Bruce Momjian 已提交
499
			NULL
500 501 502 503
		},
		&Log_disconnections,
		false, NULL, NULL
	},
504

505
#ifdef USE_ASSERT_CHECKING
506
	{
507
		{"debug_assertions", PGC_USERSET, DEVELOPER_OPTIONS,
508
			gettext_noop("Turns on various assertion checks."),
509
			gettext_noop("This is a debugging aid."),
510 511 512
			GUC_NOT_IN_SAMPLE
		},
		&assert_enabled,
513
		true, NULL, NULL
514
	},
515 516
#endif

517 518
	{
		/* currently undocumented, so don't show in SHOW ALL */
519
		{"exit_on_error", PGC_USERSET, UNGROUPED,
520
			gettext_noop("no description available"),
521 522 523 524
			NULL,
			GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE
		},
		&ExitOnAnyError,
525 526
		false, NULL, NULL
	},
527
	{
528 529
		{"log_duration", PGC_SUSET, LOGGING_WHAT,
			gettext_noop("Logs the duration of each completed SQL statement."),
530 531 532
			NULL
		},
		&log_duration,
533
		false, NULL, NULL
534 535
	},
	{
536
		{"debug_print_parse", PGC_USERSET, LOGGING_WHAT,
537
			gettext_noop("Prints the parse tree to the server log."),
538
			NULL
539 540
		},
		&Debug_print_parse,
541
		false, NULL, NULL
542 543
	},
	{
544
		{"debug_print_rewritten", PGC_USERSET, LOGGING_WHAT,
545
			gettext_noop("Prints the parse tree after rewriting to server log."),
546 547 548
			NULL
		},
		&Debug_print_rewritten,
549
		false, NULL, NULL
550 551
	},
	{
552
		{"debug_print_plan", PGC_USERSET, LOGGING_WHAT,
553
			gettext_noop("Prints the execution plan to server log."),
554 555 556
			NULL
		},
		&Debug_print_plan,
557
		false, NULL, NULL
558 559
	},
	{
560
		{"debug_pretty_print", PGC_USERSET, LOGGING_WHAT,
561
			gettext_noop("Indents parse and plan tree displays."),
562 563 564
			NULL
		},
		&Debug_pretty_print,
565
		false, NULL, NULL
566 567
	},
	{
568
		{"log_parser_stats", PGC_SUSET, STATS_MONITORING,
569
			gettext_noop("Writes parser performance statistics to the server log."),
570 571 572
			NULL
		},
		&log_parser_stats,
573
		false, assign_stage_log_stats, NULL
574 575
	},
	{
576
		{"log_planner_stats", PGC_SUSET, STATS_MONITORING,
577
			gettext_noop("Writes planner performance statistics to the server log."),
578 579 580
			NULL
		},
		&log_planner_stats,
581
		false, assign_stage_log_stats, NULL
582 583
	},
	{
584
		{"log_executor_stats", PGC_SUSET, STATS_MONITORING,
585
			gettext_noop("Writes executor performance statistics to the server log."),
586 587 588
			NULL
		},
		&log_executor_stats,
589
		false, assign_stage_log_stats, NULL
590 591
	},
	{
592
		{"log_statement_stats", PGC_SUSET, STATS_MONITORING,
593
			gettext_noop("Writes cumulative performance statistics to the server log."),
594 595 596
			NULL
		},
		&log_statement_stats,
597
		false, assign_log_stats, NULL
598
	},
599
#ifdef BTREE_BUILD_STATS
600
	{
601
		{"log_btree_build_stats", PGC_SUSET, DEVELOPER_OPTIONS,
602
			gettext_noop("no description available"),
603 604 605 606
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&log_btree_build_stats,
607
		false, NULL, NULL
608
	},
609 610
#endif

611
	{
612
		{"explain_pretty_print", PGC_USERSET, CLIENT_CONN_OTHER,
613
			gettext_noop("Uses the indented output format for EXPLAIN VERBOSE."),
614 615 616
			NULL
		},
		&Explain_pretty_print,
617
		true, NULL, NULL
618
	},
619
	{
620
		{"stats_start_collector", PGC_POSTMASTER, STATS_COLLECTOR,
621
			gettext_noop("Starts the server statistics-collection subprocess."),
622 623 624
			NULL
		},
		&pgstat_collect_startcollector,
625
		true, NULL, NULL
626 627
	},
	{
628
		{"stats_reset_on_server_start", PGC_POSTMASTER, STATS_COLLECTOR,
629
			gettext_noop("Zeroes collected statistics on server restart."),
630 631 632
			NULL
		},
		&pgstat_collect_resetonpmstart,
633
		true, NULL, NULL
634 635
	},
	{
636
		{"stats_command_string", PGC_SUSET, STATS_COLLECTOR,
637
			gettext_noop("Collects statistics about executing commands."),
638 639 640 641 642
			gettext_noop("Enables the collection of statistics on the currently "
				"executing command of each session, along with the time "
						 "at which that command began execution.")
		},
		&pgstat_collect_querystring,
643
		false, NULL, NULL
644 645
	},
	{
646
		{"stats_row_level", PGC_SUSET, STATS_COLLECTOR,
647
			gettext_noop("Collects row-level statistics on database activity."),
648 649 650
			NULL
		},
		&pgstat_collect_tuplelevel,
651
		false, NULL, NULL
652 653
	},
	{
654
		{"stats_block_level", PGC_SUSET, STATS_COLLECTOR,
655
			gettext_noop("Collects block-level statistics on database activity."),
656 657 658
			NULL
		},
		&pgstat_collect_blocklevel,
659
		false, NULL, NULL
660
	},
661

662
	{
663
		{"trace_notify", PGC_USERSET, DEVELOPER_OPTIONS,
664
			gettext_noop("Generates debugging output for LISTEN and NOTIFY."),
665 666 667 668
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_notify,
669
		false, NULL, NULL
670
	},
671 672

#ifdef LOCK_DEBUG
673
	{
674
		{"trace_locks", PGC_SUSET, DEVELOPER_OPTIONS,
675
			gettext_noop("no description available"),
676 677 678 679
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_locks,
680
		false, NULL, NULL
681 682
	},
	{
683
		{"trace_userlocks", PGC_SUSET, DEVELOPER_OPTIONS,
684
			gettext_noop("no description available"),
685 686 687 688
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_userlocks,
689
		false, NULL, NULL
690 691
	},
	{
692
		{"trace_lwlocks", PGC_SUSET, DEVELOPER_OPTIONS,
693
			gettext_noop("no description available"),
694 695 696 697
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_lwlocks,
698
		false, NULL, NULL
699 700
	},
	{
701
		{"debug_deadlocks", PGC_SUSET, DEVELOPER_OPTIONS,
702
			gettext_noop("no description available"),
703 704 705 706
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Debug_deadlocks,
707
		false, NULL, NULL
708
	},
709 710
#endif

711
	{
712
		{"log_hostname", PGC_SIGHUP, LOGGING_WHAT,
713
			gettext_noop("Logs the host name in the connection logs."),
714 715 716
			gettext_noop("By default, connection logs only show the IP address "
						 "of the connecting host. If you want them to show the host name you "
						 "can turn this on, but depending on your host name resolution "
717
			"setup it might impose a non-negligible performance penalty.")
718 719
		},
		&log_hostname,
720
		false, NULL, NULL
721 722
	},
	{
723
		{"sql_inheritance", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
724
			gettext_noop("Causes subtables to be included by default in various commands."),
725
			NULL
726 727
		},
		&SQL_inheritance,
728
		true, NULL, NULL
729 730
	},
	{
731
		{"australian_timezones", PGC_USERSET, CLIENT_CONN_LOCALE,
732
			gettext_noop("Interprets ACST, CST, EST, and SAT as Australian time zones."),
733
			gettext_noop("Otherwise they are interpreted as North/South American "
734
						 "time zones and Saturday.")
735 736
		},
		&Australian_timezones,
737
		false, ClearDateCache, NULL
738 739
	},
	{
740
		{"password_encryption", PGC_USERSET, CONN_AUTH_SECURITY,
741
			gettext_noop("Encrypt passwords."),
742 743
			gettext_noop("When a password is specified in CREATE USER or "
			"ALTER USER without writing either ENCRYPTED or UNENCRYPTED, "
744
						 "this parameter determines whether the password is to be encrypted.")
745 746
		},
		&Password_encryption,
747
		true, NULL, NULL
748 749
	},
	{
750
		{"transform_null_equals", PGC_USERSET, COMPAT_OPTIONS_CLIENT,
751
			gettext_noop("Treats \"expr=NULL\" as \"expr IS NULL\"."),
752 753 754 755
			gettext_noop("When turned on, expressions of the form expr = NULL "
			"(or NULL = expr) are treated as expr IS NULL, that is, they "
			"return true if expr evaluates to the null value, and false "
			"otherwise. The correct behavior of expr = NULL is to always "
756
						 "return null (unknown).")
757 758
		},
		&Transform_null_equals,
759
		false, NULL, NULL
760
	},
761
	{
762
		{"db_user_namespace", PGC_SIGHUP, CONN_AUTH_SECURITY,
763
			gettext_noop("Enables per-database user names."),
764 765 766
			NULL
		},
		&Db_user_namespace,
767 768
		false, NULL, NULL
	},
769
	{
770 771
		/* only here for backwards compatibility */
		{"autocommit", PGC_USERSET, CLIENT_CONN_STATEMENT,
772 773
			gettext_noop("This parameter doesn't do anything."),
			gettext_noop("It's just here so that we won't choke on SET AUTOCOMMIT TO ON from 7.3-vintage clients."),
774 775 776
			GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE
		},
		&phony_autocommit,
777
		true, assign_phony_autocommit, NULL
778
	},
779
	{
780
		{"default_transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
781
			gettext_noop("Sets the default read-only status of new transactions."),
782 783 784
			NULL
		},
		&DefaultXactReadOnly,
785 786 787
		false, NULL, NULL
	},
	{
788
		{"transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
789
			gettext_noop("Sets the current transaction's read-only status."),
790 791 792 793
			NULL,
			GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&XactReadOnly,
794
		false, assign_transaction_read_only, NULL
795
	},
796
	{
797
		{"add_missing_from", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
798
			gettext_noop("Automatically adds missing table references to FROM clauses."),
799 800 801
			NULL
		},
		&add_missing_from,
802
		false, NULL, NULL
803
	},
804 805
	{
		{"check_function_bodies", PGC_USERSET, CLIENT_CONN_STATEMENT,
806
			gettext_noop("Check function bodies during CREATE FUNCTION."),
807 808 809 810 811
			NULL
		},
		&check_function_bodies,
		true, NULL, NULL
	},
812 813
	{
		{"default_with_oids", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
814
			gettext_noop("Create new tables with OIDs by default."),
B
Bruce Momjian 已提交
815
			NULL
816 817
		},
		&default_with_oids,
818
		false, NULL, NULL
819
	},
820
	{
821
		{"redirect_stderr", PGC_POSTMASTER, LOGGING_WHERE,
P
Peter Eisentraut 已提交
822
			gettext_noop("Start a subprocess to capture stderr output into log files."),
B
Bruce Momjian 已提交
823
			NULL
824
		},
825
		&Redirect_stderr,
826 827
		false, NULL, NULL
	},
828 829
	{
		{"log_truncate_on_rotation", PGC_SIGHUP, LOGGING_WHERE,
P
Peter Eisentraut 已提交
830
			gettext_noop("Truncate existing log files of same name during log rotation."),
831 832 833 834 835
			NULL
		},
		&Log_truncate_on_rotation,
		false, NULL, NULL
	},
836

837 838 839 840 841 842 843 844 845 846 847 848
#ifdef WAL_DEBUG
	{
		{"wal_debug", PGC_SUSET, DEVELOPER_OPTIONS,
			gettext_noop("Emit WAL-related debugging output."),
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&XLOG_DEBUG,
		false, NULL, NULL
	},
#endif

849
	{
850
		{"integer_datetimes", PGC_INTERNAL, PRESET_OPTIONS,
851 852
			gettext_noop("Datetimes are integer based"),
			NULL,
853
			GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
854 855 856 857 858 859 860 861 862
		},
		&integer_datetimes,
#ifdef HAVE_INT64_TIMESTAMP
		true, NULL, NULL
#else
		false, NULL, NULL
#endif
	},

863
	/* End-of-list marker */
864
	{
865 866
		{NULL, 0, 0, NULL, NULL}, NULL, false, NULL, NULL
	}
867 868 869
};


870
static struct config_int ConfigureNamesInt[] =
871
{
872
	{
873
		{"default_statistics_target", PGC_USERSET, QUERY_TUNING_OTHER,
874
			gettext_noop("Sets the default statistics target."),
875
			gettext_noop("This applies to table columns that have not had a "
B
Bruce Momjian 已提交
876
			"column-specific target set via ALTER TABLE SET STATISTICS.")
877 878
		},
		&default_statistics_target,
879 880
		10, 1, 1000, NULL, NULL
	},
881
	{
882
		{"from_collapse_limit", PGC_USERSET, QUERY_TUNING_OTHER,
883 884
			gettext_noop("Sets the FROM-list size beyond which subqueries are not "
						 "collapsed."),
885
			gettext_noop("The planner will merge subqueries into upper "
886
			"queries if the resulting FROM list would have no more than "
887
						 "this many items.")
888 889
		},
		&from_collapse_limit,
890 891 892
		8, 1, INT_MAX, NULL, NULL
	},
	{
893
		{"join_collapse_limit", PGC_USERSET, QUERY_TUNING_OTHER,
894 895
			gettext_noop("Sets the FROM-list size beyond which JOIN constructs are not "
						 "flattened."),
896 897
			gettext_noop("The planner will flatten explicit inner JOIN "
						 "constructs into lists of FROM items whenever a list of no more "
898
						 "than this many items would result.")
899 900
		},
		&join_collapse_limit,
901 902 903
		8, 1, INT_MAX, NULL, NULL
	},
	{
904
		{"geqo_threshold", PGC_USERSET, QUERY_TUNING_GEQO,
905
			gettext_noop("Sets the threshold of FROM items beyond which GEQO is used."),
906 907 908
			NULL
		},
		&geqo_threshold,
909
		12, 2, INT_MAX, NULL, NULL
910
	},
911
	{
912 913
		{"geqo_effort", PGC_USERSET, QUERY_TUNING_GEQO,
			gettext_noop("GEQO: effort is used to set the default for other GEQO parameters."),
914 915
			NULL
		},
916 917 918 919 920 921 922 923
		&Geqo_effort,
		DEFAULT_GEQO_EFFORT, MIN_GEQO_EFFORT, MAX_GEQO_EFFORT, NULL, NULL
	},
	{
		{"geqo_pool_size", PGC_USERSET, QUERY_TUNING_GEQO,
			gettext_noop("GEQO: number of individuals in the population."),
			gettext_noop("Zero selects a suitable default value.")
		},
924
		&Geqo_pool_size,
925
		0, 0, INT_MAX, NULL, NULL
926 927
	},
	{
928
		{"geqo_generations", PGC_USERSET, QUERY_TUNING_GEQO,
929
			gettext_noop("GEQO: number of iterations of the algorithm."),
930
			gettext_noop("Zero selects a suitable default value.")
931 932
		},
		&Geqo_generations,
933
		0, 0, INT_MAX, NULL, NULL
934 935 936
	},

	{
937
		{"deadlock_timeout", PGC_SIGHUP, LOCK_MANAGEMENT,
938
			gettext_noop("The time in milliseconds to wait on lock before checking for deadlock."),
939 940 941
			NULL
		},
		&DeadlockTimeout,
942
		1000, 0, INT_MAX, NULL, NULL
943
	},
944 945

	/*
B
Bruce Momjian 已提交
946 947
	 * Note: There is some postprocessing done in PostmasterMain() to make
	 * sure the buffers are at least twice the number of backends, so the
948 949 950
	 * constraints here are partially unused. Similarly, the superuser
	 * reserved number is checked to ensure it is less than the max
	 * backends number.
951
	 */
952
	{
953
		{"max_connections", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
954
			gettext_noop("Sets the maximum number of concurrent connections."),
955 956 957
			NULL
		},
		&MaxBackends,
958
		100, 1, INT_MAX / BLCKSZ, NULL, NULL
959
	},
960

961
	{
962
		{"superuser_reserved_connections", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
963
			gettext_noop("Sets the number of connection slots reserved for superusers."),
964 965 966
			NULL
		},
		&ReservedBackends,
967
		2, 0, INT_MAX / BLCKSZ, NULL, NULL
968 969
	},

970
	{
971
		{"shared_buffers", PGC_POSTMASTER, RESOURCES_MEM,
972
			gettext_noop("Sets the number of shared memory buffers used by the server."),
973 974 975
			NULL
		},
		&NBuffers,
976
		1000, 16, INT_MAX / BLCKSZ, NULL, NULL
977
	},
978

979 980 981 982 983 984 985 986 987
	{
		{"temp_buffers", PGC_USERSET, RESOURCES_MEM,
			gettext_noop("Sets the maximum number of temporary buffers used by each session."),
			NULL
		},
		&num_temp_buffers,
		1000, 100, INT_MAX / BLCKSZ, NULL, show_num_temp_buffers
	},

988
	{
989
		{"port", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
990
			gettext_noop("Sets the TCP port the server listens on."),
991 992 993
			NULL
		},
		&PostPortNumber,
994
		DEF_PGPORT, 1, 65535, NULL, NULL
995
	},
996

997
	{
998
		{"unix_socket_permissions", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
999
			gettext_noop("Sets the access permissions of the Unix-domain socket."),
1000
			gettext_noop("Unix-domain sockets use the usual Unix file system "
1001
						 "permission set. The parameter value is expected to be an numeric mode "
1002
						 "specification in the form accepted by the chmod and umask system "
1003 1004 1005 1006
						 "calls. (To use the customary octal format the number must start with "
						 "a 0 (zero).)")
		},
		&Unix_socket_permissions,
1007
		0777, 0000, 0777, NULL, NULL
1008
	},
1009

1010
	{
1011 1012 1013
		{"work_mem", PGC_USERSET, RESOURCES_MEM,
			gettext_noop("Sets the maximum memory to be used for query workspaces."),
			gettext_noop("This much memory may be used by each internal "
B
Bruce Momjian 已提交
1014
					 "sort operation and hash table before switching to "
1015
						 "temporary disk files.")
1016
		},
1017 1018
		&work_mem,
		1024, 8 * BLCKSZ / 1024, INT_MAX / 1024, NULL, NULL
1019
	},
1020

1021
	{
1022 1023 1024
		{"maintenance_work_mem", PGC_USERSET, RESOURCES_MEM,
			gettext_noop("Sets the maximum memory to be used for maintenance operations."),
			gettext_noop("This includes operations such as VACUUM and CREATE INDEX.")
1025
		},
1026 1027
		&maintenance_work_mem,
		16384, 1024, INT_MAX / 1024, NULL, NULL
1028
	},
1029

1030 1031 1032 1033 1034 1035 1036 1037 1038
	{
		{"max_stack_depth", PGC_SUSET, RESOURCES_MEM,
			gettext_noop("Sets the maximum stack depth, in kilobytes."),
			NULL
		},
		&max_stack_depth,
		2048, 100, INT_MAX / 1024, assign_max_stack_depth, NULL
	},

J
Jan Wieck 已提交
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
	{
		{"vacuum_cost_page_hit", PGC_USERSET, RESOURCES,
			gettext_noop("Vacuum cost for a page found in the buffer cache."),
			NULL
		},
		&VacuumCostPageHit,
		1, 0, 10000, NULL, NULL
	},

	{
		{"vacuum_cost_page_miss", PGC_USERSET, RESOURCES,
			gettext_noop("Vacuum cost for a page not found in the buffer cache."),
			NULL
		},
		&VacuumCostPageMiss,
		10, 0, 10000, NULL, NULL
	},

	{
		{"vacuum_cost_page_dirty", PGC_USERSET, RESOURCES,
			gettext_noop("Vacuum cost for a page dirtied by vacuum."),
			NULL
		},
		&VacuumCostPageDirty,
		20, 0, 10000, NULL, NULL
	},

	{
		{"vacuum_cost_limit", PGC_USERSET, RESOURCES,
			gettext_noop("Vacuum cost amount available before napping."),
			NULL
		},
		&VacuumCostLimit,
		200, 1, 10000, NULL, NULL
	},

	{
1076 1077
		{"vacuum_cost_delay", PGC_USERSET, RESOURCES,
			gettext_noop("Vacuum cost delay in milliseconds."),
J
Jan Wieck 已提交
1078 1079
			NULL
		},
1080
		&VacuumCostDelay,
1081
		0, 0, 1000, NULL, NULL
J
Jan Wieck 已提交
1082 1083
	},

1084
	{
1085
		{"max_files_per_process", PGC_POSTMASTER, RESOURCES_KERNEL,
1086
			gettext_noop("Sets the maximum number of simultaneously open files for each server process."),
1087 1088 1089
			NULL
		},
		&max_files_per_process,
1090
		1000, 25, INT_MAX, NULL, NULL
1091
	},
1092

1093
#ifdef LOCK_DEBUG
1094
	{
1095
		{"trace_lock_oidmin", PGC_SUSET, DEVELOPER_OPTIONS,
1096
			gettext_noop("no description available"),
1097 1098 1099 1100
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_lock_oidmin,
1101
		FirstNormalObjectId, 0, INT_MAX, NULL, NULL
1102 1103
	},
	{
1104
		{"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS,
1105
			gettext_noop("no description available"),
1106 1107 1108 1109
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&Trace_lock_table,
1110
		0, 0, INT_MAX, NULL, NULL
1111
	},
1112 1113
#endif

1114
	{
1115
		{"statement_timeout", PGC_USERSET, CLIENT_CONN_STATEMENT,
1116
			gettext_noop("Sets the maximum allowed duration (in milliseconds) of any statement."),
1117
			gettext_noop("A value of 0 turns off the timeout.")
1118 1119
		},
		&StatementTimeout,
1120 1121 1122
		0, 0, INT_MAX, NULL, NULL
	},

1123
	{
1124
		{"max_fsm_relations", PGC_POSTMASTER, RESOURCES_FSM,
1125
			gettext_noop("Sets the maximum number of tables and indexes for which free space is tracked."),
1126 1127 1128
			NULL
		},
		&MaxFSMRelations,
1129
		1000, 100, INT_MAX, NULL, NULL
1130 1131
	},
	{
1132
		{"max_fsm_pages", PGC_POSTMASTER, RESOURCES_FSM,
1133
			gettext_noop("Sets the maximum number of disk pages for which free space is tracked."),
1134 1135 1136
			NULL
		},
		&MaxFSMPages,
1137
		20000, 1000, INT_MAX, NULL, NULL
1138
	},
1139

1140
	{
1141
		{"max_locks_per_transaction", PGC_POSTMASTER, LOCK_MANAGEMENT,
1142
			gettext_noop("Sets the maximum number of locks per transaction."),
1143 1144
			gettext_noop("The shared lock table is sized on the assumption that "
						 "at most max_locks_per_transaction * max_connections distinct "
1145
						 "objects will need to be locked at any one time.")
1146 1147
		},
		&max_locks_per_xact,
1148
		64, 10, INT_MAX, NULL, NULL
1149
	},
1150

1151
	{
1152
		{"authentication_timeout", PGC_SIGHUP, CONN_AUTH_SECURITY,
1153
			gettext_noop("Sets the maximum time in seconds to complete client authentication."),
1154 1155 1156
			NULL
		},
		&AuthenticationTimeout,
1157
		60, 1, 600, NULL, NULL
1158
	},
1159

1160
	{
1161 1162
		/* Not for general use */
		{"pre_auth_delay", PGC_SIGHUP, DEVELOPER_OPTIONS,
1163
			gettext_noop("no description available"),
1164 1165 1166 1167
			NULL,
			GUC_NOT_IN_SAMPLE
		},
		&PreAuthDelay,
1168
		0, 0, 60, NULL, NULL
1169
	},
1170

1171
	{
1172
		{"checkpoint_segments", PGC_SIGHUP, WAL_CHECKPOINTS,
1173
			gettext_noop("Sets the maximum distance in log segments between automatic WAL checkpoints."),
1174 1175 1176
			NULL
		},
		&CheckPointSegments,
1177
		3, 1, INT_MAX, NULL, NULL
1178
	},
T
Tom Lane 已提交
1179

1180
	{
1181
		{"checkpoint_timeout", PGC_SIGHUP, WAL_CHECKPOINTS,
1182
			gettext_noop("Sets the maximum time in seconds between automatic WAL checkpoints."),
1183 1184 1185
			NULL
		},
		&CheckPointTimeout,
1186
		300, 30, 3600, NULL, NULL
1187
	},
V
Vadim B. Mikheev 已提交
1188

1189
	{
1190
		{"checkpoint_warning", PGC_SIGHUP, WAL_CHECKPOINTS,
1191 1192
			gettext_noop("Logs if filling of checkpoint segments happens more "
						 "frequently than this (in seconds)."),
1193
			gettext_noop("Write a message to the server log if checkpoints "
1194 1195 1196 1197
						 "caused by the filling of checkpoint segment files happens more "
						 "frequently than this number of seconds. Zero turns off the warning.")
		},
		&CheckPointWarning,
1198 1199 1200
		30, 0, INT_MAX, NULL, NULL
	},

1201
	{
1202
		{"wal_buffers", PGC_POSTMASTER, WAL_SETTINGS,
1203
			gettext_noop("Sets the number of disk-page buffers in shared memory for WAL."),
1204 1205 1206
			NULL
		},
		&XLOGbuffers,
1207
		8, 4, INT_MAX / BLCKSZ, NULL, NULL
1208
	},
V
Vadim B. Mikheev 已提交
1209

1210
	{
1211
		{"commit_delay", PGC_USERSET, WAL_CHECKPOINTS,
1212 1213
			gettext_noop("Sets the delay in microseconds between transaction commit and "
						 "flushing WAL to disk."),
1214 1215 1216
			NULL
		},
		&CommitDelay,
1217
		0, 0, 100000, NULL, NULL
1218
	},
V
Vadim B. Mikheev 已提交
1219

1220
	{
1221
		{"commit_siblings", PGC_USERSET, WAL_CHECKPOINTS,
1222 1223
			gettext_noop("Sets the minimum concurrent open transactions before performing "
						 "commit_delay."),
1224 1225 1226
			NULL
		},
		&CommitSiblings,
1227
		5, 1, 1000, NULL, NULL
1228
	},
1229

1230
	{
1231
		{"extra_float_digits", PGC_USERSET, CLIENT_CONN_LOCALE,
1232
			gettext_noop("Sets the number of digits displayed for floating-point values."),
1233
			gettext_noop("This affects real, double precision, and geometric data types. "
1234
						 "The parameter value is added to the standard number of digits "
1235
						 "(FLT_DIG or DBL_DIG as appropriate).")
1236 1237
		},
		&extra_float_digits,
1238 1239 1240
		0, -15, 2, NULL, NULL
	},

B
Bruce Momjian 已提交
1241
	{
1242
		{"log_min_duration_statement", PGC_SUSET, LOGGING_WHEN,
1243 1244 1245
			gettext_noop("Sets the minimum execution time in milliseconds above which statements will "
						 "be logged."),
			gettext_noop("Zero prints all queries. The default is -1 (turning this feature off).")
1246 1247
		},
		&log_min_duration_statement,
1248
		-1, -1, INT_MAX / 1000, NULL, NULL
B
Bruce Momjian 已提交
1249 1250
	},

J
Jan Wieck 已提交
1251 1252 1253 1254 1255 1256
	{
		{"bgwriter_delay", PGC_SIGHUP, RESOURCES,
			gettext_noop("Background writer sleep time between rounds in milliseconds"),
			NULL
		},
		&BgWriterDelay,
1257
		200, 10, 10000, NULL, NULL
J
Jan Wieck 已提交
1258 1259 1260
	},

	{
1261 1262
		{"bgwriter_lru_maxpages", PGC_SIGHUP, RESOURCES,
			gettext_noop("Background writer maximum number of all pages to flush per round"),
J
Jan Wieck 已提交
1263 1264
			NULL
		},
1265 1266
		&bgwriter_lru_maxpages,
		5, 0, 1000, NULL, NULL
J
Jan Wieck 已提交
1267 1268 1269
	},

	{
1270 1271
		{"bgwriter_all_maxpages", PGC_SIGHUP, RESOURCES,
			gettext_noop("Background writer maximum number of LRU pages to flush per round"),
J
Jan Wieck 已提交
1272 1273
			NULL
		},
1274 1275
		&bgwriter_all_maxpages,
		5, 0, 1000, NULL, NULL
J
Jan Wieck 已提交
1276 1277
	},

1278 1279
	{
		{"log_rotation_age", PGC_SIGHUP, LOGGING_WHERE,
P
Peter Eisentraut 已提交
1280
			gettext_noop("Automatic log file rotation will occur after N minutes"),
B
Bruce Momjian 已提交
1281
			NULL
1282 1283
		},
		&Log_RotationAge,
1284
		24 * 60, 0, INT_MAX / 60, NULL, NULL
1285 1286 1287 1288
	},

	{
		{"log_rotation_size", PGC_SIGHUP, LOGGING_WHERE,
P
Peter Eisentraut 已提交
1289
			gettext_noop("Automatic log file rotation will occur after N kilobytes"),
B
Bruce Momjian 已提交
1290
			NULL
1291 1292
		},
		&Log_RotationSize,
1293
		10 * 1024, 0, INT_MAX / 1024, NULL, NULL
1294 1295
	},

1296
	{
1297
		{"max_function_args", PGC_INTERNAL, PRESET_OPTIONS,
P
Peter Eisentraut 已提交
1298
			gettext_noop("Shows the maximum number of function arguments."),
1299 1300 1301 1302 1303 1304 1305 1306
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&max_function_args,
		FUNC_MAX_ARGS, FUNC_MAX_ARGS, FUNC_MAX_ARGS, NULL, NULL
	},

	{
1307
		{"max_index_keys", PGC_INTERNAL, PRESET_OPTIONS,
P
Peter Eisentraut 已提交
1308
			gettext_noop("Shows the maximum number of index keys."),
1309 1310 1311 1312 1313 1314 1315 1316
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&max_index_keys,
		INDEX_MAX_KEYS, INDEX_MAX_KEYS, INDEX_MAX_KEYS, NULL, NULL
	},

	{
1317
		{"max_identifier_length", PGC_INTERNAL, PRESET_OPTIONS,
1318 1319 1320 1321 1322 1323 1324 1325 1326
			gettext_noop("Shows the maximum identifier length"),
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&max_identifier_length,
		NAMEDATALEN - 1, NAMEDATALEN - 1, NAMEDATALEN - 1, NULL, NULL
	},

	{
1327
		{"block_size", PGC_INTERNAL, PRESET_OPTIONS,
1328 1329 1330 1331 1332 1333 1334 1335
			gettext_noop("Shows size of a disk block"),
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&block_size,
		BLCKSZ, BLCKSZ, BLCKSZ, NULL, NULL
	},

1336
	/* End-of-list marker */
1337
	{
1338
		{NULL, 0, 0, NULL, NULL}, NULL, 0, 0, 0, NULL, NULL
1339
	}
1340 1341 1342
};


1343
static struct config_real ConfigureNamesReal[] =
1344
{
1345
	{
1346
		{"effective_cache_size", PGC_USERSET, QUERY_TUNING_COST,
1347
			gettext_noop("Sets the planner's assumption about size of the disk cache."),
1348 1349 1350 1351 1352
			gettext_noop("That is, the portion of the kernel's disk cache that "
						 "will be used for PostgreSQL data files. This is measured in disk "
						 "pages, which are normally 8 kB each.")
		},
		&effective_cache_size,
1353
		DEFAULT_EFFECTIVE_CACHE_SIZE, 1, DBL_MAX, NULL, NULL
1354
	},
1355
	{
1356
		{"random_page_cost", PGC_USERSET, QUERY_TUNING_COST,
1357 1358
			gettext_noop("Sets the planner's estimate of the cost of a nonsequentially "
						 "fetched disk page."),
1359 1360 1361 1362 1363 1364
			gettext_noop("This is measured as a multiple of the cost of a "
						 "sequential page fetch. A higher value makes it more likely a "
						 "sequential scan will be used, a lower value makes it more likely an "
						 "index scan will be used.")
		},
		&random_page_cost,
1365
		DEFAULT_RANDOM_PAGE_COST, 0, DBL_MAX, NULL, NULL
1366 1367
	},
	{
1368
		{"cpu_tuple_cost", PGC_USERSET, QUERY_TUNING_COST,
1369
			gettext_noop("Sets the planner's estimate of the cost of processing each tuple (row)."),
1370 1371 1372 1373
			gettext_noop("This is measured as a fraction of the cost of a "
						 "sequential page fetch.")
		},
		&cpu_tuple_cost,
1374
		DEFAULT_CPU_TUPLE_COST, 0, DBL_MAX, NULL, NULL
1375 1376
	},
	{
1377
		{"cpu_index_tuple_cost", PGC_USERSET, QUERY_TUNING_COST,
1378 1379
			gettext_noop("Sets the planner's estimate of processing cost for each "
						 "index tuple (row) during index scan."),
1380 1381 1382 1383
			gettext_noop("This is measured as a fraction of the cost of a "
						 "sequential page fetch.")
		},
		&cpu_index_tuple_cost,
1384
		DEFAULT_CPU_INDEX_TUPLE_COST, 0, DBL_MAX, NULL, NULL
1385 1386
	},
	{
1387
		{"cpu_operator_cost", PGC_USERSET, QUERY_TUNING_COST,
1388
			gettext_noop("Sets the planner's estimate of processing cost of each operator in WHERE."),
1389 1390 1391 1392
			gettext_noop("This is measured as a fraction of the cost of a sequential "
						 "page fetch.")
		},
		&cpu_operator_cost,
1393
		DEFAULT_CPU_OPERATOR_COST, 0, DBL_MAX, NULL, NULL
1394 1395 1396
	},

	{
1397
		{"geqo_selection_bias", PGC_USERSET, QUERY_TUNING_GEQO,
1398
			gettext_noop("GEQO: selective pressure within the population."),
1399 1400 1401
			NULL
		},
		&Geqo_selection_bias,
1402 1403
		DEFAULT_GEQO_SELECTION_BIAS, MIN_GEQO_SELECTION_BIAS,
		MAX_GEQO_SELECTION_BIAS, NULL, NULL
1404 1405
	},

1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	{
		{"bgwriter_lru_percent", PGC_SIGHUP, RESOURCES,
			gettext_noop("Background writer percentage of LRU buffers to flush per round"),
			NULL
		},
		&bgwriter_lru_percent,
		1.0, 0.0, 100.0, NULL, NULL
	},

	{
		{"bgwriter_all_percent", PGC_SIGHUP, RESOURCES,
			gettext_noop("Background writer percentage of all buffers to flush per round"),
			NULL
		},
		&bgwriter_all_percent,
		0.333, 0.0, 100.0, NULL, NULL
	},

1424
	{
1425
		{"seed", PGC_USERSET, UNGROUPED,
1426
			gettext_noop("Sets the seed for random-number generation."),
1427 1428 1429
			NULL,
			GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
1430 1431 1432 1433
		&phony_random_seed,
		0.5, 0.0, 1.0, assign_random_seed, show_random_seed
	},

1434
	/* End-of-list marker */
1435
	{
1436
		{NULL, 0, 0, NULL, NULL}, NULL, 0.0, 0.0, 0.0, NULL, NULL
1437
	}
1438 1439 1440
};


1441
static struct config_string ConfigureNamesString[] =
1442
{
B
Bruce Momjian 已提交
1443 1444 1445 1446 1447 1448 1449 1450
	{
		{"archive_command", PGC_SIGHUP, WAL_SETTINGS,
			gettext_noop("WAL archiving command."),
			gettext_noop("The shell command that will be called to archive a WAL file.")
		},
		&XLogArchiveCommand,
		"", NULL, NULL
	},
1451

1452
	{
1453
		{"client_encoding", PGC_USERSET, CLIENT_CONN_LOCALE,
1454
			gettext_noop("Sets the client's character set encoding."),
1455 1456 1457
			NULL,
			GUC_REPORT
		},
1458
		&client_encoding_string,
1459
		"SQL_ASCII", assign_client_encoding, NULL
1460 1461
	},

1462
	{
1463
		{"client_min_messages", PGC_USERSET, LOGGING_WHEN,
1464
			gettext_noop("Sets the message levels that are sent to the client."),
1465 1466 1467 1468 1469 1470
			gettext_noop("Valid values are DEBUG5, DEBUG4, DEBUG3, DEBUG2, "
						 "DEBUG1, LOG, NOTICE, WARNING, and ERROR. Each level includes all the "
						 "levels that follow it. The later the level, the fewer messages are "
						 "sent.")
		},
		&client_min_messages_str,
1471
		"notice", assign_client_min_messages, NULL
1472
	},
1473

1474
	{
1475
		{"log_min_messages", PGC_SUSET, LOGGING_WHEN,
1476
			gettext_noop("Sets the message levels that are logged."),
1477 1478
			gettext_noop("Valid values are DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1, "
						 "INFO, NOTICE, WARNING, ERROR, LOG, FATAL, and PANIC. Each level "
1479
						 "includes all the levels that follow it.")
1480 1481
		},
		&log_min_messages_str,
1482 1483 1484 1485
		"notice", assign_log_min_messages, NULL
	},

	{
1486
		{"log_error_verbosity", PGC_SUSET, LOGGING_WHEN,
1487
			gettext_noop("Sets the verbosity of logged messages."),
1488
			gettext_noop("Valid values are \"terse\", \"default\", and \"verbose\".")
1489 1490
		},
		&log_error_verbosity_str,
1491 1492
		"default", assign_log_error_verbosity, NULL
	},
1493
	{
1494
		{"log_statement", PGC_SUSET, LOGGING_WHAT,
1495
			gettext_noop("Sets the type of statements logged."),
1496
			gettext_noop("Valid values are \"none\", \"ddl\", \"mod\", and \"all\".")
1497 1498 1499 1500
		},
		&log_statement_str,
		"none", assign_log_statement, NULL
	},
1501

1502
	{
1503
		{"log_min_error_statement", PGC_SUSET, LOGGING_WHEN,
1504
			gettext_noop("Causes all statements generating error at or above this level to be logged."),
1505
			gettext_noop("All SQL statements that cause an error of the "
1506
						 "specified level or a higher level are logged.")
1507 1508
		},
		&log_min_error_statement_str,
1509
		"panic", assign_min_error_statement, NULL
1510 1511
	},

B
Add:  
Bruce Momjian 已提交
1512 1513
	{
		{"log_line_prefix", PGC_SIGHUP, LOGGING_WHAT,
B
Bruce Momjian 已提交
1514 1515
			gettext_noop("Controls information prefixed to each log line"),
			gettext_noop("if blank no prefix is used")
B
Add:  
Bruce Momjian 已提交
1516 1517 1518 1519 1520 1521
		},
		&Log_line_prefix,
		"", NULL, NULL
	},


1522
	{
1523
		{"DateStyle", PGC_USERSET, CLIENT_CONN_LOCALE,
1524
			gettext_noop("Sets the display format for date and time values."),
1525
			gettext_noop("Also controls interpretation of ambiguous "
1526
						 "date inputs."),
1527 1528
			GUC_LIST_INPUT | GUC_REPORT
		},
1529
		&datestyle_string,
1530
		"ISO, MDY", assign_datestyle, NULL
1531
	},
1532

1533 1534 1535 1536 1537 1538 1539 1540 1541
	{
		{"default_tablespace", PGC_USERSET, CLIENT_CONN_STATEMENT,
			gettext_noop("Sets the default tablespace to create tables and indexes in."),
			gettext_noop("An empty string selects the database's default tablespace.")
		},
		&default_tablespace,
		"", assign_default_tablespace, NULL
	},

1542
	{
1543
		{"default_transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
1544
			gettext_noop("Sets the transaction isolation level of each new transaction."),
1545
			gettext_noop("Each SQL transaction has an isolation level, which "
B
Bruce Momjian 已提交
1546
						 "can be either \"read uncommitted\", \"read committed\", \"repeatable read\", or \"serializable\".")
1547 1548
		},
		&default_iso_level_string,
1549
		"read committed", assign_defaultxactisolevel, NULL
1550 1551
	},

1552
	{
1553
		{"dynamic_library_path", PGC_SUSET, CLIENT_CONN_OTHER,
1554
			gettext_noop("Sets the path for dynamically loadable modules."),
1555
			gettext_noop("If a dynamically loadable module needs to be opened and "
1556
						 "the specified name does not have a directory component (i.e., the "
1557
						 "name does not contain a slash), the system will search this path for "
1558 1559
						 "the specified file."),
			GUC_SUPERUSER_ONLY
1560 1561
		},
		&Dynamic_library_path,
1562
		"$libdir", NULL, NULL
1563 1564 1565
	},

	{
1566
		{"krb_server_keyfile", PGC_POSTMASTER, CONN_AUTH_SECURITY,
1567
			gettext_noop("Sets the location of the Kerberos server key file."),
1568 1569
			NULL,
			GUC_SUPERUSER_ONLY
1570 1571
		},
		&pg_krb_server_keyfile,
1572
		PG_KRB_SRVTAB, NULL, NULL
1573
	},
1574

1575
	{
1576 1577
		{"bonjour_name", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
			gettext_noop("Sets the Bonjour broadcast service name."),
1578 1579
			NULL
		},
1580
		&bonjour_name,
1581 1582 1583
		"", NULL, NULL
	},

1584 1585
	/* See main.c about why defaults for LC_foo are not all alike */

1586
	{
1587
		{"lc_collate", PGC_INTERNAL, CLIENT_CONN_LOCALE,
1588
			gettext_noop("Shows the collation order locale."),
1589 1590 1591 1592
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&locale_collate,
1593 1594 1595 1596
		"C", NULL, NULL
	},

	{
1597
		{"lc_ctype", PGC_INTERNAL, CLIENT_CONN_LOCALE,
1598
			gettext_noop("Shows the character classification and case conversion locale."),
1599 1600 1601 1602
			NULL,
			GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
		&locale_ctype,
1603 1604 1605
		"C", NULL, NULL
	},

1606
	{
1607
		{"lc_messages", PGC_SUSET, CLIENT_CONN_LOCALE,
1608
			gettext_noop("Sets the language in which messages are displayed."),
1609 1610 1611
			NULL
		},
		&locale_messages,
1612 1613 1614 1615
		"", locale_messages_assign, NULL
	},

	{
1616
		{"lc_monetary", PGC_USERSET, CLIENT_CONN_LOCALE,
1617
			gettext_noop("Sets the locale for formatting monetary amounts."),
1618 1619 1620
			NULL
		},
		&locale_monetary,
1621
		"C", locale_monetary_assign, NULL
1622 1623 1624
	},

	{
1625
		{"lc_numeric", PGC_USERSET, CLIENT_CONN_LOCALE,
1626
			gettext_noop("Sets the locale for formatting numbers."),
1627 1628 1629
			NULL
		},
		&locale_numeric,
1630
		"C", locale_numeric_assign, NULL
1631 1632 1633
	},

	{
1634
		{"lc_time", PGC_USERSET, CLIENT_CONN_LOCALE,
1635
			gettext_noop("Sets the locale for formatting date and time values."),
1636 1637 1638
			NULL
		},
		&locale_time,
1639
		"C", locale_time_assign, NULL
1640 1641
	},

1642
	{
1643
		{"preload_libraries", PGC_POSTMASTER, RESOURCES_KERNEL,
1644
			gettext_noop("Lists shared libraries to preload into server."),
1645
			NULL,
1646
			GUC_LIST_INPUT | GUC_LIST_QUOTE | GUC_SUPERUSER_ONLY
1647
		},
1648
		&preload_libraries_string,
1649
		"", NULL, NULL
1650 1651
	},

1652
	{
1653
		{"regex_flavor", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1654
			gettext_noop("Sets the regular expression \"flavor\"."),
1655
			gettext_noop("This can be set to advanced, extended, or basic.")
1656 1657
		},
		&regex_flavor_string,
1658 1659 1660
		"advanced", assign_regex_flavor, NULL
	},

1661
	{
1662
		{"search_path", PGC_USERSET, CLIENT_CONN_STATEMENT,
1663
			gettext_noop("Sets the schema search order for names that are not schema-qualified."),
1664 1665 1666
			NULL,
			GUC_LIST_INPUT | GUC_LIST_QUOTE
		},
1667 1668
		&namespace_search_path,
		"$user,public", assign_search_path, NULL
1669 1670 1671
	},

	{
1672 1673
		/* Can't be set in postgresql.conf */
		{"server_encoding", PGC_INTERNAL, CLIENT_CONN_LOCALE,
1674
			gettext_noop("Sets the server (database) character set encoding."),
1675
			NULL,
1676
			GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1677
		},
1678 1679 1680 1681 1682
		&server_encoding_string,
		"SQL_ASCII", NULL, NULL
	},

	{
1683
		/* Can't be set in postgresql.conf */
1684
		{"server_version", PGC_INTERNAL, PRESET_OPTIONS,
1685
			gettext_noop("Shows the server version."),
1686 1687 1688
			NULL,
			GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
1689 1690
		&server_version_string,
		PG_VERSION, NULL, NULL
1691 1692
	},

1693
	{
1694 1695
		/* Not for general use --- used by SET SESSION AUTHORIZATION */
		{"session_authorization", PGC_USERSET, UNGROUPED,
1696
			gettext_noop("Sets the session user name."),
1697
			NULL,
1698
			GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1699
		},
1700 1701
		&session_authorization_string,
		NULL, assign_session_authorization, show_session_authorization
1702 1703
	},

1704
	{
1705
		{"log_destination", PGC_SIGHUP, LOGGING_WHERE,
B
Bruce Momjian 已提交
1706
			gettext_noop("Sets the destination for server log output."),
P
Peter Eisentraut 已提交
1707 1708
			gettext_noop("Valid values are combinations of \"stderr\", \"syslog\", "
						 "and \"eventlog\", depending on the platform."),
B
Bruce Momjian 已提交
1709
			GUC_LIST_INPUT
1710 1711 1712 1713
		},
		&log_destination_string,
		"stderr", assign_log_destination, NULL
	},
1714 1715
	{
		{"log_directory", PGC_SIGHUP, LOGGING_WHERE,
1716
			gettext_noop("Sets the destination directory for log files."),
1717
			gettext_noop("May be specified as relative to the data directory "
1718 1719
						 "or as absolute path."),
			GUC_SUPERUSER_ONLY
1720 1721
		},
		&Log_directory,
1722
		"pg_log", assign_canonical_path, NULL
1723 1724
	},
	{
1725 1726
		{"log_filename", PGC_SIGHUP, LOGGING_WHERE,
			gettext_noop("Sets the file name pattern for log files."),
1727 1728
			NULL,
			GUC_SUPERUSER_ONLY
1729
		},
1730 1731
		&Log_filename,
		"postgresql-%Y-%m-%d_%H%M%S.log", NULL, NULL
1732
	},
1733

T
Tatsuo Ishii 已提交
1734
#ifdef HAVE_SYSLOG
1735
	{
1736
		{"syslog_facility", PGC_POSTMASTER, LOGGING_WHERE,
1737
			gettext_noop("Sets the syslog \"facility\" to be used when syslog enabled."),
1738 1739
			gettext_noop("Valid values are LOCAL0, LOCAL1, LOCAL2, LOCAL3, "
						 "LOCAL4, LOCAL5, LOCAL6, LOCAL7.")
1740 1741
		},
		&Syslog_facility,
1742
		"LOCAL0", assign_facility, NULL
1743 1744
	},
	{
1745
		{"syslog_ident", PGC_POSTMASTER, LOGGING_WHERE,
1746 1747
			gettext_noop("Sets the program name used to identify PostgreSQL messages "
						 "in syslog."),
1748 1749 1750
			NULL
		},
		&Syslog_ident,
1751
		"postgres", NULL, NULL
1752
	},
1753
#endif
1754

1755
	{
1756
		{"TimeZone", PGC_USERSET, CLIENT_CONN_LOCALE,
1757
			gettext_noop("Sets the time zone for displaying and interpreting time stamps."),
1758 1759
			NULL,
			GUC_REPORT
1760 1761
		},
		&timezone_string,
1762 1763 1764 1765
		"UNKNOWN", assign_timezone, show_timezone
	},

	{
1766
		{"transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
1767
			gettext_noop("Sets the current transaction's isolation level."),
1768 1769 1770
			NULL,
			GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
		},
1771 1772 1773 1774 1775
		&XactIsoLevel_string,
		NULL, assign_XactIsoLevel, show_XactIsoLevel
	},

	{
1776
		{"unix_socket_group", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1777
			gettext_noop("Sets the owning group of the Unix-domain socket."),
1778 1779 1780 1781
			gettext_noop("(The owning user of the socket is always the user "
						 "that starts the server.)")
		},
		&Unix_socket_group,
1782
		"", NULL, NULL
1783
	},
1784

1785
	{
1786
		{"unix_socket_directory", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1787
			gettext_noop("Sets the directory where the Unix-domain socket will be created."),
1788 1789
			NULL,
			GUC_SUPERUSER_ONLY
1790 1791
		},
		&UnixSocketDir,
1792
		"", assign_canonical_path, NULL
1793
	},
1794

1795
	{
1796
		{"listen_addresses", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1797 1798 1799
			gettext_noop("Sets the host name or IP address(es) to listen to."),
			NULL,
			GUC_LIST_INPUT
1800
		},
1801 1802
		&ListenAddresses,
		"localhost", NULL, NULL
1803
	},
1804

1805
	{
1806
		{"wal_sync_method", PGC_SIGHUP, WAL_SETTINGS,
1807
			gettext_noop("Selects the method used for forcing WAL updates out to disk."),
1808 1809 1810
			NULL
		},
		&XLOG_sync_method,
1811
		XLOG_sync_method_default, assign_xlog_sync_method, NULL
1812
	},
1813

1814 1815
	{
		{"custom_variable_classes", PGC_POSTMASTER, RESOURCES_KERNEL,
1816
			gettext_noop("Sets the list of known custom variable classes."),
1817 1818 1819 1820 1821 1822 1823
			NULL,
			GUC_LIST_INPUT | GUC_LIST_QUOTE
		},
		&custom_variable_classes,
		NULL, assign_custom_variable_classes, NULL
	},

1824
	{
1825
		{"data_directory", PGC_POSTMASTER, FILE_LOCATIONS,
P
Peter Eisentraut 已提交
1826
		 gettext_noop("Sets the server's data directory."),
1827 1828
		 NULL,
		 GUC_SUPERUSER_ONLY
1829
		},
1830 1831
		&data_directory,
		NULL, NULL, NULL
1832 1833 1834
	},

	{
1835
		{"config_file", PGC_POSTMASTER, FILE_LOCATIONS,
P
Peter Eisentraut 已提交
1836
		 gettext_noop("Sets the server's main configuration file."),
1837
		 NULL,
1838
		 GUC_DISALLOW_IN_FILE | GUC_SUPERUSER_ONLY
1839 1840 1841 1842 1843 1844 1845 1846
		},
		&ConfigFileName,
		NULL, NULL, NULL
	},

	{
		{"hba_file", PGC_POSTMASTER, FILE_LOCATIONS,
		 gettext_noop("Sets the server's \"hba\" configuration file"),
1847 1848
		 NULL,
		 GUC_SUPERUSER_ONLY
1849
		},
1850 1851
		&HbaFileName,
		NULL, NULL, NULL
1852 1853 1854
	},

	{
1855 1856
		{"ident_file", PGC_POSTMASTER, FILE_LOCATIONS,
		 gettext_noop("Sets the server's \"ident\" configuration file"),
1857 1858
		 NULL,
		 GUC_SUPERUSER_ONLY
1859
		},
1860 1861
		&IdentFileName,
		NULL, NULL, NULL
1862 1863 1864
	},

	{
1865
		{"external_pid_file", PGC_POSTMASTER, FILE_LOCATIONS,
P
Peter Eisentraut 已提交
1866
		 gettext_noop("Writes the postmaster PID to the specified file."),
1867 1868
		 NULL,
		 GUC_SUPERUSER_ONLY
1869
		},
1870
		&external_pid_file,
1871
		NULL, assign_canonical_path, NULL
1872 1873
	},

1874
	/* End-of-list marker */
1875
	{
1876
		{NULL, 0, 0, NULL, NULL}, NULL, NULL, NULL, NULL
1877
	}
1878 1879 1880
};


1881
/******** end of options list ********/
1882

B
Bruce Momjian 已提交
1883

1884 1885 1886 1887 1888 1889
/*
 * To allow continued support of obsolete names for GUC variables, we apply
 * the following mappings to any unrecognized name.  Note that an old name
 * should be mapped to a new one only if the new variable has very similar
 * semantics to the old.
 */
B
Bruce Momjian 已提交
1890
static const char *const map_old_guc_names[] = {
1891 1892 1893 1894 1895 1896
	"sort_mem", "work_mem",
	"vacuum_mem", "maintenance_work_mem",
	NULL
};


1897
/*
1898
 * Actual lookup of variables is done through this single, sorted array.
1899
 */
1900 1901
static struct config_generic **guc_variables;

1902
/* Current number of variables contained in the vector */
B
Bruce Momjian 已提交
1903
static int	num_guc_variables;
1904

1905
/* Vector capacity */
B
Bruce Momjian 已提交
1906
static int	size_guc_variables;
1907

1908

1909
static bool guc_dirty;			/* TRUE if need to do commit/abort work */
1910

1911 1912
static bool reporting_enabled;	/* TRUE to enable GUC_REPORT */

B
Bruce Momjian 已提交
1913
static char *guc_string_workspace;		/* for avoiding memory leaks */
1914

1915

B
Bruce Momjian 已提交
1916
static int	guc_var_compare(const void *a, const void *b);
1917
static int	guc_name_compare(const char *namea, const char *nameb);
B
Bruce Momjian 已提交
1918
static void push_old_value(struct config_generic * gconf);
1919
static void ReportGUCOption(struct config_generic * record);
1920 1921
static void ShowGUCConfigOption(const char *name, DestReceiver *dest);
static void ShowAllGUCConfig(DestReceiver *dest);
B
Bruce Momjian 已提交
1922
static char *_ShowOption(struct config_generic * record);
1923

1924

1925 1926 1927 1928 1929 1930
/*
 * Some infrastructure for checking malloc/strdup/realloc calls
 */
static void *
guc_malloc(int elevel, size_t size)
{
B
Bruce Momjian 已提交
1931
	void	   *data;
1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943

	data = malloc(size);
	if (data == NULL)
		ereport(elevel,
				(errcode(ERRCODE_OUT_OF_MEMORY),
				 errmsg("out of memory")));
	return data;
}

static void *
guc_realloc(int elevel, void *old, size_t size)
{
B
Bruce Momjian 已提交
1944
	void	   *data;
1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956

	data = realloc(old, size);
	if (data == NULL)
		ereport(elevel,
				(errcode(ERRCODE_OUT_OF_MEMORY),
				 errmsg("out of memory")));
	return data;
}

static char *
guc_strdup(int elevel, const char *src)
{
B
Bruce Momjian 已提交
1957
	char	   *data;
1958 1959 1960 1961 1962 1963 1964 1965 1966 1967

	data = strdup(src);
	if (data == NULL)
		ereport(elevel,
				(errcode(ERRCODE_OUT_OF_MEMORY),
				 errmsg("out of memory")));
	return data;
}


1968 1969 1970 1971 1972 1973
/*
 * Support for assigning to a field of a string GUC item.  Free the prior
 * value if it's not referenced anywhere else in the item (including stacked
 * states).
 */
static void
B
Bruce Momjian 已提交
1974
set_string_field(struct config_string * conf, char **field, char *newval)
1975
{
B
Bruce Momjian 已提交
1976 1977
	char	   *oldval = *field;
	GucStack   *stack;
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002

	/* Do the assignment */
	*field = newval;

	/* Exit if any duplicate references, or if old value was NULL anyway */
	if (oldval == NULL ||
		oldval == *(conf->variable) ||
		oldval == conf->reset_val ||
		oldval == conf->tentative_val)
		return;
	for (stack = conf->gen.stack; stack; stack = stack->prev)
	{
		if (oldval == stack->tentative_val.stringval ||
			oldval == stack->value.stringval)
			return;
	}

	/* Not used anymore, so free it */
	free(oldval);
}

/*
 * Detect whether strval is referenced anywhere in a GUC string item
 */
static bool
B
Bruce Momjian 已提交
2003
string_field_used(struct config_string * conf, char *strval)
2004
{
B
Bruce Momjian 已提交
2005
	GucStack   *stack;
2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022

	if (strval == *(conf->variable) ||
		strval == conf->reset_val ||
		strval == conf->tentative_val)
		return true;
	for (stack = conf->gen.stack; stack; stack = stack->prev)
	{
		if (strval == stack->tentative_val.stringval ||
			strval == stack->value.stringval)
			return true;
	}
	return false;
}


struct config_generic **
get_guc_variables(void)
2023 2024 2025
{
	return guc_variables;
}
2026

2027

2028
/*
B
Bruce Momjian 已提交
2029
 * Build the sorted array.	This is split out so that it could be
2030 2031
 * re-executed after startup (eg, we could allow loadable modules to
 * add vars, and then we'd need to re-sort).
2032
 */
2033
void
2034
build_guc_variables(void)
2035
{
B
Bruce Momjian 已提交
2036
	int			size_vars;
2037 2038
	int			num_vars = 0;
	struct config_generic **guc_vars;
B
Bruce Momjian 已提交
2039
	int			i;
2040

2041
	for (i = 0; ConfigureNamesBool[i].gen.name; i++)
2042 2043 2044
	{
		struct config_bool *conf = &ConfigureNamesBool[i];

2045 2046 2047
		/* Rather than requiring vartype to be filled in by hand, do this: */
		conf->gen.vartype = PGC_BOOL;
		num_vars++;
2048
	}
2049

2050
	for (i = 0; ConfigureNamesInt[i].gen.name; i++)
2051 2052 2053
	{
		struct config_int *conf = &ConfigureNamesInt[i];

2054 2055
		conf->gen.vartype = PGC_INT;
		num_vars++;
2056
	}
2057

2058
	for (i = 0; ConfigureNamesReal[i].gen.name; i++)
2059 2060 2061
	{
		struct config_real *conf = &ConfigureNamesReal[i];

2062 2063
		conf->gen.vartype = PGC_REAL;
		num_vars++;
2064
	}
2065

2066
	for (i = 0; ConfigureNamesString[i].gen.name; i++)
2067
	{
2068
		struct config_string *conf = &ConfigureNamesString[i];
2069

2070 2071
		conf->gen.vartype = PGC_STRING;
		num_vars++;
2072 2073
	}

B
Bruce Momjian 已提交
2074 2075
	/*
	 * Create table with 20% slack
2076 2077 2078
	 */
	size_vars = num_vars + num_vars / 4;

2079
	guc_vars = (struct config_generic **)
2080
		guc_malloc(FATAL, size_vars * sizeof(struct config_generic *));
2081

2082
	num_vars = 0;
2083

2084
	for (i = 0; ConfigureNamesBool[i].gen.name; i++)
B
Bruce Momjian 已提交
2085
		guc_vars[num_vars++] = &ConfigureNamesBool[i].gen;
2086

2087
	for (i = 0; ConfigureNamesInt[i].gen.name; i++)
B
Bruce Momjian 已提交
2088
		guc_vars[num_vars++] = &ConfigureNamesInt[i].gen;
2089

2090
	for (i = 0; ConfigureNamesReal[i].gen.name; i++)
B
Bruce Momjian 已提交
2091
		guc_vars[num_vars++] = &ConfigureNamesReal[i].gen;
2092

2093
	for (i = 0; ConfigureNamesString[i].gen.name; i++)
B
Bruce Momjian 已提交
2094
		guc_vars[num_vars++] = &ConfigureNamesString[i].gen;
2095

2096 2097 2098 2099
	if (guc_variables)
		free(guc_variables);
	guc_variables = guc_vars;
	num_guc_variables = num_vars;
2100
	size_guc_variables = size_vars;
B
Bruce Momjian 已提交
2101 2102
	qsort((void *) guc_variables, num_guc_variables,
		  sizeof(struct config_generic *), guc_var_compare);
2103 2104
}

2105 2106 2107
static bool
is_custom_class(const char *name, int dotPos)
{
B
Bruce Momjian 已提交
2108
	/*
2109
	 * assign_custom_variable_classes() has made sure no empty
2110 2111
	 * identifiers or whitespace exists in the variable
	 */
B
Bruce Momjian 已提交
2112
	bool		result = false;
2113
	const char *ccs = GetConfigOption("custom_variable_classes");
B
Bruce Momjian 已提交
2114 2115

	if (ccs != NULL)
2116 2117
	{
		const char *start = ccs;
B
Bruce Momjian 已提交
2118 2119

		for (;; ++ccs)
2120
		{
B
Bruce Momjian 已提交
2121 2122 2123
			int			c = *ccs;

			if (c == 0 || c == ',')
2124
			{
B
Bruce Momjian 已提交
2125
				if (dotPos == ccs - start && strncmp(start, name, dotPos) == 0)
2126 2127 2128 2129
				{
					result = true;
					break;
				}
B
Bruce Momjian 已提交
2130
				if (c == 0)
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142
					break;
				start = ccs + 1;
			}
		}
	}
	return result;
}

/*
 * Add a new GUC variable to the list of known variables. The
 * list is expanded if needed.
 */
2143
static bool
B
Bruce Momjian 已提交
2144
add_guc_variable(struct config_generic * var, int elevel)
2145
{
B
Bruce Momjian 已提交
2146
	if (num_guc_variables + 1 >= size_guc_variables)
2147
	{
B
Bruce Momjian 已提交
2148 2149
		/*
		 * Increase the vector by 25%
2150
		 */
B
Bruce Momjian 已提交
2151 2152
		int			size_vars = size_guc_variables + size_guc_variables / 4;
		struct config_generic **guc_vars;
2153

B
Bruce Momjian 已提交
2154
		if (size_vars == 0)
2155
		{
2156
			size_vars = 100;
B
Bruce Momjian 已提交
2157 2158
			guc_vars = (struct config_generic **)
				guc_malloc(elevel, size_vars * sizeof(struct config_generic *));
2159 2160
		}
		else
2161
		{
B
Bruce Momjian 已提交
2162 2163
			guc_vars = (struct config_generic **)
				guc_realloc(elevel, guc_variables, size_vars * sizeof(struct config_generic *));
2164 2165
		}

B
Bruce Momjian 已提交
2166
		if (guc_vars == NULL)
2167 2168
			return false;		/* out of memory */

2169 2170 2171 2172
		guc_variables = guc_vars;
		size_guc_variables = size_vars;
	}
	guc_variables[num_guc_variables++] = var;
B
Bruce Momjian 已提交
2173 2174
	qsort((void *) guc_variables, num_guc_variables,
		  sizeof(struct config_generic *), guc_var_compare);
2175
	return true;
2176 2177 2178
}

/*
2179
 * Create and add a placeholder variable. It's presumed to belong
2180 2181
 * to a valid custom variable class at this point.
 */
B
Bruce Momjian 已提交
2182
static struct config_string *
2183
add_placeholder_variable(const char *name, int elevel)
2184
{
B
Bruce Momjian 已提交
2185 2186 2187
	size_t		sz = sizeof(struct config_string) + sizeof(char *);
	struct config_string *var;
	struct config_generic *gen;
2188

B
Bruce Momjian 已提交
2189 2190
	var = (struct config_string *) guc_malloc(elevel, sz);
	if (var == NULL)
2191 2192 2193
		return NULL;

	gen = &var->gen;
2194 2195
	memset(var, 0, sz);

2196
	gen->name = guc_strdup(elevel, name);
B
Bruce Momjian 已提交
2197
	if (gen->name == NULL)
2198 2199 2200 2201 2202
	{
		free(var);
		return NULL;
	}

B
Bruce Momjian 已提交
2203 2204
	gen->context = PGC_USERSET;
	gen->group = CUSTOM_OPTIONS;
2205
	gen->short_desc = "GUC placeholder variable";
B
Bruce Momjian 已提交
2206 2207
	gen->flags = GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE | GUC_CUSTOM_PLACEHOLDER;
	gen->vartype = PGC_STRING;
2208

B
Bruce Momjian 已提交
2209 2210 2211 2212 2213
	/*
	 * The char* is allocated at the end of the struct since we have no
	 * 'static' place to point to.
	 */
	var->variable = (char **) (var + 1);
2214

B
Bruce Momjian 已提交
2215
	if (!add_guc_variable((struct config_generic *) var, elevel))
2216 2217 2218 2219 2220 2221
	{
		free((void *) gen->name);
		free(var);
		return NULL;
	}

2222 2223
	return var;
}
2224 2225

/*
2226 2227
 * Look up option NAME. If it exists, return a pointer to its record,
 * else return NULL.
2228
 */
2229
static struct config_generic *
2230
find_option(const char *name, int elevel)
2231
{
2232
	const char *dot;
2233 2234
	const char **key = &name;
	struct config_generic **res;
2235
	int			i;
2236

2237
	Assert(name);
2238

2239
	/*
2240
	 * By equating const char ** with struct config_generic *, we are
2241 2242
	 * assuming the name field is first in config_generic.
	 */
B
Bruce Momjian 已提交
2243 2244 2245 2246 2247
	res = (struct config_generic **) bsearch((void *) &key,
											 (void *) guc_variables,
											 num_guc_variables,
										 sizeof(struct config_generic *),
											 guc_var_compare);
2248 2249
	if (res)
		return *res;
2250 2251

	/*
B
Bruce Momjian 已提交
2252
	 * See if the name is an obsolete name for a variable.	We assume that
2253 2254 2255 2256 2257 2258
	 * the set of supported old names is short enough that a brute-force
	 * search is the best way.
	 */
	for (i = 0; map_old_guc_names[i] != NULL; i += 2)
	{
		if (guc_name_compare(name, map_old_guc_names[i]) == 0)
B
Bruce Momjian 已提交
2259
			return find_option(map_old_guc_names[i + 1], elevel);
2260 2261
	}

2262 2263
	/*
	 * Check if the name is qualified, and if so, check if the qualifier
2264 2265 2266
	 * maps to a custom variable class.
	 */
	dot = strchr(name, GUC_QUALIFIER_SEPARATOR);
B
Bruce Momjian 已提交
2267
	if (dot != NULL && is_custom_class(name, dot - name))
2268
		/* Add a placeholder variable for this name */
B
Bruce Momjian 已提交
2269
		return (struct config_generic *) add_placeholder_variable(name, elevel);
2270

2271
	/* Unknown name */
2272 2273
	return NULL;
}
2274 2275 2276


/*
2277
 * comparator for qsorting and bsearching guc_variables array
2278
 */
2279 2280
static int
guc_var_compare(const void *a, const void *b)
2281
{
2282 2283
	struct config_generic *confa = *(struct config_generic **) a;
	struct config_generic *confb = *(struct config_generic **) b;
2284

2285 2286 2287 2288 2289 2290 2291
	return guc_name_compare(confa->name, confb->name);
}


static int
guc_name_compare(const char *namea, const char *nameb)
{
2292 2293 2294
	/*
	 * The temptation to use strcasecmp() here must be resisted, because
	 * the array ordering has to remain stable across setlocale() calls.
2295
	 * So, build our own with a simple ASCII-only downcasing.
2296
	 */
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307
	while (*namea && *nameb)
	{
		char		cha = *namea++;
		char		chb = *nameb++;

		if (cha >= 'A' && cha <= 'Z')
			cha += 'a' - 'A';
		if (chb >= 'A' && chb <= 'Z')
			chb += 'a' - 'A';
		if (cha != chb)
			return cha - chb;
2308
	}
2309 2310 2311 2312 2313
	if (*namea)
		return 1;				/* a is longer */
	if (*nameb)
		return -1;				/* b is longer */
	return 0;
2314
}
2315 2316 2317


/*
2318
 * Initialize GUC options during program startup.
2319 2320 2321
 *
 * Note that we cannot read the config file yet, since we have not yet
 * processed command-line switches.
2322
 */
2323 2324
void
InitializeGUCOptions(void)
2325
{
2326 2327
	int			i;
	char	   *env;
2328

2329 2330 2331 2332
	/*
	 * Build sorted array of all GUC variables.
	 */
	build_guc_variables();
2333

2334
	/*
2335 2336
	 * Load all variables with their compiled-in defaults, and initialize
	 * status fields as needed.
2337
	 */
2338
	for (i = 0; i < num_guc_variables; i++)
2339
	{
2340
		struct config_generic *gconf = guc_variables[i];
2341

2342 2343 2344 2345
		gconf->status = 0;
		gconf->reset_source = PGC_S_DEFAULT;
		gconf->tentative_source = PGC_S_DEFAULT;
		gconf->source = PGC_S_DEFAULT;
2346
		gconf->stack = NULL;
2347 2348 2349 2350

		switch (gconf->vartype)
		{
			case PGC_BOOL:
B
Bruce Momjian 已提交
2351 2352
				{
					struct config_bool *conf = (struct config_bool *) gconf;
2353

B
Bruce Momjian 已提交
2354
					if (conf->assign_hook)
2355 2356
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_DEFAULT))
2357 2358
							elog(FATAL, "failed to initialize %s to %d",
								 conf->gen.name, (int) conf->reset_val);
B
Bruce Momjian 已提交
2359 2360 2361
					*conf->variable = conf->reset_val;
					break;
				}
2362
			case PGC_INT:
B
Bruce Momjian 已提交
2363 2364
				{
					struct config_int *conf = (struct config_int *) gconf;
2365

B
Bruce Momjian 已提交
2366 2367 2368
					Assert(conf->reset_val >= conf->min);
					Assert(conf->reset_val <= conf->max);
					if (conf->assign_hook)
2369 2370
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_DEFAULT))
2371 2372
							elog(FATAL, "failed to initialize %s to %d",
								 conf->gen.name, conf->reset_val);
B
Bruce Momjian 已提交
2373 2374 2375
					*conf->variable = conf->reset_val;
					break;
				}
2376 2377
			case PGC_REAL:
				{
B
Bruce Momjian 已提交
2378 2379 2380 2381 2382
					struct config_real *conf = (struct config_real *) gconf;

					Assert(conf->reset_val >= conf->min);
					Assert(conf->reset_val <= conf->max);
					if (conf->assign_hook)
2383 2384
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_DEFAULT))
2385 2386
							elog(FATAL, "failed to initialize %s to %g",
								 conf->gen.name, conf->reset_val);
B
Bruce Momjian 已提交
2387
					*conf->variable = conf->reset_val;
2388 2389
					break;
				}
B
Bruce Momjian 已提交
2390
			case PGC_STRING:
2391
				{
B
Bruce Momjian 已提交
2392 2393 2394 2395 2396 2397
					struct config_string *conf = (struct config_string *) gconf;
					char	   *str;

					*conf->variable = NULL;
					conf->reset_val = NULL;
					conf->tentative_val = NULL;
2398

B
Bruce Momjian 已提交
2399
					if (conf->boot_val == NULL)
2400
					{
B
Bruce Momjian 已提交
2401 2402
						/* Cannot set value yet */
						break;
2403
					}
B
Bruce Momjian 已提交
2404

2405
					str = guc_strdup(FATAL, conf->boot_val);
B
Bruce Momjian 已提交
2406 2407 2408
					conf->reset_val = str;

					if (conf->assign_hook)
2409
					{
B
Bruce Momjian 已提交
2410 2411
						const char *newstr;

2412 2413
						newstr = (*conf->assign_hook) (str, true,
													   PGC_S_DEFAULT);
B
Bruce Momjian 已提交
2414 2415
						if (newstr == NULL)
						{
2416 2417
							elog(FATAL, "failed to initialize %s to \"%s\"",
								 conf->gen.name, str);
B
Bruce Momjian 已提交
2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429
						}
						else if (newstr != str)
						{
							free(str);

							/*
							 * See notes in set_config_option about
							 * casting
							 */
							str = (char *) newstr;
							conf->reset_val = str;
						}
2430
					}
B
Bruce Momjian 已提交
2431 2432
					*conf->variable = str;
					break;
2433 2434 2435 2436 2437 2438
				}
		}
	}

	guc_dirty = false;

2439 2440
	reporting_enabled = false;

2441 2442 2443
	guc_string_workspace = NULL;

	/*
2444
	 * Prevent any attempt to override the transaction modes from
2445 2446
	 * non-interactive sources.
	 */
2447 2448 2449
	SetConfigOption("transaction_isolation", "default",
					PGC_POSTMASTER, PGC_S_OVERRIDE);
	SetConfigOption("transaction_read_only", "no",
2450 2451 2452 2453
					PGC_POSTMASTER, PGC_S_OVERRIDE);

	/*
	 * For historical reasons, some GUC parameters can receive defaults
B
Bruce Momjian 已提交
2454
	 * from environment variables.	Process those settings.
2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470
	 */

	env = getenv("PGPORT");
	if (env != NULL)
		SetConfigOption("port", env, PGC_POSTMASTER, PGC_S_ENV_VAR);

	env = getenv("PGDATESTYLE");
	if (env != NULL)
		SetConfigOption("datestyle", env, PGC_POSTMASTER, PGC_S_ENV_VAR);

	env = getenv("PGCLIENTENCODING");
	if (env != NULL)
		SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
}


2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484
/*
 * Select the configuration files and data directory to be used, and
 * do the initial read of postgresql.conf.
 *
 * This is called after processing command-line switches.
 *		userDoption is the -D switch value if any (NULL if unspecified).
 *		progname is just for use in error messages.
 *
 * Returns true on success; on failure, prints a suitable error message
 * to stderr and returns false.
 */
bool
SelectConfigFiles(const char *userDoption, const char *progname)
{
2485 2486
	char	   *configdir;
	char	   *fname;
2487 2488
	struct stat stat_buf;

2489 2490 2491 2492 2493
	/* configdir is -D option, or $PGDATA if no -D */
	if (userDoption)
		configdir = make_absolute_path(userDoption);
	else
		configdir = make_absolute_path(getenv("PGDATA"));
2494 2495

	/*
2496 2497 2498 2499
	 * Find the configuration file: if config_file was specified on the
	 * command line, use it, else use configdir/postgresql.conf.  In any
	 * case ensure the result is an absolute path, so that it will be
	 * interpreted the same way by future backends.
2500
	 */
2501 2502 2503
	if (ConfigFileName)
		fname = make_absolute_path(ConfigFileName);
	else if (!configdir)
2504
	{
2505
		write_stderr("%s does not know where to find the server configuration file.\n"
P
Peter Eisentraut 已提交
2506
					 "You must specify the --config-file or -D invocation "
2507 2508 2509
					 "option or set the PGDATA environment variable.\n",
					 progname);
		return false;
2510 2511 2512
	}
	else
	{
2513 2514 2515
		fname = guc_malloc(FATAL,
						   strlen(configdir) + strlen(CONFIG_FILENAME) + 2);
		sprintf(fname, "%s/%s", configdir, CONFIG_FILENAME);
2516 2517
	}

2518 2519 2520 2521 2522 2523 2524 2525 2526 2527
	/*
	 * Set the ConfigFileName GUC variable to its final value, ensuring
	 * that it can't be overridden later.
	 */
	SetConfigOption("config_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
	free(fname);

	/*
	 * Now read the config file for the first time.
	 */
2528 2529
	if (stat(ConfigFileName, &stat_buf) != 0)
	{
2530
		write_stderr("%s cannot access the server configuration file \"%s\": %s\n",
2531 2532 2533 2534 2535 2536 2537
					 progname, ConfigFileName, strerror(errno));
		return false;
	}

	ProcessConfigFile(PGC_POSTMASTER);

	/*
2538 2539
	 * If the data_directory GUC variable has been set, use that as DataDir;
	 * otherwise use configdir if set; else punt.
2540
	 *
2541
	 * Note: SetDataDir will copy and absolute-ize its argument,
2542 2543
	 * so we don't have to.
	 */
2544 2545 2546 2547
	if (data_directory)
		SetDataDir(data_directory);
	else if (configdir)
		SetDataDir(configdir);
2548 2549 2550
	else
	{
		write_stderr("%s does not know where to find the database system data.\n"
2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576
					 "This can be specified as \"data_directory\" in \"%s\", "
					 "or by the -D invocation option, or by the "
					 "PGDATA environment variable.\n",
					 progname, ConfigFileName);
		return false;
	}

	/*
	 * Reflect the final DataDir value back into the data_directory GUC var.
	 * (If you are wondering why we don't just make them a single variable,
	 * it's because the EXEC_BACKEND case needs DataDir to be transmitted to
	 * child backends specially.)
	 */
	SetConfigOption("data_directory", DataDir, PGC_POSTMASTER, PGC_S_OVERRIDE);

	/*
	 * Figure out where pg_hba.conf is, and make sure the path is absolute.
	 */
	if (HbaFileName)
		fname = make_absolute_path(HbaFileName);
	else if (!configdir)
	{
		write_stderr("%s does not know where to find the \"hba\" configuration file.\n"
					 "This can be specified as \"hba_file\" in \"%s\", "
					 "or by the -D invocation option, or by the "
					 "PGDATA environment variable.\n",
2577 2578 2579
					 progname, ConfigFileName);
		return false;
	}
2580 2581 2582 2583 2584 2585 2586 2587
	else
	{
		fname = guc_malloc(FATAL,
						   strlen(configdir) + strlen(HBA_FILENAME) + 2);
		sprintf(fname, "%s/%s", configdir, HBA_FILENAME);
	}
	SetConfigOption("hba_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
	free(fname);
2588 2589

	/*
2590
	 * Likewise for pg_ident.conf.
2591
	 */
2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612
	if (IdentFileName)
		fname = make_absolute_path(IdentFileName);
	else if (!configdir)
	{
		write_stderr("%s does not know where to find the \"ident\" configuration file.\n"
					 "This can be specified as \"ident_file\" in \"%s\", "
					 "or by the -D invocation option, or by the "
					 "PGDATA environment variable.\n",
					 progname, ConfigFileName);
		return false;
	}
	else
	{
		fname = guc_malloc(FATAL,
						   strlen(configdir) + strlen(IDENT_FILENAME) + 2);
		sprintf(fname, "%s/%s", configdir, IDENT_FILENAME);
	}
	SetConfigOption("ident_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
	free(fname);

	free(configdir);
2613 2614 2615 2616 2617 2618 2619 2620

	/* If timezone is not set, determine what the OS uses */
	pg_timezone_initialize();

	return true;
}


2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633
/*
 * Reset all options to their saved default values (implements RESET ALL)
 */
void
ResetAllOptions(void)
{
	int			i;

	for (i = 0; i < num_guc_variables; i++)
	{
		struct config_generic *gconf = guc_variables[i];

		/* Don't reset non-SET-able values */
2634 2635
		if (gconf->context != PGC_SUSET &&
			gconf->context != PGC_USERSET)
2636 2637 2638 2639 2640 2641 2642 2643
			continue;
		/* Don't reset if special exclusion from RESET ALL */
		if (gconf->flags & GUC_NO_RESET_ALL)
			continue;
		/* No need to reset if wasn't SET */
		if (gconf->source <= PGC_S_OVERRIDE)
			continue;

2644 2645 2646
		/* Save old value to support transaction abort */
		push_old_value(gconf);

2647 2648 2649
		switch (gconf->vartype)
		{
			case PGC_BOOL:
B
Bruce Momjian 已提交
2650 2651
				{
					struct config_bool *conf = (struct config_bool *) gconf;
2652

B
Bruce Momjian 已提交
2653
					if (conf->assign_hook)
2654 2655
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_SESSION))
2656
							elog(ERROR, "failed to reset %s", conf->gen.name);
B
Bruce Momjian 已提交
2657 2658 2659 2660 2661 2662 2663 2664
					*conf->variable = conf->reset_val;
					conf->tentative_val = conf->reset_val;
					conf->gen.source = conf->gen.reset_source;
					conf->gen.tentative_source = conf->gen.reset_source;
					conf->gen.status |= GUC_HAVE_TENTATIVE;
					guc_dirty = true;
					break;
				}
2665
			case PGC_INT:
B
Bruce Momjian 已提交
2666 2667
				{
					struct config_int *conf = (struct config_int *) gconf;
2668

B
Bruce Momjian 已提交
2669
					if (conf->assign_hook)
2670 2671
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_SESSION))
2672
							elog(ERROR, "failed to reset %s", conf->gen.name);
B
Bruce Momjian 已提交
2673 2674 2675 2676 2677 2678 2679 2680
					*conf->variable = conf->reset_val;
					conf->tentative_val = conf->reset_val;
					conf->gen.source = conf->gen.reset_source;
					conf->gen.tentative_source = conf->gen.reset_source;
					conf->gen.status |= GUC_HAVE_TENTATIVE;
					guc_dirty = true;
					break;
				}
2681 2682
			case PGC_REAL:
				{
B
Bruce Momjian 已提交
2683 2684 2685
					struct config_real *conf = (struct config_real *) gconf;

					if (conf->assign_hook)
2686 2687
						if (!(*conf->assign_hook) (conf->reset_val, true,
												   PGC_S_SESSION))
2688
							elog(ERROR, "failed to reset %s", conf->gen.name);
B
Bruce Momjian 已提交
2689 2690 2691 2692 2693 2694
					*conf->variable = conf->reset_val;
					conf->tentative_val = conf->reset_val;
					conf->gen.source = conf->gen.reset_source;
					conf->gen.tentative_source = conf->gen.reset_source;
					conf->gen.status |= GUC_HAVE_TENTATIVE;
					guc_dirty = true;
2695 2696
					break;
				}
B
Bruce Momjian 已提交
2697 2698 2699 2700
			case PGC_STRING:
				{
					struct config_string *conf = (struct config_string *) gconf;
					char	   *str;
2701

B
Bruce Momjian 已提交
2702 2703 2704 2705 2706
					if (conf->reset_val == NULL)
					{
						/* Nothing to reset to, as yet; so do nothing */
						break;
					}
2707

B
Bruce Momjian 已提交
2708 2709
					/* We need not strdup here */
					str = conf->reset_val;
2710

B
Bruce Momjian 已提交
2711
					if (conf->assign_hook)
2712
					{
B
Bruce Momjian 已提交
2713 2714
						const char *newstr;

2715 2716
						newstr = (*conf->assign_hook) (str, true,
													   PGC_S_SESSION);
B
Bruce Momjian 已提交
2717
						if (newstr == NULL)
2718
							elog(ERROR, "failed to reset %s", conf->gen.name);
B
Bruce Momjian 已提交
2719 2720 2721 2722 2723 2724 2725 2726
						else if (newstr != str)
						{
							/*
							 * See notes in set_config_option about
							 * casting
							 */
							str = (char *) newstr;
						}
2727 2728
					}

2729 2730
					set_string_field(conf, conf->variable, str);
					set_string_field(conf, &conf->tentative_val, str);
B
Bruce Momjian 已提交
2731 2732 2733 2734 2735 2736
					conf->gen.source = conf->gen.reset_source;
					conf->gen.tentative_source = conf->gen.reset_source;
					conf->gen.status |= GUC_HAVE_TENTATIVE;
					guc_dirty = true;
					break;
				}
2737
		}
2738 2739 2740

		if (gconf->flags & GUC_REPORT)
			ReportGUCOption(gconf);
2741 2742 2743 2744 2745
	}
}


/*
2746 2747 2748 2749 2750 2751 2752 2753 2754 2755
 * push_old_value
 *		Push previous state during first assignment to a GUC variable
 *		within a particular transaction.
 *
 * We have to be willing to "back-fill" the state stack if the first
 * assignment occurs within a subtransaction nested several levels deep.
 * This ensures that if an intermediate transaction aborts, it will have
 * the proper value available to restore the setting to.
 */
static void
B
Bruce Momjian 已提交
2756
push_old_value(struct config_generic * gconf)
2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772
{
	int			my_level = GetCurrentTransactionNestLevel();
	GucStack   *stack;

	/* If we're not inside a transaction, do nothing */
	if (my_level == 0)
		return;

	for (;;)
	{
		/* Done if we already pushed it at this nesting depth */
		if (gconf->stack && gconf->stack->nest_level >= my_level)
			return;

		/*
		 * We keep all the stack entries in TopTransactionContext so as to
B
Bruce Momjian 已提交
2773 2774
		 * avoid allocation problems when a subtransaction back-fills
		 * stack entries for upper transaction levels.
2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827
		 */
		stack = (GucStack *) MemoryContextAlloc(TopTransactionContext,
												sizeof(GucStack));

		stack->prev = gconf->stack;
		stack->nest_level = stack->prev ? stack->prev->nest_level + 1 : 1;
		stack->status = gconf->status;
		stack->tentative_source = gconf->tentative_source;
		stack->source = gconf->source;

		switch (gconf->vartype)
		{
			case PGC_BOOL:
				stack->tentative_val.boolval =
					((struct config_bool *) gconf)->tentative_val;
				stack->value.boolval =
					*((struct config_bool *) gconf)->variable;
				break;

			case PGC_INT:
				stack->tentative_val.intval =
					((struct config_int *) gconf)->tentative_val;
				stack->value.intval =
					*((struct config_int *) gconf)->variable;
				break;

			case PGC_REAL:
				stack->tentative_val.realval =
					((struct config_real *) gconf)->tentative_val;
				stack->value.realval =
					*((struct config_real *) gconf)->variable;
				break;

			case PGC_STRING:
				stack->tentative_val.stringval =
					((struct config_string *) gconf)->tentative_val;
				stack->value.stringval =
					*((struct config_string *) gconf)->variable;
				break;
		}

		gconf->stack = stack;

		/* Set state to indicate nothing happened yet within this level */
		gconf->status = GUC_HAVE_STACK;

		/* Ensure we remember to pop at end of xact */
		guc_dirty = true;
	}
}

/*
 * Do GUC processing at transaction or subtransaction commit or abort.
2828 2829
 */
void
2830
AtEOXact_GUC(bool isCommit, bool isSubXact)
2831
{
2832
	int			my_level;
2833 2834 2835 2836 2837 2838
	int			i;

	/* Quick exit if nothing's changed in this transaction */
	if (!guc_dirty)
		return;

2839
	/* Prevent memory leak if ereport during an assign_hook */
2840 2841 2842 2843 2844 2845
	if (guc_string_workspace)
	{
		free(guc_string_workspace);
		guc_string_workspace = NULL;
	}

2846 2847 2848
	my_level = GetCurrentTransactionNestLevel();
	Assert(isSubXact ? (my_level > 1) : (my_level == 1));

2849 2850 2851
	for (i = 0; i < num_guc_variables; i++)
	{
		struct config_generic *gconf = guc_variables[i];
2852 2853 2854
		int			my_status = gconf->status;
		GucStack   *stack = gconf->stack;
		bool		useTentative;
2855
		bool		changed;
2856

2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868
		/*
		 * Skip if nothing's happened to this var in this transaction
		 */
		if (my_status == 0)
		{
			Assert(stack == NULL);
			continue;
		}
		/* Assert that we stacked old value before changing it */
		Assert(stack != NULL && (my_status & GUC_HAVE_STACK));
		/* However, the last change may have been at an outer xact level */
		if (stack->nest_level < my_level)
2869
			continue;
2870 2871 2872
		Assert(stack->nest_level == my_level);

		/*
B
Bruce Momjian 已提交
2873 2874 2875 2876
		 * We will pop the stack entry.  Start by restoring outer xact
		 * status (since we may want to modify it below).  Be careful to
		 * use my_status to reference the inner xact status below this
		 * point...
2877 2878 2879 2880 2881 2882
		 */
		gconf->status = stack->status;

		/*
		 * We have two cases:
		 *
B
Bruce Momjian 已提交
2883 2884 2885 2886 2887
		 * If commit and HAVE_TENTATIVE, set actual value to tentative (this
		 * is to override a SET LOCAL if one occurred later than SET). We
		 * keep the tentative value and propagate HAVE_TENTATIVE to the
		 * parent status, allowing the SET's effect to percolate up. (But
		 * if we're exiting the outermost transaction, we'll drop the
2888 2889
		 * HAVE_TENTATIVE bit below.)
		 *
B
Bruce Momjian 已提交
2890 2891 2892 2893
		 * Otherwise, we have a transaction that aborted or executed only SET
		 * LOCAL (or no SET at all).  In either case it should have no
		 * further effect, so restore both tentative and actual values
		 * from the stack entry.
2894
		 */
2895

2896
		useTentative = isCommit && (my_status & GUC_HAVE_TENTATIVE) != 0;
2897 2898
		changed = false;

2899 2900 2901 2902
		switch (gconf->vartype)
		{
			case PGC_BOOL:
				{
B
Bruce Momjian 已提交
2903
					struct config_bool *conf = (struct config_bool *) gconf;
2904 2905
					bool		newval;
					GucSource	newsource;
2906

2907 2908 2909 2910 2911 2912 2913
					if (useTentative)
					{
						newval = conf->tentative_val;
						newsource = conf->gen.tentative_source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
					}
					else
B
Bruce Momjian 已提交
2914
					{
2915 2916 2917 2918
						newval = stack->value.boolval;
						newsource = stack->source;
						conf->tentative_val = stack->tentative_val.boolval;
						conf->gen.tentative_source = stack->tentative_source;
B
Bruce Momjian 已提交
2919 2920
					}

2921
					if (*conf->variable != newval)
B
Bruce Momjian 已提交
2922 2923
					{
						if (conf->assign_hook)
2924
							if (!(*conf->assign_hook) (newval,
B
Bruce Momjian 已提交
2925
												   true, PGC_S_OVERRIDE))
2926 2927
								elog(LOG, "failed to commit %s",
									 conf->gen.name);
2928
						*conf->variable = newval;
2929
						changed = true;
B
Bruce Momjian 已提交
2930
					}
2931
					conf->gen.source = newsource;
B
Bruce Momjian 已提交
2932
					break;
2933 2934 2935
				}
			case PGC_INT:
				{
B
Bruce Momjian 已提交
2936
					struct config_int *conf = (struct config_int *) gconf;
2937 2938
					int			newval;
					GucSource	newsource;
2939

2940 2941 2942 2943 2944 2945 2946
					if (useTentative)
					{
						newval = conf->tentative_val;
						newsource = conf->gen.tentative_source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
					}
					else
B
Bruce Momjian 已提交
2947
					{
2948 2949 2950 2951
						newval = stack->value.intval;
						newsource = stack->source;
						conf->tentative_val = stack->tentative_val.intval;
						conf->gen.tentative_source = stack->tentative_source;
B
Bruce Momjian 已提交
2952 2953
					}

2954
					if (*conf->variable != newval)
B
Bruce Momjian 已提交
2955 2956
					{
						if (conf->assign_hook)
2957
							if (!(*conf->assign_hook) (newval,
B
Bruce Momjian 已提交
2958
												   true, PGC_S_OVERRIDE))
2959 2960
								elog(LOG, "failed to commit %s",
									 conf->gen.name);
2961
						*conf->variable = newval;
2962
						changed = true;
B
Bruce Momjian 已提交
2963
					}
2964
					conf->gen.source = newsource;
B
Bruce Momjian 已提交
2965
					break;
2966 2967 2968
				}
			case PGC_REAL:
				{
B
Bruce Momjian 已提交
2969
					struct config_real *conf = (struct config_real *) gconf;
2970 2971
					double		newval;
					GucSource	newsource;
2972

2973
					if (useTentative)
B
Bruce Momjian 已提交
2974
					{
2975 2976 2977 2978 2979 2980 2981 2982 2983 2984
						newval = conf->tentative_val;
						newsource = conf->gen.tentative_source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
					}
					else
					{
						newval = stack->value.realval;
						newsource = stack->source;
						conf->tentative_val = stack->tentative_val.realval;
						conf->gen.tentative_source = stack->tentative_source;
B
Bruce Momjian 已提交
2985
					}
2986

2987
					if (*conf->variable != newval)
B
Bruce Momjian 已提交
2988 2989
					{
						if (conf->assign_hook)
2990
							if (!(*conf->assign_hook) (newval,
B
Bruce Momjian 已提交
2991
												   true, PGC_S_OVERRIDE))
2992 2993
								elog(LOG, "failed to commit %s",
									 conf->gen.name);
2994
						*conf->variable = newval;
2995
						changed = true;
B
Bruce Momjian 已提交
2996
					}
2997
					conf->gen.source = newsource;
B
Bruce Momjian 已提交
2998
					break;
2999
				}
B
Bruce Momjian 已提交
3000
			case PGC_STRING:
3001
				{
B
Bruce Momjian 已提交
3002
					struct config_string *conf = (struct config_string *) gconf;
3003 3004
					char	   *newval;
					GucSource	newsource;
3005

3006
					if (useTentative)
B
Bruce Momjian 已提交
3007
					{
3008 3009 3010
						newval = conf->tentative_val;
						newsource = conf->gen.tentative_source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
B
Bruce Momjian 已提交
3011 3012
					}
					else
3013
					{
3014 3015 3016 3017 3018 3019
						newval = stack->value.stringval;
						newsource = stack->source;
						set_string_field(conf, &conf->tentative_val,
										 stack->tentative_val.stringval);
						conf->gen.tentative_source = stack->tentative_source;
					}
3020

3021 3022
					if (*conf->variable != newval)
					{
B
Bruce Momjian 已提交
3023
						if (conf->assign_hook)
3024
						{
B
Bruce Momjian 已提交
3025 3026
							const char *newstr;

3027
							newstr = (*conf->assign_hook) (newval, true,
B
Bruce Momjian 已提交
3028
														 PGC_S_OVERRIDE);
B
Bruce Momjian 已提交
3029
							if (newstr == NULL)
3030 3031
								elog(LOG, "failed to commit %s",
									 conf->gen.name);
3032
							else if (newstr != newval)
B
Bruce Momjian 已提交
3033 3034
							{
								/*
3035 3036 3037
								 * If newval should now be freed, it'll be
								 * taken care of below.
								 *
B
Bruce Momjian 已提交
3038 3039 3040
								 * See notes in set_config_option about
								 * casting
								 */
3041
								newval = (char *) newstr;
B
Bruce Momjian 已提交
3042
							}
3043 3044
						}

3045
						set_string_field(conf, conf->variable, newval);
3046
						changed = true;
B
Bruce Momjian 已提交
3047
					}
3048 3049 3050 3051 3052 3053 3054 3055 3056
					conf->gen.source = newsource;
					/* Release stacked values if not used anymore */
					set_string_field(conf, &stack->value.stringval,
									 NULL);
					set_string_field(conf, &stack->tentative_val.stringval,
									 NULL);
					/* Don't store tentative value separately after commit */
					if (!isSubXact)
						set_string_field(conf, &conf->tentative_val, NULL);
B
Bruce Momjian 已提交
3057
					break;
3058 3059
				}
		}
3060

3061 3062 3063 3064 3065
		/* Finish popping the state stack */
		gconf->stack = stack->prev;
		pfree(stack);

		/*
B
Bruce Momjian 已提交
3066 3067
		 * If we're now out of all xact levels, forget TENTATIVE status
		 * bit; there's nothing tentative about the value anymore.
3068 3069 3070 3071 3072 3073 3074 3075
		 */
		if (!isSubXact)
		{
			Assert(gconf->stack == NULL);
			gconf->status = 0;
		}

		/* Report new value if we changed it */
3076 3077
		if (changed && (gconf->flags & GUC_REPORT))
			ReportGUCOption(gconf);
3078 3079
	}

3080
	/*
B
Bruce Momjian 已提交
3081 3082 3083 3084
	 * If we're now out of all xact levels, we can clear guc_dirty. (Note:
	 * we cannot reset guc_dirty when exiting a subtransaction, because we
	 * know that all outer transaction levels will have stacked values to
	 * deal with.)
3085 3086 3087
	 */
	if (!isSubXact)
		guc_dirty = false;
3088 3089 3090
}


3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123
/*
 * Start up automatic reporting of changes to variables marked GUC_REPORT.
 * This is executed at completion of backend startup.
 */
void
BeginReportingGUCOptions(void)
{
	int			i;

	/*
	 * Don't do anything unless talking to an interactive frontend of
	 * protocol 3.0 or later.
	 */
	if (whereToSendOutput != Remote ||
		PG_PROTOCOL_MAJOR(FrontendProtocol) < 3)
		return;

	reporting_enabled = true;

	/* Transmit initial values of interesting variables */
	for (i = 0; i < num_guc_variables; i++)
	{
		struct config_generic *conf = guc_variables[i];

		if (conf->flags & GUC_REPORT)
			ReportGUCOption(conf);
	}
}

/*
 * ReportGUCOption: if appropriate, transmit option value to frontend
 */
static void
3124
ReportGUCOption(struct config_generic * record)
3125 3126 3127
{
	if (reporting_enabled && (record->flags & GUC_REPORT))
	{
3128
		char	   *val = _ShowOption(record);
3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140
		StringInfoData msgbuf;

		pq_beginmessage(&msgbuf, 'S');
		pq_sendstring(&msgbuf, record->name);
		pq_sendstring(&msgbuf, val);
		pq_endmessage(&msgbuf);

		pfree(val);
	}
}


3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151
/*
 * Try to interpret value as boolean value.  Valid values are: true,
 * false, yes, no, on, off, 1, 0.  If the string parses okay, return
 * true, else false.  If result is not NULL, return the parsing result
 * there.
 */
static bool
parse_bool(const char *value, bool *result)
{
	size_t		len = strlen(value);

3152
	if (pg_strncasecmp(value, "true", len) == 0)
3153 3154 3155 3156
	{
		if (result)
			*result = true;
	}
3157
	else if (pg_strncasecmp(value, "false", len) == 0)
3158 3159 3160 3161 3162
	{
		if (result)
			*result = false;
	}

3163
	else if (pg_strncasecmp(value, "yes", len) == 0)
3164 3165 3166 3167
	{
		if (result)
			*result = true;
	}
3168
	else if (pg_strncasecmp(value, "no", len) == 0)
3169 3170 3171 3172 3173
	{
		if (result)
			*result = false;
	}

3174
	else if (pg_strcasecmp(value, "on") == 0)
3175 3176 3177 3178
	{
		if (result)
			*result = true;
	}
3179
	else if (pg_strcasecmp(value, "off") == 0)
3180 3181 3182 3183 3184
	{
		if (result)
			*result = false;
	}

3185
	else if (pg_strcasecmp(value, "1") == 0)
3186 3187 3188 3189
	{
		if (result)
			*result = true;
	}
3190
	else if (pg_strcasecmp(value, "0") == 0)
3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260
	{
		if (result)
			*result = false;
	}

	else
		return false;
	return true;
}



/*
 * Try to parse value as an integer.  The accepted formats are the
 * usual decimal, octal, or hexadecimal formats.  If the string parses
 * okay, return true, else false.  If result is not NULL, return the
 * value there.
 */
static bool
parse_int(const char *value, int *result)
{
	long		val;
	char	   *endptr;

	errno = 0;
	val = strtol(value, &endptr, 0);
	if (endptr == value || *endptr != '\0' || errno == ERANGE
#ifdef HAVE_LONG_INT_64
	/* if long > 32 bits, check for overflow of int4 */
		|| val != (long) ((int32) val)
#endif
		)
		return false;
	if (result)
		*result = (int) val;
	return true;
}



/*
 * Try to parse value as a floating point constant in the usual
 * format.	If the value parsed okay return true, else false.  If
 * result is not NULL, return the semantic value there.
 */
static bool
parse_real(const char *value, double *result)
{
	double		val;
	char	   *endptr;

	errno = 0;
	val = strtod(value, &endptr);
	if (endptr == value || *endptr != '\0' || errno == ERANGE)
		return false;
	if (result)
		*result = val;
	return true;
}



/*
 * Sets option `name' to given value. The value should be a string
 * which is going to be parsed and converted to the appropriate data
 * type.  The context and source parameters indicate in which context this
 * function is being called so it can apply the access restrictions
 * properly.
 *
 * If value is NULL, set the option to its default value. If the
3261
 * parameter changeVal is false then don't really set the option but do all
3262 3263 3264
 * the checks to see if it would work.
 *
 * If there is an error (non-existing option, invalid value) then an
3265 3266 3267 3268
 * ereport(ERROR) is thrown *unless* this is called in a context where we
 * don't want to ereport (currently, startup or SIGHUP config file reread).
 * In that case we write a suitable error message via ereport(DEBUG) and
 * return false. This is working around the deficiencies in the ereport
3269 3270 3271 3272 3273 3274 3275 3276 3277
 * mechanism, so don't blame me.  In all other cases, the function
 * returns true, including cases where the input is valid but we chose
 * not to apply it because of context or source-priority considerations.
 *
 * See also SetConfigOption for an external interface.
 */
bool
set_config_option(const char *name, const char *value,
				  GucContext context, GucSource source,
3278
				  bool isLocal, bool changeVal)
3279 3280 3281
{
	struct config_generic *record;
	int			elevel;
3282
	bool		makeDefault;
3283 3284

	if (context == PGC_SIGHUP || source == PGC_S_DEFAULT)
3285 3286 3287 3288 3289 3290 3291
	{
		/*
		 * To avoid cluttering the log, only the postmaster bleats loudly
		 * about problems with the config file.
		 */
		elevel = IsUnderPostmaster ? DEBUG2 : LOG;
	}
3292 3293 3294 3295 3296
	else if (source == PGC_S_DATABASE || source == PGC_S_USER)
		elevel = INFO;
	else
		elevel = ERROR;

3297
	record = find_option(name, elevel);
3298 3299
	if (record == NULL)
	{
3300 3301
		ereport(elevel,
				(errcode(ERRCODE_UNDEFINED_OBJECT),
B
Bruce Momjian 已提交
3302
		   errmsg("unrecognized configuration parameter \"%s\"", name)));
3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313
		return false;
	}

	/*
	 * Check if the option can be set at this time. See guc.h for the
	 * precise rules. Note that we don't want to throw errors if we're in
	 * the SIGHUP context. In that case we just ignore the attempt and
	 * return true.
	 */
	switch (record->context)
	{
3314 3315 3316 3317 3318
		case PGC_INTERNAL:
			if (context == PGC_SIGHUP)
				return true;
			if (context != PGC_INTERNAL)
			{
3319 3320
				ereport(elevel,
						(errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3321
						 errmsg("parameter \"%s\" cannot be changed",
3322
								name)));
3323 3324 3325
				return false;
			}
			break;
3326 3327 3328 3329 3330
		case PGC_POSTMASTER:
			if (context == PGC_SIGHUP)
				return true;
			if (context != PGC_POSTMASTER)
			{
3331 3332
				ereport(elevel,
						(errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
B
Bruce Momjian 已提交
3333 3334
						 errmsg("parameter \"%s\" cannot be changed after server start",
								name)));
3335 3336 3337 3338 3339 3340
				return false;
			}
			break;
		case PGC_SIGHUP:
			if (context != PGC_SIGHUP && context != PGC_POSTMASTER)
			{
3341 3342
				ereport(elevel,
						(errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
3343
						 errmsg("parameter \"%s\" cannot be changed now",
3344
								name)));
3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370
				return false;
			}

			/*
			 * Hmm, the idea of the SIGHUP context is "ought to be global,
			 * but can be changed after postmaster start". But there's
			 * nothing that prevents a crafty administrator from sending
			 * SIGHUP signals to individual backends only.
			 */
			break;
		case PGC_BACKEND:
			if (context == PGC_SIGHUP)
			{
				/*
				 * If a PGC_BACKEND parameter is changed in the config
				 * file, we want to accept the new value in the postmaster
				 * (whence it will propagate to subsequently-started
				 * backends), but ignore it in existing backends.  This is
				 * a tad klugy, but necessary because we don't re-read the
				 * config file during backend start.
				 */
				if (IsUnderPostmaster)
					return true;
			}
			else if (context != PGC_BACKEND && context != PGC_POSTMASTER)
			{
3371 3372
				ereport(elevel,
						(errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
B
Bruce Momjian 已提交
3373 3374
						 errmsg("parameter \"%s\" cannot be set after connection start",
								name)));
3375 3376 3377 3378 3379 3380
				return false;
			}
			break;
		case PGC_SUSET:
			if (context == PGC_USERSET || context == PGC_BACKEND)
			{
3381 3382
				ereport(elevel,
						(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
B
Bruce Momjian 已提交
3383 3384
					  errmsg("permission denied to set parameter \"%s\"",
							 name)));
3385
				return false;
3386 3387 3388 3389 3390
			}
			break;
		case PGC_USERSET:
			/* always okay */
			break;
3391
	}
3392

3393
	/*
3394
	 * Should we set reset/stacked values?	(If so, the behavior is not
3395 3396
	 * transactional.)
	 */
3397
	makeDefault = changeVal && (source <= PGC_S_OVERRIDE) && (value != NULL);
3398 3399 3400

	/*
	 * Ignore attempted set if overridden by previously processed setting.
3401
	 * However, if changeVal is false then plow ahead anyway since we are
B
Bruce Momjian 已提交
3402 3403
	 * trying to find out if the value is potentially good, not actually
	 * use it. Also keep going if makeDefault is true, since we may want
3404
	 * to set the reset/stacked values even if we can't set the variable
B
Bruce Momjian 已提交
3405
	 * itself.
3406 3407 3408
	 */
	if (record->source > source)
	{
3409
		if (changeVal && !makeDefault)
3410
		{
3411
			elog(DEBUG3, "\"%s\": setting ignored because previous source is higher priority",
3412 3413 3414
				 name);
			return true;
		}
3415
		changeVal = false;
3416 3417
	}

3418
	/*
3419
	 * Evaluate value and set variable.
3420
	 */
3421
	switch (record->vartype)
3422 3423 3424
	{
		case PGC_BOOL:
			{
B
Bruce Momjian 已提交
3425
				struct config_bool *conf = (struct config_bool *) record;
3426
				bool		newval;
B
Bruce Momjian 已提交
3427 3428

				if (value)
3429
				{
3430 3431
					if (!parse_bool(value, &newval))
					{
3432 3433
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3434
								 errmsg("parameter \"%s\" requires a Boolean value",
3435
										name)));
3436 3437 3438 3439 3440 3441 3442 3443
						return false;
					}
				}
				else
				{
					newval = conf->reset_val;
					source = conf->gen.reset_source;
				}
B
Bruce Momjian 已提交
3444

3445
				if (conf->assign_hook)
3446
					if (!(*conf->assign_hook) (newval, changeVal, source))
B
Bruce Momjian 已提交
3447
					{
3448 3449
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
B
Bruce Momjian 已提交
3450 3451
						 errmsg("invalid value for parameter \"%s\": %d",
								name, (int) newval)));
B
Bruce Momjian 已提交
3452 3453
						return false;
					}
3454

3455
				if (changeVal || makeDefault)
3456
				{
3457 3458 3459
					/* Save old value to support transaction abort */
					if (!makeDefault)
						push_old_value(&conf->gen);
3460
					if (changeVal)
3461
					{
3462 3463 3464 3465 3466
						*conf->variable = newval;
						conf->gen.source = source;
					}
					if (makeDefault)
					{
B
Bruce Momjian 已提交
3467
						GucStack   *stack;
3468

3469 3470 3471 3472 3473
						if (conf->gen.reset_source <= source)
						{
							conf->reset_val = newval;
							conf->gen.reset_source = source;
						}
3474
						for (stack = conf->gen.stack; stack; stack = stack->prev)
3475
						{
3476 3477 3478 3479 3480
							if (stack->source <= source)
							{
								stack->value.boolval = newval;
								stack->source = source;
							}
3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493
						}
					}
					else if (isLocal)
					{
						conf->gen.status |= GUC_HAVE_LOCAL;
						guc_dirty = true;
					}
					else
					{
						conf->tentative_val = newval;
						conf->gen.tentative_source = source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
						guc_dirty = true;
3494
					}
3495
				}
B
Bruce Momjian 已提交
3496
				break;
3497
			}
3498 3499

		case PGC_INT:
3500
			{
B
Bruce Momjian 已提交
3501
				struct config_int *conf = (struct config_int *) record;
3502
				int			newval;
3503

B
Bruce Momjian 已提交
3504
				if (value)
3505
				{
3506
					if (!parse_int(value, &newval))
B
Bruce Momjian 已提交
3507
					{
3508 3509
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
B
Bruce Momjian 已提交
3510 3511
								 errmsg("parameter \"%s\" requires an integer value",
										name)));
B
Bruce Momjian 已提交
3512 3513
						return false;
					}
3514
					if (newval < conf->min || newval > conf->max)
B
Bruce Momjian 已提交
3515
					{
3516 3517
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3518
								 errmsg("%d is outside the valid range for parameter \"%s\" (%d .. %d)",
B
Bruce Momjian 已提交
3519
								   newval, name, conf->min, conf->max)));
B
Bruce Momjian 已提交
3520 3521
						return false;
					}
3522 3523 3524 3525 3526 3527 3528 3529
				}
				else
				{
					newval = conf->reset_val;
					source = conf->gen.reset_source;
				}

				if (conf->assign_hook)
3530
					if (!(*conf->assign_hook) (newval, changeVal, source))
3531
					{
3532 3533
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
B
Bruce Momjian 已提交
3534 3535
						 errmsg("invalid value for parameter \"%s\": %d",
								name, newval)));
3536 3537
						return false;
					}
3538

3539
				if (changeVal || makeDefault)
3540
				{
3541 3542 3543
					/* Save old value to support transaction abort */
					if (!makeDefault)
						push_old_value(&conf->gen);
3544
					if (changeVal)
3545
					{
3546 3547 3548 3549 3550
						*conf->variable = newval;
						conf->gen.source = source;
					}
					if (makeDefault)
					{
B
Bruce Momjian 已提交
3551
						GucStack   *stack;
3552

3553 3554 3555 3556 3557
						if (conf->gen.reset_source <= source)
						{
							conf->reset_val = newval;
							conf->gen.reset_source = source;
						}
3558
						for (stack = conf->gen.stack; stack; stack = stack->prev)
3559
						{
3560 3561 3562 3563 3564
							if (stack->source <= source)
							{
								stack->value.intval = newval;
								stack->source = source;
							}
3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577
						}
					}
					else if (isLocal)
					{
						conf->gen.status |= GUC_HAVE_LOCAL;
						guc_dirty = true;
					}
					else
					{
						conf->tentative_val = newval;
						conf->gen.tentative_source = source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
						guc_dirty = true;
3578
					}
3579
				}
B
Bruce Momjian 已提交
3580
				break;
3581
			}
3582 3583

		case PGC_REAL:
3584
			{
B
Bruce Momjian 已提交
3585
				struct config_real *conf = (struct config_real *) record;
3586
				double		newval;
3587

B
Bruce Momjian 已提交
3588
				if (value)
3589
				{
3590
					if (!parse_real(value, &newval))
B
Bruce Momjian 已提交
3591
					{
3592 3593
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3594
								 errmsg("parameter \"%s\" requires a numeric value",
3595
										name)));
B
Bruce Momjian 已提交
3596 3597
						return false;
					}
3598
					if (newval < conf->min || newval > conf->max)
B
Bruce Momjian 已提交
3599
					{
3600 3601
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3602
								 errmsg("%g is outside the valid range for parameter \"%s\" (%g .. %g)",
B
Bruce Momjian 已提交
3603
								   newval, name, conf->min, conf->max)));
B
Bruce Momjian 已提交
3604 3605
						return false;
					}
3606 3607 3608 3609 3610 3611 3612 3613
				}
				else
				{
					newval = conf->reset_val;
					source = conf->gen.reset_source;
				}

				if (conf->assign_hook)
3614
					if (!(*conf->assign_hook) (newval, changeVal, source))
3615
					{
3616 3617
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
B
Bruce Momjian 已提交
3618 3619
						 errmsg("invalid value for parameter \"%s\": %g",
								name, newval)));
3620 3621
						return false;
					}
3622

3623
				if (changeVal || makeDefault)
3624
				{
3625 3626 3627
					/* Save old value to support transaction abort */
					if (!makeDefault)
						push_old_value(&conf->gen);
3628
					if (changeVal)
3629
					{
3630 3631 3632 3633 3634
						*conf->variable = newval;
						conf->gen.source = source;
					}
					if (makeDefault)
					{
B
Bruce Momjian 已提交
3635
						GucStack   *stack;
3636

3637 3638 3639 3640 3641
						if (conf->gen.reset_source <= source)
						{
							conf->reset_val = newval;
							conf->gen.reset_source = source;
						}
3642
						for (stack = conf->gen.stack; stack; stack = stack->prev)
3643
						{
3644 3645 3646 3647 3648
							if (stack->source <= source)
							{
								stack->value.realval = newval;
								stack->source = source;
							}
3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661
						}
					}
					else if (isLocal)
					{
						conf->gen.status |= GUC_HAVE_LOCAL;
						guc_dirty = true;
					}
					else
					{
						conf->tentative_val = newval;
						conf->gen.tentative_source = source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
						guc_dirty = true;
3662
					}
3663
				}
B
Bruce Momjian 已提交
3664
				break;
3665
			}
3666 3667 3668

		case PGC_STRING:
			{
B
Bruce Momjian 已提交
3669
				struct config_string *conf = (struct config_string *) record;
3670
				char	   *newval;
B
Bruce Momjian 已提交
3671 3672

				if (value)
3673
				{
3674
					newval = guc_strdup(elevel, value);
3675 3676 3677 3678 3679
					if (newval == NULL)
						return false;
				}
				else if (conf->reset_val)
				{
3680 3681
					/*
					 * We could possibly avoid strdup here, but easier to
B
Bruce Momjian 已提交
3682 3683
					 * make this case work the same as the normal
					 * assignment case.
3684
					 */
3685
					newval = guc_strdup(elevel, conf->reset_val);
3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697
					if (newval == NULL)
						return false;
					source = conf->gen.reset_source;
				}
				else
				{
					/* Nothing to reset to, as yet; so do nothing */
					break;
				}

				/*
				 * Remember string in workspace, so that we can free it
3698
				 * and avoid a permanent memory leak if hook ereports.
3699 3700 3701 3702 3703 3704 3705
				 */
				if (guc_string_workspace)
					free(guc_string_workspace);
				guc_string_workspace = newval;

				if (conf->assign_hook)
				{
B
Bruce Momjian 已提交
3706
					const char *hookresult;
3707 3708

					hookresult = (*conf->assign_hook) (newval,
3709
													   changeVal, source);
3710 3711
					guc_string_workspace = NULL;
					if (hookresult == NULL)
B
Bruce Momjian 已提交
3712
					{
3713
						free(newval);
3714 3715
						ereport(elevel,
								(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
B
Bruce Momjian 已提交
3716 3717
								 errmsg("invalid value for parameter \"%s\": \"%s\"",
										name, value ? value : "")));
B
Bruce Momjian 已提交
3718 3719
						return false;
					}
3720
					else if (hookresult != newval)
B
Bruce Momjian 已提交
3721
					{
3722
						free(newval);
B
Bruce Momjian 已提交
3723

3724
						/*
B
Bruce Momjian 已提交
3725 3726 3727 3728 3729 3730 3731
						 * Having to cast away const here is annoying, but
						 * the alternative is to declare assign_hooks as
						 * returning char*, which would mean they'd have
						 * to cast away const, or as both taking and
						 * returning char*, which doesn't seem attractive
						 * either --- we don't want them to scribble on
						 * the passed str.
3732 3733 3734 3735 3736 3737
						 */
						newval = (char *) hookresult;
					}
				}

				guc_string_workspace = NULL;
B
Bruce Momjian 已提交
3738

3739
				if (changeVal || makeDefault)
3740
				{
3741 3742 3743
					/* Save old value to support transaction abort */
					if (!makeDefault)
						push_old_value(&conf->gen);
3744
					if (changeVal)
3745
					{
3746
						set_string_field(conf, conf->variable, newval);
3747 3748 3749 3750
						conf->gen.source = source;
					}
					if (makeDefault)
					{
B
Bruce Momjian 已提交
3751
						GucStack   *stack;
3752

3753
						if (conf->gen.reset_source <= source)
B
Bruce Momjian 已提交
3754
						{
3755
							set_string_field(conf, &conf->reset_val, newval);
3756
							conf->gen.reset_source = source;
B
Bruce Momjian 已提交
3757
						}
3758
						for (stack = conf->gen.stack; stack; stack = stack->prev)
3759
						{
3760 3761 3762 3763 3764 3765
							if (stack->source <= source)
							{
								set_string_field(conf, &stack->value.stringval,
												 newval);
								stack->source = source;
							}
3766
						}
3767
						/* Perhaps we didn't install newval anywhere */
3768
						if (!string_field_used(conf, newval))
3769
							free(newval);
B
Bruce Momjian 已提交
3770
					}
3771
					else if (isLocal)
3772
					{
3773 3774
						conf->gen.status |= GUC_HAVE_LOCAL;
						guc_dirty = true;
3775
					}
3776
					else
3777
					{
3778
						set_string_field(conf, &conf->tentative_val, newval);
3779 3780 3781
						conf->gen.tentative_source = source;
						conf->gen.status |= GUC_HAVE_TENTATIVE;
						guc_dirty = true;
3782
					}
3783 3784 3785
				}
				else
					free(newval);
B
Bruce Momjian 已提交
3786
				break;
3787
			}
3788
	}
3789

3790
	if (changeVal && (record->flags & GUC_REPORT))
3791
		ReportGUCOption(record);
3792

3793 3794 3795 3796 3797 3798
	return true;
}


/*
 * Set a config option to the given value. See also set_config_option,
B
Bruce Momjian 已提交
3799
 * this is just the wrapper to be called from outside GUC.	NB: this
3800
 * is used only for non-transactional operations.
3801 3802
 */
void
3803
SetConfigOption(const char *name, const char *value,
3804
				GucContext context, GucSource source)
3805
{
3806
	(void) set_config_option(name, value, context, source, false, true);
3807 3808 3809 3810 3811
}



/*
3812
 * Fetch the current value of the option `name'. If the option doesn't exist,
3813
 * throw an ereport and don't return.
3814 3815 3816 3817 3818
 *
 * The string is *not* allocated for modification and is really only
 * valid until the next call to configuration related functions.
 */
const char *
B
Bruce Momjian 已提交
3819
GetConfigOption(const char *name)
3820
{
B
Bruce Momjian 已提交
3821
	struct config_generic *record;
3822 3823
	static char buffer[256];

3824
	record = find_option(name, ERROR);
3825
	if (record == NULL)
3826 3827
		ereport(ERROR,
				(errcode(ERRCODE_UNDEFINED_OBJECT),
B
Bruce Momjian 已提交
3828
		   errmsg("unrecognized configuration parameter \"%s\"", name)));
3829 3830 3831 3832
	if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
		ereport(ERROR,
				(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
				 errmsg("must be superuser to examine \"%s\"", name)));
3833

3834
	switch (record->vartype)
3835 3836
	{
		case PGC_BOOL:
B
Bruce Momjian 已提交
3837
			return *((struct config_bool *) record)->variable ? "on" : "off";
3838

3839
		case PGC_INT:
3840 3841
			snprintf(buffer, sizeof(buffer), "%d",
					 *((struct config_int *) record)->variable);
3842 3843
			return buffer;

3844
		case PGC_REAL:
3845 3846
			snprintf(buffer, sizeof(buffer), "%g",
					 *((struct config_real *) record)->variable);
3847 3848 3849
			return buffer;

		case PGC_STRING:
B
Bruce Momjian 已提交
3850
			return *((struct config_string *) record)->variable;
3851 3852 3853
	}
	return NULL;
}
3854

3855 3856 3857 3858 3859
/*
 * Get the RESET value associated with the given option.
 */
const char *
GetConfigOptionResetString(const char *name)
3860
{
3861 3862
	struct config_generic *record;
	static char buffer[256];
3863

3864
	record = find_option(name, ERROR);
3865
	if (record == NULL)
3866 3867
		ereport(ERROR,
				(errcode(ERRCODE_UNDEFINED_OBJECT),
B
Bruce Momjian 已提交
3868
		   errmsg("unrecognized configuration parameter \"%s\"", name)));
3869 3870 3871 3872
	if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
		ereport(ERROR,
				(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
				 errmsg("must be superuser to examine \"%s\"", name)));
3873 3874

	switch (record->vartype)
3875 3876
	{
		case PGC_BOOL:
3877
			return ((struct config_bool *) record)->reset_val ? "on" : "off";
3878

3879
		case PGC_INT:
3880
			snprintf(buffer, sizeof(buffer), "%d",
3881 3882
					 ((struct config_int *) record)->reset_val);
			return buffer;
3883 3884

		case PGC_REAL:
3885
			snprintf(buffer, sizeof(buffer), "%g",
3886 3887
					 ((struct config_real *) record)->reset_val);
			return buffer;
3888 3889

		case PGC_STRING:
3890 3891 3892 3893
			return ((struct config_string *) record)->reset_val;
	}
	return NULL;
}
3894

3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909
/*
 * Detect whether the given configuration option can only be set by
 * a superuser.
 */
bool
IsSuperuserConfigOption(const char *name)
{
	struct config_generic *record;

	record = find_option(name, ERROR);
	/* On an unrecognized name, don't error, just return false. */
	if (record == NULL)
		return false;
	return (record->context == PGC_SUSET);
}
3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928


/*
 * flatten_set_variable_args
 *		Given a parsenode List as emitted by the grammar for SET,
 *		convert to the flat string representation used by GUC.
 *
 * We need to be told the name of the variable the args are for, because
 * the flattening rules vary (ugh).
 *
 * The result is NULL if input is NIL (ie, SET ... TO DEFAULT), otherwise
 * a palloc'd string.
 */
char *
flatten_set_variable_args(const char *name, List *args)
{
	struct config_generic *record;
	int			flags;
	StringInfoData buf;
3929
	ListCell   *l;
3930

3931 3932 3933 3934
	/*
	 * Fast path if just DEFAULT.  We do not check the variable name in
	 * this case --- necessary for RESET ALL to work correctly.
	 */
3935 3936 3937
	if (args == NIL)
		return NULL;

3938
	/* Else get flags for the variable */
3939
	record = find_option(name, ERROR);
3940
	if (record == NULL)
3941 3942
		ereport(ERROR,
				(errcode(ERRCODE_UNDEFINED_OBJECT),
B
Bruce Momjian 已提交
3943
		   errmsg("unrecognized configuration parameter \"%s\"", name)));
3944 3945

	flags = record->flags;
3946 3947 3948

	/* Complain if list input and non-list variable */
	if ((flags & GUC_LIST_INPUT) == 0 &&
3949
		list_length(args) != 1)
3950 3951 3952
		ereport(ERROR,
				(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
				 errmsg("SET %s takes only one argument", name)));
3953 3954 3955 3956 3957 3958 3959 3960

	initStringInfo(&buf);

	foreach(l, args)
	{
		A_Const    *arg = (A_Const *) lfirst(l);
		char	   *val;

3961
		if (l != list_head(args))
3962 3963 3964
			appendStringInfo(&buf, ", ");

		if (!IsA(arg, A_Const))
3965
			elog(ERROR, "unrecognized node type: %d", (int) nodeTag(arg));
3966 3967 3968 3969 3970 3971 3972 3973

		switch (nodeTag(&arg->val))
		{
			case T_Integer:
				appendStringInfo(&buf, "%ld", intVal(&arg->val));
				break;
			case T_Float:
				/* represented as a string, so just copy it */
N
Neil Conway 已提交
3974
				appendStringInfoString(&buf, strVal(&arg->val));
3975 3976 3977 3978 3979 3980 3981 3982 3983 3984
				break;
			case T_String:
				val = strVal(&arg->val);
				if (arg->typename != NULL)
				{
					/*
					 * Must be a ConstInterval argument for TIME ZONE.
					 * Coerce to interval and back to normalize the value
					 * and account for any typmod.
					 */
3985
					Datum interval;
B
Bruce Momjian 已提交
3986
					char	   *intervalout;
3987 3988

					interval =
3989 3990 3991
					DirectFunctionCall3(interval_in,
										CStringGetDatum(val),
										ObjectIdGetDatum(InvalidOid),
B
Bruce Momjian 已提交
3992
								   Int32GetDatum(arg->typename->typmod));
3993 3994

					intervalout =
3995 3996
						DatumGetCString(DirectFunctionCall1(interval_out,
															interval));
3997 3998 3999 4000 4001
					appendStringInfo(&buf, "INTERVAL '%s'", intervalout);
				}
				else
				{
					/*
B
Bruce Momjian 已提交
4002 4003
					 * Plain string literal or identifier.	For quote
					 * mode, quote it if it's not a vanilla identifier.
4004 4005
					 */
					if (flags & GUC_LIST_QUOTE)
N
Neil Conway 已提交
4006
						appendStringInfoString(&buf, quote_identifier(val));
4007
					else
N
Neil Conway 已提交
4008
						appendStringInfoString(&buf, val);
4009 4010 4011
				}
				break;
			default:
4012 4013
				elog(ERROR, "unrecognized node type: %d",
					 (int) nodeTag(&arg->val));
4014 4015
				break;
		}
4016
	}
4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038

	return buf.data;
}


/*
 * SET command
 */
void
SetPGVariable(const char *name, List *args, bool is_local)
{
	char	   *argstring = flatten_set_variable_args(name, args);

	/* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
	set_config_option(name,
					  argstring,
					  (superuser() ? PGC_SUSET : PGC_USERSET),
					  PGC_S_SESSION,
					  is_local,
					  true);
}

4039 4040 4041 4042 4043 4044
/*
 * SET command wrapped as a SQL callable function.
 */
Datum
set_config_by_name(PG_FUNCTION_ARGS)
{
B
Bruce Momjian 已提交
4045 4046 4047 4048 4049
	char	   *name;
	char	   *value;
	char	   *new_value;
	bool		is_local;
	text	   *result_text;
4050 4051

	if (PG_ARGISNULL(0))
4052 4053
		ereport(ERROR,
				(errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
4054
				 errmsg("SET requires parameter name")));
4055 4056

	/* Get the GUC variable name */
4057
	name = DatumGetCString(DirectFunctionCall1(textout, PG_GETARG_DATUM(0)));
4058 4059 4060 4061 4062

	/* Get the desired value or set to NULL for a reset request */
	if (PG_ARGISNULL(1))
		value = NULL;
	else
4063
		value = DatumGetCString(DirectFunctionCall1(textout, PG_GETARG_DATUM(1)));
4064 4065

	/*
B
Bruce Momjian 已提交
4066 4067
	 * Get the desired state of is_local. Default to false if provided
	 * value is NULL
4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082
	 */
	if (PG_ARGISNULL(2))
		is_local = false;
	else
		is_local = PG_GETARG_BOOL(2);

	/* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
	set_config_option(name,
					  value,
					  (superuser() ? PGC_SUSET : PGC_USERSET),
					  PGC_S_SESSION,
					  is_local,
					  true);

	/* get the new current value */
4083
	new_value = GetConfigOptionByName(name, NULL);
4084 4085 4086 4087 4088 4089 4090 4091

	/* Convert return string to text */
	result_text = DatumGetTextP(DirectFunctionCall1(textin, CStringGetDatum(new_value)));

	/* return it */
	PG_RETURN_TEXT_P(result_text);
}

4092
static void
B
Bruce Momjian 已提交
4093
define_custom_variable(struct config_generic * variable)
4094
{
B
Bruce Momjian 已提交
4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106
	const char *name = variable->name;
	const char **nameAddr = &name;
	const char *value;
	struct config_string *pHolder;
	struct config_generic **res = (struct config_generic **) bsearch(
													  (void *) &nameAddr,
												  (void *) guc_variables,
													   num_guc_variables,
										 sizeof(struct config_generic *),
														guc_var_compare);

	if (res == NULL)
4107
	{
4108
		add_guc_variable(variable, ERROR);
4109 4110 4111
		return;
	}

B
Bruce Momjian 已提交
4112 4113
	/*
	 * This better be a placeholder
4114
	 */
B
Bruce Momjian 已提交
4115
	if (((*res)->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
4116 4117 4118
		ereport(ERROR,
				(errcode(ERRCODE_INTERNAL_ERROR),
				 errmsg("attempt to redefine parameter \"%s\"", name)));
4119 4120

	Assert((*res)->vartype == PGC_STRING);
B
Bruce Momjian 已提交
4121 4122
	pHolder = (struct config_string *) * res;

4123
	/* We have the same name, no sorting is necessary */
4124 4125 4126 4127
	*res = variable;

	value = *pHolder->variable;

4128
	/*
B
Bruce Momjian 已提交
4129 4130
	 * Assign the string value stored in the placeholder to the real
	 * variable.
4131 4132 4133 4134
	 *
	 * XXX this is not really good enough --- it should be a nontransactional
	 * assignment, since we don't want it to roll back if the current xact
	 * fails later.
4135 4136
	 */
	set_config_option(name, value,
B
Bruce Momjian 已提交
4137 4138
					  pHolder->gen.context, pHolder->gen.source,
					  false, true);
4139

4140 4141 4142
	/*
	 * Free up as much as we conveniently can of the placeholder structure
	 * (this neglects any stack items...)
4143
	 */
4144 4145 4146
	set_string_field(pHolder, pHolder->variable, NULL);
	set_string_field(pHolder, &pHolder->reset_val, NULL);
	set_string_field(pHolder, &pHolder->tentative_val, NULL);
4147 4148 4149 4150

	free(pHolder);
}

B
Bruce Momjian 已提交
4151
static void
4152
init_custom_variable(struct config_generic * gen,
B
Bruce Momjian 已提交
4153 4154 4155 4156 4157
					 const char *name,
					 const char *short_desc,
					 const char *long_desc,
					 GucContext context,
					 enum config_type type)
4158
{
B
Bruce Momjian 已提交
4159 4160 4161
	gen->name = guc_strdup(ERROR, name);
	gen->context = context;
	gen->group = CUSTOM_OPTIONS;
4162
	gen->short_desc = short_desc;
B
Bruce Momjian 已提交
4163 4164
	gen->long_desc = long_desc;
	gen->vartype = type;
4165 4166
}

B
Bruce Momjian 已提交
4167 4168 4169 4170 4171 4172 4173 4174 4175
void
DefineCustomBoolVariable(
						 const char *name,
						 const char *short_desc,
						 const char *long_desc,
						 bool *valueAddr,
						 GucContext context,
						 GucBoolAssignHook assign_hook,
						 GucShowHook show_hook)
4176
{
B
Bruce Momjian 已提交
4177 4178
	size_t		sz = sizeof(struct config_bool);
	struct config_bool *var = (struct config_bool *) guc_malloc(ERROR, sz);
4179 4180 4181 4182

	memset(var, 0, sz);
	init_custom_variable(&var->gen, name, short_desc, long_desc, context, PGC_BOOL);

B
Bruce Momjian 已提交
4183 4184
	var->variable = valueAddr;
	var->reset_val = *valueAddr;
4185
	var->assign_hook = assign_hook;
B
Bruce Momjian 已提交
4186
	var->show_hook = show_hook;
4187 4188 4189
	define_custom_variable(&var->gen);
}

B
Bruce Momjian 已提交
4190 4191 4192 4193 4194 4195
void
DefineCustomIntVariable(
						const char *name,
						const char *short_desc,
						const char *long_desc,
						int *valueAddr,
4196 4197
						int minValue,
						int maxValue,
B
Bruce Momjian 已提交
4198 4199 4200
						GucContext context,
						GucIntAssignHook assign_hook,
						GucShowHook show_hook)
4201
{
B
Bruce Momjian 已提交
4202 4203
	size_t		sz = sizeof(struct config_int);
	struct config_int *var = (struct config_int *) guc_malloc(ERROR, sz);
4204 4205 4206 4207

	memset(var, 0, sz);
	init_custom_variable(&var->gen, name, short_desc, long_desc, context, PGC_INT);

B
Bruce Momjian 已提交
4208 4209
	var->variable = valueAddr;
	var->reset_val = *valueAddr;
4210 4211
	var->min = minValue;
	var->max = maxValue;
4212
	var->assign_hook = assign_hook;
B
Bruce Momjian 已提交
4213
	var->show_hook = show_hook;
4214 4215 4216
	define_custom_variable(&var->gen);
}

B
Bruce Momjian 已提交
4217 4218 4219 4220 4221 4222
void
DefineCustomRealVariable(
						 const char *name,
						 const char *short_desc,
						 const char *long_desc,
						 double *valueAddr,
4223 4224
						 double minValue,
						 double maxValue,
B
Bruce Momjian 已提交
4225 4226 4227
						 GucContext context,
						 GucRealAssignHook assign_hook,
						 GucShowHook show_hook)
4228
{
B
Bruce Momjian 已提交
4229 4230
	size_t		sz = sizeof(struct config_real);
	struct config_real *var = (struct config_real *) guc_malloc(ERROR, sz);
4231 4232 4233 4234

	memset(var, 0, sz);
	init_custom_variable(&var->gen, name, short_desc, long_desc, context, PGC_REAL);

B
Bruce Momjian 已提交
4235 4236
	var->variable = valueAddr;
	var->reset_val = *valueAddr;
4237 4238
	var->min = minValue;
	var->max = maxValue;
4239
	var->assign_hook = assign_hook;
B
Bruce Momjian 已提交
4240
	var->show_hook = show_hook;
4241 4242 4243
	define_custom_variable(&var->gen);
}

B
Bruce Momjian 已提交
4244 4245 4246 4247 4248 4249 4250 4251 4252
void
DefineCustomStringVariable(
						   const char *name,
						   const char *short_desc,
						   const char *long_desc,
						   char **valueAddr,
						   GucContext context,
						   GucStringAssignHook assign_hook,
						   GucShowHook show_hook)
4253
{
B
Bruce Momjian 已提交
4254 4255
	size_t		sz = sizeof(struct config_string);
	struct config_string *var = (struct config_string *) guc_malloc(ERROR, sz);
4256 4257 4258 4259

	memset(var, 0, sz);
	init_custom_variable(&var->gen, name, short_desc, long_desc, context, PGC_STRING);

B
Bruce Momjian 已提交
4260 4261
	var->variable = valueAddr;
	var->reset_val = *valueAddr;
4262
	var->assign_hook = assign_hook;
B
Bruce Momjian 已提交
4263
	var->show_hook = show_hook;
4264 4265 4266
	define_custom_variable(&var->gen);
}

N
Neil Conway 已提交
4267
void
B
Bruce Momjian 已提交
4268
EmitWarningsOnPlaceholders(const char *className)
4269
{
B
Bruce Momjian 已提交
4270 4271 4272 4273
	struct config_generic **vars = guc_variables;
	struct config_generic **last = vars + num_guc_variables;

	int			nameLen = strlen(className);
4274

B
Bruce Momjian 已提交
4275
	while (vars < last)
4276
	{
B
Bruce Momjian 已提交
4277 4278 4279 4280 4281
		struct config_generic *var = *vars++;

		if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
			strncmp(className, var->name, nameLen) == 0 &&
			var->name[nameLen] == GUC_QUALIFIER_SEPARATOR)
4282 4283
		{
			ereport(INFO,
B
Bruce Momjian 已提交
4284 4285
					(errcode(ERRCODE_UNDEFINED_OBJECT),
					 errmsg("unrecognized configuration parameter \"%s\"", var->name)));
4286 4287 4288 4289 4290
		}
	}
}


4291 4292 4293 4294
/*
 * SHOW command
 */
void
4295
GetPGVariable(const char *name, DestReceiver *dest)
4296
{
4297
	if (pg_strcasecmp(name, "all") == 0)
4298
		ShowAllGUCConfig(dest);
4299
	else
4300 4301 4302 4303 4304 4305 4306 4307
		ShowGUCConfigOption(name, dest);
}

TupleDesc
GetPGVariableResultDesc(const char *name)
{
	TupleDesc	tupdesc;

4308
	if (pg_strcasecmp(name, "all") == 0)
4309 4310 4311 4312
	{
		/* need a tuple descriptor representing two TEXT columns */
		tupdesc = CreateTemplateTupleDesc(2, false);
		TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
4313
						   TEXTOID, -1, 0);
4314
		TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
4315
						   TEXTOID, -1, 0);
4316 4317 4318 4319 4320 4321 4322 4323 4324 4325
	}
	else
	{
		const char *varname;

		/* Get the canonical spelling of name */
		(void) GetConfigOptionByName(name, &varname);

		/* need a tuple descriptor representing a single TEXT column */
		tupdesc = CreateTemplateTupleDesc(1, false);
4326
		TupleDescInitEntry(tupdesc, (AttrNumber) 1, varname,
4327
						   TEXTOID, -1, 0);
4328 4329
	}
	return tupdesc;
4330 4331 4332 4333 4334 4335 4336 4337
}

/*
 * RESET command
 */
void
ResetPGVariable(const char *name)
{
4338
	if (pg_strcasecmp(name, "all") == 0)
4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352
		ResetAllOptions();
	else
		set_config_option(name,
						  NULL,
						  (superuser() ? PGC_SUSET : PGC_USERSET),
						  PGC_S_SESSION,
						  false,
						  true);
}


/*
 * SHOW command
 */
4353
static void
4354
ShowGUCConfigOption(const char *name, DestReceiver *dest)
4355
{
4356
	TupOutputState *tstate;
B
Bruce Momjian 已提交
4357 4358 4359
	TupleDesc	tupdesc;
	const char *varname;
	char	   *value;
4360

4361 4362 4363
	/* Get the value and canonical spelling of name */
	value = GetConfigOptionByName(name, &varname);

4364
	/* need a tuple descriptor representing a single TEXT column */
4365
	tupdesc = CreateTemplateTupleDesc(1, false);
4366
	TupleDescInitEntry(tupdesc, (AttrNumber) 1, varname,
4367
					   TEXTOID, -1, 0);
4368

4369 4370 4371 4372
	/* prepare for projection of tuples */
	tstate = begin_tup_output_tupdesc(dest, tupdesc);

	/* Send it */
4373
	do_text_output_oneline(tstate, value);
4374 4375

	end_tup_output(tstate);
4376 4377
}

4378 4379 4380
/*
 * SHOW ALL command
 */
4381
static void
4382
ShowAllGUCConfig(DestReceiver *dest)
4383
{
4384
	bool		am_superuser = superuser();
4385
	int			i;
4386
	TupOutputState *tstate;
B
Bruce Momjian 已提交
4387 4388
	TupleDesc	tupdesc;
	char	   *values[2];
4389 4390

	/* need a tuple descriptor representing two TEXT columns */
4391
	tupdesc = CreateTemplateTupleDesc(2, false);
4392
	TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
4393
					   TEXTOID, -1, 0);
4394
	TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
4395
					   TEXTOID, -1, 0);
4396 4397 4398

	/* prepare for projection of tuples */
	tstate = begin_tup_output_tupdesc(dest, tupdesc);
4399

4400 4401
	for (i = 0; i < num_guc_variables; i++)
	{
4402 4403
		struct config_generic *conf = guc_variables[i];

4404 4405
		if ((conf->flags & GUC_NO_SHOW_ALL) ||
			((conf->flags & GUC_SUPERUSER_ONLY) && !am_superuser))
4406
			continue;
4407 4408

		/* assign to the values array */
4409 4410
		values[0] = (char *) conf->name;
		values[1] = _ShowOption(conf);
4411 4412 4413

		/* send it to dest */
		do_tup_output(tstate, values);
4414

4415 4416 4417
		/* clean up */
		if (values[1] != NULL)
			pfree(values[1]);
4418
	}
4419 4420

	end_tup_output(tstate);
4421
}
4422

4423
/*
4424 4425
 * Return GUC variable value by name; optionally return canonical
 * form of name.  Return value is palloc'd.
4426 4427
 */
char *
4428
GetConfigOptionByName(const char *name, const char **varname)
4429 4430 4431
{
	struct config_generic *record;

4432
	record = find_option(name, ERROR);
4433
	if (record == NULL)
4434 4435
		ereport(ERROR,
				(errcode(ERRCODE_UNDEFINED_OBJECT),
B
Bruce Momjian 已提交
4436
		   errmsg("unrecognized configuration parameter \"%s\"", name)));
4437 4438 4439 4440
	if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
		ereport(ERROR,
				(errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
				 errmsg("must be superuser to examine \"%s\"", name)));
4441

4442 4443 4444
	if (varname)
		*varname = record->name;

4445 4446 4447 4448
	return _ShowOption(record);
}

/*
4449 4450
 * Return GUC variable value by variable number; optionally return canonical
 * form of name.  Return value is palloc'd.
4451
 */
4452 4453
void
GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
4454
{
B
Bruce Momjian 已提交
4455 4456
	char		buffer[256];
	struct config_generic *conf;
4457 4458 4459 4460 4461

	/* check requested variable number valid */
	Assert((varnum >= 0) && (varnum < num_guc_variables));

	conf = guc_variables[varnum];
4462

4463
	if (noshow)
4464 4465 4466 4467 4468 4469 4470
	{
		if ((conf->flags & GUC_NO_SHOW_ALL) ||
			((conf->flags & GUC_SUPERUSER_ONLY) && !superuser()))
			*noshow = true;
		else
			*noshow = false;
	}
4471

4472 4473 4474 4475 4476 4477 4478 4479
	/* first get the generic attributes */

	/* name */
	values[0] = conf->name;

	/* setting : use _ShowOption in order to avoid duplicating the logic */
	values[1] = _ShowOption(conf);

4480 4481 4482 4483 4484 4485 4486 4487 4488
	/* group */
	values[2] = config_group_names[conf->group];

	/* short_desc */
	values[3] = conf->short_desc;

	/* extra_desc */
	values[4] = conf->long_desc;

4489
	/* context */
4490
	values[5] = GucContext_Names[conf->context];
4491 4492

	/* vartype */
4493
	values[6] = config_type_names[conf->vartype];
4494 4495

	/* source */
4496
	values[7] = GucSource_Names[conf->source];
4497 4498 4499 4500 4501 4502 4503

	/* now get the type specifc attributes */
	switch (conf->vartype)
	{
		case PGC_BOOL:
			{
				/* min_val */
4504
				values[8] = NULL;
4505 4506

				/* max_val */
4507
				values[9] = NULL;
4508 4509 4510 4511 4512 4513 4514 4515 4516
			}
			break;

		case PGC_INT:
			{
				struct config_int *lconf = (struct config_int *) conf;

				/* min_val */
				snprintf(buffer, sizeof(buffer), "%d", lconf->min);
4517
				values[8] = pstrdup(buffer);
4518 4519 4520

				/* max_val */
				snprintf(buffer, sizeof(buffer), "%d", lconf->max);
4521
				values[9] = pstrdup(buffer);
4522 4523 4524 4525 4526 4527 4528 4529 4530
			}
			break;

		case PGC_REAL:
			{
				struct config_real *lconf = (struct config_real *) conf;

				/* min_val */
				snprintf(buffer, sizeof(buffer), "%g", lconf->min);
4531
				values[8] = pstrdup(buffer);
4532 4533 4534

				/* max_val */
				snprintf(buffer, sizeof(buffer), "%g", lconf->max);
4535
				values[9] = pstrdup(buffer);
4536 4537 4538 4539 4540 4541
			}
			break;

		case PGC_STRING:
			{
				/* min_val */
4542
				values[8] = NULL;
4543 4544

				/* max_val */
4545
				values[9] = NULL;
4546 4547 4548 4549 4550 4551
			}
			break;

		default:
			{
				/*
B
Bruce Momjian 已提交
4552 4553
				 * should never get here, but in case we do, set 'em to
				 * NULL
4554 4555 4556
				 */

				/* min_val */
4557
				values[8] = NULL;
4558 4559

				/* max_val */
4560
				values[9] = NULL;
4561 4562 4563
			}
			break;
	}
4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581
}

/*
 * Return the total number of GUC variables
 */
int
GetNumConfigOptions(void)
{
	return num_guc_variables;
}

/*
 * show_config_by_name - equiv to SHOW X command but implemented as
 * a function.
 */
Datum
show_config_by_name(PG_FUNCTION_ARGS)
{
B
Bruce Momjian 已提交
4582 4583 4584
	char	   *varname;
	char	   *varval;
	text	   *result_text;
4585 4586

	/* Get the GUC variable name */
4587
	varname = DatumGetCString(DirectFunctionCall1(textout, PG_GETARG_DATUM(0)));
4588 4589

	/* Get the value */
4590
	varval = GetConfigOptionByName(varname, NULL);
4591 4592 4593 4594 4595 4596 4597 4598

	/* Convert to text */
	result_text = DatumGetTextP(DirectFunctionCall1(textin, CStringGetDatum(varval)));

	/* return it */
	PG_RETURN_TEXT_P(result_text);
}

4599 4600 4601 4602
/*
 * show_all_settings - equiv to SHOW ALL command but implemented as
 * a Table Function.
 */
4603
#define NUM_PG_SETTINGS_ATTS	10
4604

4605 4606 4607
Datum
show_all_settings(PG_FUNCTION_ARGS)
{
B
Bruce Momjian 已提交
4608 4609 4610 4611 4612 4613
	FuncCallContext *funcctx;
	TupleDesc	tupdesc;
	int			call_cntr;
	int			max_calls;
	AttInMetadata *attinmeta;
	MemoryContext oldcontext;
4614 4615

	/* stuff done only on the first call of the function */
B
Bruce Momjian 已提交
4616 4617
	if (SRF_IS_FIRSTCALL())
	{
4618
		/* create a function context for cross-call persistence */
B
Bruce Momjian 已提交
4619
		funcctx = SRF_FIRSTCALL_INIT();
4620

B
Bruce Momjian 已提交
4621 4622 4623 4624
		/*
		 * switch to memory context appropriate for multiple function
		 * calls
		 */
4625 4626
		oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);

4627
		/*
B
Bruce Momjian 已提交
4628 4629
		 * need a tuple descriptor representing NUM_PG_SETTINGS_ATTS
		 * columns of the appropriate types
4630 4631
		 */
		tupdesc = CreateTemplateTupleDesc(NUM_PG_SETTINGS_ATTS, false);
4632
		TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
4633
						   TEXTOID, -1, 0);
4634
		TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
4635
						   TEXTOID, -1, 0);
4636
		TupleDescInitEntry(tupdesc, (AttrNumber) 3, "category",
4637
						   TEXTOID, -1, 0);
4638
		TupleDescInitEntry(tupdesc, (AttrNumber) 4, "short_desc",
4639
						   TEXTOID, -1, 0);
4640
		TupleDescInitEntry(tupdesc, (AttrNumber) 5, "extra_desc",
4641
						   TEXTOID, -1, 0);
4642
		TupleDescInitEntry(tupdesc, (AttrNumber) 6, "context",
4643
						   TEXTOID, -1, 0);
4644
		TupleDescInitEntry(tupdesc, (AttrNumber) 7, "vartype",
4645
						   TEXTOID, -1, 0);
4646
		TupleDescInitEntry(tupdesc, (AttrNumber) 8, "source",
4647
						   TEXTOID, -1, 0);
4648
		TupleDescInitEntry(tupdesc, (AttrNumber) 9, "min_val",
4649
						   TEXTOID, -1, 0);
4650
		TupleDescInitEntry(tupdesc, (AttrNumber) 10, "max_val",
4651
						   TEXTOID, -1, 0);
4652 4653

		/*
B
Bruce Momjian 已提交
4654 4655
		 * Generate attribute metadata needed later to produce tuples from
		 * raw C strings
4656 4657 4658 4659 4660 4661
		 */
		attinmeta = TupleDescGetAttInMetadata(tupdesc);
		funcctx->attinmeta = attinmeta;

		/* total number of tuples to be returned */
		funcctx->max_calls = GetNumConfigOptions();
4662 4663

		MemoryContextSwitchTo(oldcontext);
B
Bruce Momjian 已提交
4664
	}
4665 4666

	/* stuff done on every call of the function */
B
Bruce Momjian 已提交
4667
	funcctx = SRF_PERCALL_SETUP();
4668 4669 4670 4671 4672

	call_cntr = funcctx->call_cntr;
	max_calls = funcctx->max_calls;
	attinmeta = funcctx->attinmeta;

B
Bruce Momjian 已提交
4673 4674
	if (call_cntr < max_calls)	/* do when there is more left to send */
	{
4675
		char	   *values[NUM_PG_SETTINGS_ATTS];
4676 4677 4678 4679 4680 4681 4682 4683 4684
		bool		noshow;
		HeapTuple	tuple;
		Datum		result;

		/*
		 * Get the next visible GUC variable name and value
		 */
		do
		{
4685
			GetConfigOptionByNum(call_cntr, (const char **) values, &noshow);
4686 4687 4688 4689 4690 4691 4692
			if (noshow)
			{
				/* bump the counter and get the next config setting */
				call_cntr = ++funcctx->call_cntr;

				/* make sure we haven't gone too far now */
				if (call_cntr >= max_calls)
B
Bruce Momjian 已提交
4693
					SRF_RETURN_DONE(funcctx);
4694 4695 4696 4697 4698 4699 4700
			}
		} while (noshow);

		/* build a tuple */
		tuple = BuildTupleFromCStrings(attinmeta, values);

		/* make the tuple into a datum */
4701
		result = HeapTupleGetDatum(tuple);
4702

B
Bruce Momjian 已提交
4703 4704 4705
		SRF_RETURN_NEXT(funcctx, result);
	}
	else
4706 4707
	{
		/* do when there is no more left */
B
Bruce Momjian 已提交
4708
		SRF_RETURN_DONE(funcctx);
4709
	}
4710 4711
}

4712
static char *
B
Bruce Momjian 已提交
4713
_ShowOption(struct config_generic * record)
4714 4715 4716
{
	char		buffer[256];
	const char *val;
4717

4718 4719 4720 4721 4722
	switch (record->vartype)
	{
		case PGC_BOOL:
			{
				struct config_bool *conf = (struct config_bool *) record;
4723

4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763
				if (conf->show_hook)
					val = (*conf->show_hook) ();
				else
					val = *conf->variable ? "on" : "off";
			}
			break;

		case PGC_INT:
			{
				struct config_int *conf = (struct config_int *) record;

				if (conf->show_hook)
					val = (*conf->show_hook) ();
				else
				{
					snprintf(buffer, sizeof(buffer), "%d",
							 *conf->variable);
					val = buffer;
				}
			}
			break;

		case PGC_REAL:
			{
				struct config_real *conf = (struct config_real *) record;

				if (conf->show_hook)
					val = (*conf->show_hook) ();
				else
				{
					snprintf(buffer, sizeof(buffer), "%g",
							 *conf->variable);
					val = buffer;
				}
			}
			break;

		case PGC_STRING:
			{
				struct config_string *conf = (struct config_string *) record;
4764

4765 4766 4767 4768 4769 4770 4771 4772
				if (conf->show_hook)
					val = (*conf->show_hook) ();
				else if (*conf->variable && **conf->variable)
					val = *conf->variable;
				else
					val = "unset";
			}
			break;
4773

4774 4775 4776 4777 4778
		default:
			/* just to keep compiler quiet */
			val = "???";
			break;
	}
4779

4780
	return pstrdup(val);
4781
}
4782 4783


B
Bruce Momjian 已提交
4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795
#ifdef EXEC_BACKEND
/*
 *	This routine dumps out all non-default GUC options into a binary
 *	file that is read by all exec'ed backends.  The format is:
 *
 *		variable name, string, null terminated
 *		variable value, string, null terminated
 *		variable source, integer
 */
void
write_nondefault_variables(GucContext context)
{
4796 4797 4798 4799 4800
	int			i;
	char	   *new_filename,
			   *filename;
	int			elevel;
	FILE	   *fp;
B
Bruce Momjian 已提交
4801 4802 4803

	Assert(context == PGC_POSTMASTER || context == PGC_SIGHUP);
	Assert(DataDir);
4804 4805

	elevel = (context == PGC_SIGHUP) ? LOG : ERROR;
B
Bruce Momjian 已提交
4806 4807 4808 4809

	/*
	 * Open file
	 */
4810
	new_filename = guc_malloc(elevel, strlen(DataDir) + strlen(CONFIG_EXEC_PARAMS) +
B
Bruce Momjian 已提交
4811 4812
							  strlen(".new") + 2);
	if (new_filename == NULL)
4813 4814 4815 4816
		return;

	filename = guc_malloc(elevel, strlen(DataDir) + strlen(CONFIG_EXEC_PARAMS) + 2);
	if (filename == NULL)
B
Bruce Momjian 已提交
4817
	{
4818
		free(new_filename);
B
Bruce Momjian 已提交
4819 4820
		return;
	}
4821

B
Bruce Momjian 已提交
4822 4823 4824
	sprintf(new_filename, "%s/" CONFIG_EXEC_PARAMS ".new", DataDir);
	sprintf(filename, "%s/" CONFIG_EXEC_PARAMS, DataDir);

4825 4826 4827 4828
	fp = AllocateFile(new_filename, "w");
	if (!fp)
	{
		free(new_filename);
B
Bruce Momjian 已提交
4829
		free(filename);
4830 4831
		ereport(elevel,
				(errcode_for_file_access(),
4832
				 errmsg("could not write to file \"%s\": %m", CONFIG_EXEC_PARAMS)));
B
Bruce Momjian 已提交
4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889
		return;
	}

	for (i = 0; i < num_guc_variables; i++)
	{
		struct config_generic *gconf = guc_variables[i];

		if (gconf->source != PGC_S_DEFAULT)
		{
			fprintf(fp, "%s", gconf->name);
			fputc(0, fp);

			switch (gconf->vartype)
			{
				case PGC_BOOL:
					{
						struct config_bool *conf = (struct config_bool *) gconf;

						if (*conf->variable == 0)
							fprintf(fp, "false");
						else
							fprintf(fp, "true");
					}
					break;

				case PGC_INT:
					{
						struct config_int *conf = (struct config_int *) gconf;

						fprintf(fp, "%d", *conf->variable);
					}
					break;

				case PGC_REAL:
					{
						struct config_real *conf = (struct config_real *) gconf;

						/* Could lose precision here? */
						fprintf(fp, "%f", *conf->variable);
					}
					break;

				case PGC_STRING:
					{
						struct config_string *conf = (struct config_string *) gconf;

						fprintf(fp, "%s", *conf->variable);
					}
					break;
			}

			fputc(0, fp);

			fwrite(&gconf->source, sizeof(gconf->source), 1, fp);
		}
	}

4890 4891 4892 4893 4894 4895 4896 4897 4898 4899
	if (FreeFile(fp))
	{
		free(new_filename);
		free(filename);
		ereport(elevel,
				(errcode_for_file_access(),
				 errmsg("could not write to file \"%s\": %m", CONFIG_EXEC_PARAMS)));
		return;
	}

4900
	/*
B
Bruce Momjian 已提交
4901 4902
	 * Put new file in place.  This could delay on Win32, but we don't
	 * hold any exclusive locks.
4903
	 */
B
Bruce Momjian 已提交
4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917
	rename(new_filename, filename);
	free(new_filename);
	free(filename);
}


/*
 *	Read string, including null byte from file
 *
 *	Return NULL on EOF and nothing read
 */
static char *
read_string_with_null(FILE *fp)
{
4918 4919 4920 4921
	int			i = 0,
				ch,
				maxlen = 256;
	char	   *str = NULL;
B
Bruce Momjian 已提交
4922 4923 4924 4925 4926 4927 4928 4929

	do
	{
		if ((ch = fgetc(fp)) == EOF)
		{
			if (i == 0)
				return NULL;
			else
4930
				elog(FATAL, "invalid format of exec config params file");
B
Bruce Momjian 已提交
4931 4932
		}
		if (i == 0)
4933
			str = guc_malloc(FATAL, maxlen);
B
Bruce Momjian 已提交
4934
		else if (i == maxlen)
4935
			str = guc_realloc(FATAL, str, maxlen *= 2);
B
Bruce Momjian 已提交
4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949
		str[i++] = ch;
	} while (ch != 0);

	return str;
}


/*
 *	This routine loads a previous postmaster dump of its non-default
 *	settings.
 */
void
read_nondefault_variables(void)
{
4950 4951 4952 4953 4954
	char	   *filename;
	FILE	   *fp;
	char	   *varname,
			   *varvalue;
	int			varsource;
B
Bruce Momjian 已提交
4955 4956 4957 4958 4959 4960

	Assert(DataDir);

	/*
	 * Open file
	 */
4961
	filename = guc_malloc(FATAL, strlen(DataDir) + strlen(CONFIG_EXEC_PARAMS) + 2);
B
Bruce Momjian 已提交
4962 4963
	sprintf(filename, "%s/" CONFIG_EXEC_PARAMS, DataDir);

4964 4965 4966
	fp = AllocateFile(filename, "r");
	if (!fp)
	{
B
Bruce Momjian 已提交
4967
		free(filename);
4968 4969
		/* File not found is fine */
		if (errno != ENOENT)
4970 4971
			ereport(FATAL,
					(errcode_for_file_access(),
4972
					 errmsg("could not read from file \"%s\": %m", CONFIG_EXEC_PARAMS)));
B
Bruce Momjian 已提交
4973
		return;
4974
	}
B
Bruce Momjian 已提交
4975

4976
	for (;;)
B
Bruce Momjian 已提交
4977
	{
4978 4979
		struct config_generic *record;

B
Bruce Momjian 已提交
4980 4981 4982
		if ((varname = read_string_with_null(fp)) == NULL)
			break;

4983
		if ((record = find_option(varname, FATAL)) == NULL)
B
Bruce Momjian 已提交
4984
			elog(FATAL, "failed to locate variable %s in exec config params file", varname);
B
Bruce Momjian 已提交
4985
		if ((varvalue = read_string_with_null(fp)) == NULL)
4986
			elog(FATAL, "invalid format of exec config params file");
4987
		if (fread(&varsource, sizeof(varsource), 1, fp) == 0)
4988
			elog(FATAL, "invalid format of exec config params file");
B
Bruce Momjian 已提交
4989

4990
		(void) set_config_option(varname, varvalue, record->context,
4991
								 varsource, false, true);
B
Bruce Momjian 已提交
4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002
		free(varname);
		free(varvalue);
	}

	FreeFile(fp);
	free(filename);
	return;
}
#endif


5003 5004 5005 5006 5007 5008 5009 5010
/*
 * A little "long argument" simulation, although not quite GNU
 * compliant. Takes a string of the form "some-option=some value" and
 * returns name = "some_option" and value = "some value" in malloc'ed
 * storage. Note that '-' is converted to '_' in the option name. If
 * there is no '=' in the input string then value will be NULL.
 */
void
B
Bruce Momjian 已提交
5011
ParseLongOption(const char *string, char **name, char **value)
5012
{
B
Bruce Momjian 已提交
5013 5014
	size_t		equal_pos;
	char	   *cp;
5015 5016 5017 5018 5019 5020 5021 5022 5023

	AssertArg(string);
	AssertArg(name);
	AssertArg(value);

	equal_pos = strcspn(string, "=");

	if (string[equal_pos] == '=')
	{
5024
		*name = guc_malloc(FATAL, equal_pos + 1);
5025 5026 5027
		strncpy(*name, string, equal_pos);
		(*name)[equal_pos] = '\0';

5028
		*value = guc_strdup(FATAL, &string[equal_pos + 1]);
5029
	}
B
Bruce Momjian 已提交
5030
	else
5031
	{
5032
		/* no equal sign in string */
5033
		*name = guc_strdup(FATAL, string);
5034 5035 5036
		*value = NULL;
	}

B
Bruce Momjian 已提交
5037
	for (cp = *name; *cp; cp++)
5038 5039 5040
		if (*cp == '-')
			*cp = '_';
}
5041 5042


5043 5044
/*
 * Handle options fetched from pg_database.datconfig or pg_shadow.useconfig.
5045
 * The array parameter must be an array of TEXT (it must not be NULL).
5046
 */
5047 5048 5049
void
ProcessGUCArray(ArrayType *array, GucSource source)
{
B
Bruce Momjian 已提交
5050
	int			i;
5051

5052
	Assert(array != NULL);
5053 5054 5055
	Assert(ARR_ELEMTYPE(array) == TEXTOID);
	Assert(ARR_NDIM(array) == 1);
	Assert(ARR_LBOUND(array)[0] == 1);
5056
	Assert(source == PGC_S_DATABASE || source == PGC_S_USER);
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066

	for (i = 1; i <= ARR_DIMS(array)[0]; i++)
	{
		Datum		d;
		bool		isnull;
		char	   *s;
		char	   *name;
		char	   *value;

		d = array_ref(array, 1, &i,
B
Bruce Momjian 已提交
5067 5068 5069 5070
					  -1 /* varlenarray */ ,
					  -1 /* TEXT's typlen */ ,
					  false /* TEXT's typbyval */ ,
					  'i' /* TEXT's typalign */ ,
5071 5072 5073 5074 5075 5076
					  &isnull);

		if (isnull)
			continue;

		s = DatumGetCString(DirectFunctionCall1(textout, d));
5077

5078 5079 5080
		ParseLongOption(s, &name, &value);
		if (!value)
		{
5081 5082
			ereport(WARNING,
					(errcode(ERRCODE_SYNTAX_ERROR),
5083
					 errmsg("could not parse setting for parameter \"%s\"", name)));
5084
			free(name);
B
Bruce Momjian 已提交
5085
			continue;
5086 5087
		}

5088
		/*
B
Bruce Momjian 已提交
5089 5090
		 * We process all these options at SUSET level.  We assume that
		 * the right to insert an option into pg_database or pg_shadow was
5091 5092
		 * checked when it was inserted.
		 */
5093
		SetConfigOption(name, value, PGC_SUSET, source);
5094 5095 5096 5097

		free(name);
		if (value)
			free(value);
5098 5099 5100 5101
	}
}


5102 5103 5104 5105
/*
 * Add an entry to an option array.  The array parameter may be NULL
 * to indicate the current table entry is NULL.
 */
5106 5107 5108
ArrayType *
GUCArrayAdd(ArrayType *array, const char *name, const char *value)
{
5109
	const char *varname;
5110 5111 5112 5113 5114 5115 5116 5117 5118 5119
	Datum		datum;
	char	   *newval;
	ArrayType  *a;

	Assert(name);
	Assert(value);

	/* test if the option is valid */
	set_config_option(name, value,
					  superuser() ? PGC_SUSET : PGC_USERSET,
5120
					  PGC_S_TEST, false, false);
5121

5122 5123 5124 5125
	/* convert name to canonical spelling, so we can use plain strcmp */
	(void) GetConfigOptionByName(name, &varname);
	name = varname;

5126 5127 5128
	newval = palloc(strlen(name) + 1 + strlen(value) + 1);
	sprintf(newval, "%s=%s", name, value);
	datum = DirectFunctionCall1(textin, CStringGetDatum(newval));
B
Bruce Momjian 已提交
5129

5130 5131
	if (array)
	{
B
Bruce Momjian 已提交
5132 5133 5134
		int			index;
		bool		isnull;
		int			i;
5135

5136 5137 5138 5139
		Assert(ARR_ELEMTYPE(array) == TEXTOID);
		Assert(ARR_NDIM(array) == 1);
		Assert(ARR_LBOUND(array)[0] == 1);

B
Bruce Momjian 已提交
5140
		index = ARR_DIMS(array)[0] + 1; /* add after end */
5141 5142 5143 5144 5145 5146 5147

		for (i = 1; i <= ARR_DIMS(array)[0]; i++)
		{
			Datum		d;
			char	   *current;

			d = array_ref(array, 1, &i,
B
Bruce Momjian 已提交
5148 5149 5150 5151
						  -1 /* varlenarray */ ,
						  -1 /* TEXT's typlen */ ,
						  false /* TEXT's typbyval */ ,
						  'i' /* TEXT's typalign */ ,
5152
						  &isnull);
5153 5154
			if (isnull)
				continue;
5155
			current = DatumGetCString(DirectFunctionCall1(textout, d));
B
Bruce Momjian 已提交
5156
			if (strncmp(current, newval, strlen(name) + 1) == 0)
5157 5158 5159 5160 5161 5162 5163
			{
				index = i;
				break;
			}
		}

		isnull = false;
5164 5165
		a = array_set(array, 1, &index,
					  datum,
B
Bruce Momjian 已提交
5166 5167 5168 5169
					  -1 /* varlenarray */ ,
					  -1 /* TEXT's typlen */ ,
					  false /* TEXT's typbyval */ ,
					  'i' /* TEXT's typalign */ ,
5170
					  &isnull);
5171 5172
	}
	else
5173 5174 5175
		a = construct_array(&datum, 1,
							TEXTOID,
							-1, false, 'i');
5176 5177 5178 5179 5180

	return a;
}


5181 5182 5183 5184 5185
/*
 * Delete an entry from an option array.  The array parameter may be NULL
 * to indicate the current table entry is NULL.  Also, if the return value
 * is NULL then a null should be stored.
 */
5186 5187 5188
ArrayType *
GUCArrayDelete(ArrayType *array, const char *name)
{
5189
	const char *varname;
B
Bruce Momjian 已提交
5190 5191 5192
	ArrayType  *newarray;
	int			i;
	int			index;
5193 5194 5195 5196 5197 5198

	Assert(name);

	/* test if the option is valid */
	set_config_option(name, NULL,
					  superuser() ? PGC_SUSET : PGC_USERSET,
5199
					  PGC_S_TEST, false, false);
5200

5201 5202 5203 5204
	/* convert name to canonical spelling, so we can use plain strcmp */
	(void) GetConfigOptionByName(name, &varname);
	name = varname;

5205 5206 5207 5208 5209
	/* if array is currently null, then surely nothing to delete */
	if (!array)
		return NULL;

	newarray = NULL;
5210 5211 5212 5213 5214 5215 5216 5217 5218
	index = 1;

	for (i = 1; i <= ARR_DIMS(array)[0]; i++)
	{
		Datum		d;
		char	   *val;
		bool		isnull;

		d = array_ref(array, 1, &i,
B
Bruce Momjian 已提交
5219 5220 5221 5222
					  -1 /* varlenarray */ ,
					  -1 /* TEXT's typlen */ ,
					  false /* TEXT's typbyval */ ,
					  'i' /* TEXT's typalign */ ,
5223
					  &isnull);
5224 5225
		if (isnull)
			continue;
5226 5227
		val = DatumGetCString(DirectFunctionCall1(textout, d));

5228
		/* ignore entry if it's what we want to delete */
B
Bruce Momjian 已提交
5229
		if (strncmp(val, name, strlen(name)) == 0
5230 5231 5232
			&& val[strlen(name)] == '=')
			continue;

5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249
		/* else add it to the output array */
		if (newarray)
		{
			isnull = false;
			newarray = array_set(newarray, 1, &index,
								 d,
								 -1 /* varlenarray */ ,
								 -1 /* TEXT's typlen */ ,
								 false /* TEXT's typbyval */ ,
								 'i' /* TEXT's typalign */ ,
								 &isnull);
		}
		else
			newarray = construct_array(&d, 1,
									   TEXTOID,
									   -1, false, 'i');

5250 5251 5252 5253 5254
		index++;
	}

	return newarray;
}
5255

5256 5257 5258 5259 5260

/*
 * assign_hook subroutines
 */

5261 5262 5263
static const char *
assign_log_destination(const char *value, bool doit, GucSource source)
{
B
Bruce Momjian 已提交
5264 5265 5266 5267 5268
	char	   *rawstring;
	List	   *elemlist;
	ListCell   *l;
	int			newlogdest = 0;

5269 5270 5271 5272
	/* Need a modifiable copy of string */
	rawstring = pstrdup(value);

	/* Parse string into list of identifiers */
B
Bruce Momjian 已提交
5273
	if (!SplitIdentifierString(rawstring, ',', &elemlist))
5274 5275 5276
	{
		/* syntax error in list */
		pfree(rawstring);
5277
		list_free(elemlist);
5278 5279 5280 5281 5282 5283 5284 5285 5286
		if (source >= PGC_S_INTERACTIVE)
			ereport(ERROR,
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
					 errmsg("invalid list syntax for parameter \"log_destination\"")));
		return NULL;
	}

	foreach(l, elemlist)
	{
B
Bruce Momjian 已提交
5287 5288 5289
		char	   *tok = (char *) lfirst(l);

		if (pg_strcasecmp(tok, "stderr") == 0)
5290 5291
			newlogdest |= LOG_DESTINATION_STDERR;
#ifdef HAVE_SYSLOG
B
Bruce Momjian 已提交
5292
		else if (pg_strcasecmp(tok, "syslog") == 0)
5293 5294 5295
			newlogdest |= LOG_DESTINATION_SYSLOG;
#endif
#ifdef WIN32
B
Bruce Momjian 已提交
5296
		else if (pg_strcasecmp(tok, "eventlog") == 0)
5297 5298
			newlogdest |= LOG_DESTINATION_EVENTLOG;
#endif
B
Bruce Momjian 已提交
5299 5300
		else
		{
5301 5302 5303
			if (source >= PGC_S_INTERACTIVE)
				ereport(ERROR,
						(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
P
Peter Eisentraut 已提交
5304
						 errmsg("unrecognized \"log_destination\" key word: \"%s\"",
5305 5306
								tok)));
			pfree(rawstring);
5307
			list_free(elemlist);
5308 5309 5310 5311
			return NULL;
		}
	}

5312 5313 5314
	if (doit)
		Log_destination = newlogdest;

5315
	pfree(rawstring);
5316
	list_free(elemlist);
5317 5318 5319 5320

	return value;
}

5321 5322 5323
#ifdef HAVE_SYSLOG

static const char *
5324
assign_facility(const char *facility, bool doit, GucSource source)
5325
{
5326
	if (pg_strcasecmp(facility, "LOCAL0") == 0)
5327
		return facility;
5328
	if (pg_strcasecmp(facility, "LOCAL1") == 0)
5329
		return facility;
5330
	if (pg_strcasecmp(facility, "LOCAL2") == 0)
5331
		return facility;
5332
	if (pg_strcasecmp(facility, "LOCAL3") == 0)
5333
		return facility;
5334
	if (pg_strcasecmp(facility, "LOCAL4") == 0)
5335
		return facility;
5336
	if (pg_strcasecmp(facility, "LOCAL5") == 0)
5337
		return facility;
5338
	if (pg_strcasecmp(facility, "LOCAL6") == 0)
5339
		return facility;
5340
	if (pg_strcasecmp(facility, "LOCAL7") == 0)
5341 5342 5343 5344 5345 5346 5347
		return facility;
	return NULL;
}
#endif


static const char *
5348
assign_defaultxactisolevel(const char *newval, bool doit, GucSource source)
5349
{
5350
	if (pg_strcasecmp(newval, "serializable") == 0)
5351 5352 5353 5354
	{
		if (doit)
			DefaultXactIsoLevel = XACT_SERIALIZABLE;
	}
5355
	else if (pg_strcasecmp(newval, "repeatable read") == 0)
5356 5357 5358 5359
	{
		if (doit)
			DefaultXactIsoLevel = XACT_REPEATABLE_READ;
	}
5360
	else if (pg_strcasecmp(newval, "read committed") == 0)
5361 5362 5363 5364
	{
		if (doit)
			DefaultXactIsoLevel = XACT_READ_COMMITTED;
	}
5365
	else if (pg_strcasecmp(newval, "read uncommitted") == 0)
5366 5367 5368 5369
	{
		if (doit)
			DefaultXactIsoLevel = XACT_READ_UNCOMMITTED;
	}
5370 5371 5372 5373 5374 5375
	else
		return NULL;
	return newval;
}

static const char *
5376
assign_log_min_messages(const char *newval,
5377
						bool doit, GucSource source)
5378
{
5379
	return (assign_msglvl(&log_min_messages, newval, doit, source));
5380 5381
}

5382
static const char *
5383
assign_client_min_messages(const char *newval, bool doit, GucSource source)
5384
{
5385
	return (assign_msglvl(&client_min_messages, newval, doit, source));
5386 5387
}

5388
static const char *
5389
assign_min_error_statement(const char *newval, bool doit, GucSource source)
5390
{
5391
	return (assign_msglvl(&log_min_error_statement, newval, doit, source));
5392 5393 5394
}

static const char *
5395
assign_msglvl(int *var, const char *newval, bool doit, GucSource source)
5396
{
5397
	if (pg_strcasecmp(newval, "debug") == 0)
B
Bruce Momjian 已提交
5398 5399
	{
		if (doit)
5400
			(*var) = DEBUG2;
B
Bruce Momjian 已提交
5401
	}
5402
	else if (pg_strcasecmp(newval, "debug5") == 0)
B
Bruce Momjian 已提交
5403 5404 5405 5406
	{
		if (doit)
			(*var) = DEBUG5;
	}
5407
	else if (pg_strcasecmp(newval, "debug4") == 0)
B
Bruce Momjian 已提交
5408 5409 5410 5411
	{
		if (doit)
			(*var) = DEBUG4;
	}
5412
	else if (pg_strcasecmp(newval, "debug3") == 0)
B
Bruce Momjian 已提交
5413 5414 5415 5416
	{
		if (doit)
			(*var) = DEBUG3;
	}
5417
	else if (pg_strcasecmp(newval, "debug2") == 0)
B
Bruce Momjian 已提交
5418 5419 5420 5421
	{
		if (doit)
			(*var) = DEBUG2;
	}
5422
	else if (pg_strcasecmp(newval, "debug1") == 0)
B
Bruce Momjian 已提交
5423 5424 5425 5426
	{
		if (doit)
			(*var) = DEBUG1;
	}
5427
	else if (pg_strcasecmp(newval, "log") == 0)
B
Bruce Momjian 已提交
5428 5429 5430 5431
	{
		if (doit)
			(*var) = LOG;
	}
B
Bruce Momjian 已提交
5432

5433
	/*
B
Bruce Momjian 已提交
5434 5435
	 * Client_min_messages always prints 'info', but we allow it as a
	 * value anyway.
5436
	 */
5437
	else if (pg_strcasecmp(newval, "info") == 0)
B
Bruce Momjian 已提交
5438 5439 5440 5441
	{
		if (doit)
			(*var) = INFO;
	}
5442
	else if (pg_strcasecmp(newval, "notice") == 0)
B
Bruce Momjian 已提交
5443 5444 5445 5446
	{
		if (doit)
			(*var) = NOTICE;
	}
5447
	else if (pg_strcasecmp(newval, "warning") == 0)
B
Bruce Momjian 已提交
5448 5449 5450 5451
	{
		if (doit)
			(*var) = WARNING;
	}
5452
	else if (pg_strcasecmp(newval, "error") == 0)
B
Bruce Momjian 已提交
5453 5454 5455 5456
	{
		if (doit)
			(*var) = ERROR;
	}
5457
	/* We allow FATAL/PANIC for client-side messages too. */
5458
	else if (pg_strcasecmp(newval, "fatal") == 0)
5459 5460 5461 5462
	{
		if (doit)
			(*var) = FATAL;
	}
5463
	else if (pg_strcasecmp(newval, "panic") == 0)
5464 5465 5466 5467
	{
		if (doit)
			(*var) = PANIC;
	}
5468 5469 5470 5471
	else
		return NULL;			/* fail */
	return newval;				/* OK */
}
5472

5473
static const char *
5474
assign_log_error_verbosity(const char *newval, bool doit, GucSource source)
5475
{
5476
	if (pg_strcasecmp(newval, "terse") == 0)
5477 5478 5479 5480
	{
		if (doit)
			Log_error_verbosity = PGERROR_TERSE;
	}
5481
	else if (pg_strcasecmp(newval, "default") == 0)
5482 5483 5484 5485
	{
		if (doit)
			Log_error_verbosity = PGERROR_DEFAULT;
	}
5486
	else if (pg_strcasecmp(newval, "verbose") == 0)
5487 5488 5489 5490 5491 5492 5493 5494 5495
	{
		if (doit)
			Log_error_verbosity = PGERROR_VERBOSE;
	}
	else
		return NULL;			/* fail */
	return newval;				/* OK */
}

5496 5497 5498
static const char *
assign_log_statement(const char *newval, bool doit, GucSource source)
{
5499
	if (pg_strcasecmp(newval, "none") == 0)
5500 5501
	{
		if (doit)
5502
			log_statement = LOGSTMT_NONE;
5503
	}
5504
	else if (pg_strcasecmp(newval, "ddl") == 0)
5505 5506
	{
		if (doit)
5507
			log_statement = LOGSTMT_DDL;
5508
	}
5509
	else if (pg_strcasecmp(newval, "mod") == 0)
5510 5511
	{
		if (doit)
5512
			log_statement = LOGSTMT_MOD;
5513
	}
5514
	else if (pg_strcasecmp(newval, "all") == 0)
5515 5516
	{
		if (doit)
5517
			log_statement = LOGSTMT_ALL;
5518 5519 5520 5521 5522 5523
	}
	else
		return NULL;			/* fail */
	return newval;				/* OK */
}

5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536
static const char *
show_num_temp_buffers(void)
{
	/*
	 * We show the GUC var until local buffers have been initialized,
	 * and NLocBuffer afterwards.
	 */
	static char nbuf[32];

	sprintf(nbuf, "%d", NLocBuffer ? NLocBuffer : num_temp_buffers);
	return nbuf;
}

5537
static bool
5538
assign_phony_autocommit(bool newval, bool doit, GucSource source)
5539 5540 5541
{
	if (!newval)
	{
5542
		if (doit && source >= PGC_S_INTERACTIVE)
5543 5544
			ereport(ERROR,
					(errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
B
Bruce Momjian 已提交
5545
				errmsg("SET AUTOCOMMIT TO OFF is no longer supported")));
5546 5547 5548 5549 5550
		return false;
	}
	return true;
}

5551 5552 5553
static const char *
assign_custom_variable_classes(const char *newval, bool doit, GucSource source)
{
B
Bruce Momjian 已提交
5554 5555
	/*
	 * Check syntax. newval must be a comma separated list of identifiers.
5556 5557
	 * Whitespace is allowed but skipped.
	 */
B
Bruce Momjian 已提交
5558
	bool		hasSpaceAfterToken = false;
5559
	const char *cp = newval;
B
Bruce Momjian 已提交
5560 5561
	int			symLen = 0;
	int			c;
5562 5563 5564
	StringInfoData buf;

	initStringInfo(&buf);
B
Bruce Momjian 已提交
5565
	while ((c = *cp++) != 0)
5566
	{
B
Bruce Momjian 已提交
5567
		if (isspace(c))
5568
		{
B
Bruce Momjian 已提交
5569
			if (symLen > 0)
5570 5571 5572 5573
				hasSpaceAfterToken = true;
			continue;
		}

B
Bruce Momjian 已提交
5574
		if (c == ',')
5575 5576
		{
			hasSpaceAfterToken = false;
B
Bruce Momjian 已提交
5577
			if (symLen > 0)
5578 5579 5580 5581 5582 5583 5584
			{
				symLen = 0;
				appendStringInfoChar(&buf, ',');
			}
			continue;
		}

B
Bruce Momjian 已提交
5585
		if (hasSpaceAfterToken || !isalnum(c))
5586
		{
B
Bruce Momjian 已提交
5587 5588 5589
			/*
			 * Syntax error due to token following space after token or
			 * non alpha numeric character
5590
			 */
5591
			ereport(LOG,
5592
					(errcode(ERRCODE_SYNTAX_ERROR),
P
Peter Eisentraut 已提交
5593
					 errmsg("invalid syntax for \"custom_variable_classes\": \"%s\"", newval)));
5594
			pfree(buf.data);
5595 5596 5597
			return NULL;
		}
		symLen++;
B
Bruce Momjian 已提交
5598
		appendStringInfoChar(&buf, (char) c);
5599 5600
	}

5601
	/* Remove stray ',' at end */
B
Bruce Momjian 已提交
5602
	if (symLen == 0 && buf.len > 0)
5603
		buf.data[--buf.len] = '\0';
5604

B
Bruce Momjian 已提交
5605
	if (buf.len == 0)
5606
		newval = NULL;
B
Bruce Momjian 已提交
5607
	else if (doit)
5608 5609 5610 5611 5612
		newval = strdup(buf.data);

	pfree(buf.data);
	return newval;
}
5613

5614 5615 5616
static bool
assign_stage_log_stats(bool newval, bool doit, GucSource source)
{
5617
	if (newval && log_statement_stats)
5618
	{
5619 5620 5621 5622
		if (source >= PGC_S_INTERACTIVE)
			ereport(ERROR,
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
					 errmsg("cannot enable parameter when \"log_statement_stats\" is true")));
5623 5624
		/* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
		else if (source != PGC_S_OVERRIDE)
5625
			return false;
5626 5627 5628 5629 5630 5631 5632
	}
	return true;
}

static bool
assign_log_stats(bool newval, bool doit, GucSource source)
{
5633 5634
	if (newval &&
		(log_parser_stats || log_planner_stats || log_executor_stats))
5635
	{
5636 5637 5638 5639 5640 5641
		if (source >= PGC_S_INTERACTIVE)
			ereport(ERROR,
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
					 errmsg("cannot enable \"log_statement_stats\" when "
							"\"log_parser_stats\", \"log_planner_stats\", "
							"or \"log_executor_stats\" is true")));
5642 5643
		/* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
		else if (source != PGC_S_OVERRIDE)
5644
			return false;
5645 5646 5647 5648
	}
	return true;
}

5649 5650 5651
static bool
assign_transaction_read_only(bool newval, bool doit, GucSource source)
{
5652 5653 5654 5655 5656 5657 5658
	/* Can't go to r/w mode inside a r/o transaction */
	if (newval == false && XactReadOnly && IsSubTransaction())
	{
		if (source >= PGC_S_INTERACTIVE)
			ereport(ERROR,
					(errcode(ERRCODE_INVALID_PARAMETER_VALUE),
					 errmsg("cannot set transaction read-write mode inside a read-only transaction")));
5659 5660 5661
		/* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
		else if (source != PGC_S_OVERRIDE)
			return false;
5662
	}
5663 5664
	return true;
}
5665

5666 5667 5668 5669 5670
static const char *
assign_canonical_path(const char *newval, bool doit, GucSource source)
{
	if (doit)
	{
B
Bruce Momjian 已提交
5671 5672
		char	   *canon_val = guc_strdup(ERROR, newval);

5673 5674 5675 5676 5677 5678 5679
		canonicalize_path(canon_val);
		return canon_val;
	}
	else
		return newval;
}

5680

5681
#include "guc-file.c"