OSDN Git Service

Disallow RESET ROLE and RESET SESSION AUTHORIZATION inside security-definer
[pg-rex/syncrep.git] / src / backend / utils / misc / guc.c
1 /*--------------------------------------------------------------------
2  * guc.c
3  *
4  * Support for grand unified configuration scheme, including SET
5  * command, configuration file, and command line options.
6  * See src/backend/utils/misc/README for more information.
7  *
8  *
9  * Copyright (c) 2000-2009, 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.515 2009/09/03 22:08:05 tgl Exp $
14  *
15  *--------------------------------------------------------------------
16  */
17 #include "postgres.h"
18
19 #include <ctype.h>
20 #include <float.h>
21 #include <math.h>
22 #include <limits.h>
23 #include <unistd.h>
24 #include <sys/stat.h>
25 #ifdef HAVE_SYSLOG
26 #include <syslog.h>
27 #endif
28
29 #include "access/gin.h"
30 #include "access/transam.h"
31 #include "access/twophase.h"
32 #include "access/xact.h"
33 #include "catalog/namespace.h"
34 #include "commands/async.h"
35 #include "commands/prepare.h"
36 #include "commands/vacuum.h"
37 #include "commands/variable.h"
38 #include "commands/trigger.h"
39 #include "funcapi.h"
40 #include "libpq/auth.h"
41 #include "libpq/pqformat.h"
42 #include "miscadmin.h"
43 #include "optimizer/cost.h"
44 #include "optimizer/geqo.h"
45 #include "optimizer/paths.h"
46 #include "optimizer/planmain.h"
47 #include "parser/parse_expr.h"
48 #include "parser/parse_relation.h"
49 #include "parser/parse_type.h"
50 #include "parser/parser.h"
51 #include "parser/scansup.h"
52 #include "pgstat.h"
53 #include "postmaster/autovacuum.h"
54 #include "postmaster/bgwriter.h"
55 #include "postmaster/postmaster.h"
56 #include "postmaster/syslogger.h"
57 #include "postmaster/walwriter.h"
58 #include "regex/regex.h"
59 #include "storage/bufmgr.h"
60 #include "storage/fd.h"
61 #include "tcop/tcopprot.h"
62 #include "tsearch/ts_cache.h"
63 #include "utils/builtins.h"
64 #include "utils/bytea.h"
65 #include "utils/guc_tables.h"
66 #include "utils/memutils.h"
67 #include "utils/pg_locale.h"
68 #include "utils/plancache.h"
69 #include "utils/portal.h"
70 #include "utils/ps_status.h"
71 #include "utils/tzparser.h"
72 #include "utils/xml.h"
73
74 #ifndef PG_KRB_SRVTAB
75 #define PG_KRB_SRVTAB ""
76 #endif
77 #ifndef PG_KRB_SRVNAM
78 #define PG_KRB_SRVNAM ""
79 #endif
80
81 #define CONFIG_FILENAME "postgresql.conf"
82 #define HBA_FILENAME    "pg_hba.conf"
83 #define IDENT_FILENAME  "pg_ident.conf"
84
85 #ifdef EXEC_BACKEND
86 #define CONFIG_EXEC_PARAMS "global/config_exec_params"
87 #define CONFIG_EXEC_PARAMS_NEW "global/config_exec_params.new"
88 #endif
89
90 /* upper limit for GUC variables measured in kilobytes of memory */
91 #if SIZEOF_SIZE_T > 4
92 #define MAX_KILOBYTES   INT_MAX
93 #else
94 #define MAX_KILOBYTES   (INT_MAX / 1024)
95 #endif
96
97 #define KB_PER_MB (1024)
98 #define KB_PER_GB (1024*1024)
99
100 #define MS_PER_S 1000
101 #define S_PER_MIN 60
102 #define MS_PER_MIN (1000 * 60)
103 #define MIN_PER_H 60
104 #define S_PER_H (60 * 60)
105 #define MS_PER_H (1000 * 60 * 60)
106 #define MIN_PER_D (60 * 24)
107 #define S_PER_D (60 * 60 * 24)
108 #define MS_PER_D (1000 * 60 * 60 * 24)
109
110 /* XXX these should appear in other modules' header files */
111 extern bool Log_disconnections;
112 extern int      CommitDelay;
113 extern int      CommitSiblings;
114 extern char *default_tablespace;
115 extern char *temp_tablespaces;
116 extern bool synchronize_seqscans;
117 extern bool fullPageWrites;
118
119 #ifdef TRACE_SORT
120 extern bool trace_sort;
121 #endif
122 #ifdef TRACE_SYNCSCAN
123 extern bool trace_syncscan;
124 #endif
125 #ifdef DEBUG_BOUNDED_SORT
126 extern bool optimize_bounded_sort;
127 #endif
128
129 #ifdef USE_SSL
130 extern char *SSLCipherSuites;
131 #endif
132
133 static void set_config_sourcefile(const char *name, char *sourcefile,
134                                           int sourceline);
135
136 static const char *assign_log_destination(const char *value,
137                                            bool doit, GucSource source);
138
139 #ifdef HAVE_SYSLOG
140 static int      syslog_facility = LOG_LOCAL0;
141
142 static bool assign_syslog_facility(int newval,
143                                            bool doit, GucSource source);
144 static const char *assign_syslog_ident(const char *ident,
145                                         bool doit, GucSource source);
146 #endif
147
148 static bool assign_session_replication_role(int newval, bool doit,
149                                                                 GucSource source);
150 static const char *show_num_temp_buffers(void);
151 static bool assign_phony_autocommit(bool newval, bool doit, GucSource source);
152 static const char *assign_custom_variable_classes(const char *newval, bool doit,
153                                                            GucSource source);
154 static bool assign_debug_assertions(bool newval, bool doit, GucSource source);
155 static bool assign_ssl(bool newval, bool doit, GucSource source);
156 static bool assign_stage_log_stats(bool newval, bool doit, GucSource source);
157 static bool assign_log_stats(bool newval, bool doit, GucSource source);
158 static bool assign_transaction_read_only(bool newval, bool doit, GucSource source);
159 static const char *assign_canonical_path(const char *newval, bool doit, GucSource source);
160 static const char *assign_timezone_abbreviations(const char *newval, bool doit, GucSource source);
161 static const char *show_archive_command(void);
162 static bool assign_tcp_keepalives_idle(int newval, bool doit, GucSource source);
163 static bool assign_tcp_keepalives_interval(int newval, bool doit, GucSource source);
164 static bool assign_tcp_keepalives_count(int newval, bool doit, GucSource source);
165 static const char *show_tcp_keepalives_idle(void);
166 static const char *show_tcp_keepalives_interval(void);
167 static const char *show_tcp_keepalives_count(void);
168 static bool assign_maxconnections(int newval, bool doit, GucSource source);
169 static bool assign_autovacuum_max_workers(int newval, bool doit, GucSource source);
170 static bool assign_effective_io_concurrency(int newval, bool doit, GucSource source);
171 static const char *assign_pgstat_temp_directory(const char *newval, bool doit, GucSource source);
172
173 static char *config_enum_get_options(struct config_enum * record,
174                                                 const char *prefix, const char *suffix,
175                                                 const char *separator);
176
177
178 /*
179  * Options for enum values defined in this module.
180  *
181  * NOTE! Option values may not contain double quotes!
182  */
183
184 static const struct config_enum_entry bytea_output_options[] = {
185         {"escape", BYTEA_OUTPUT_ESCAPE, false},
186         {"hex", BYTEA_OUTPUT_HEX, false},
187         {NULL, 0, false}
188 };
189
190 /*
191  * We have different sets for client and server message level options because
192  * they sort slightly different (see "log" level)
193  */
194 static const struct config_enum_entry client_message_level_options[] = {
195         {"debug", DEBUG2, true},
196         {"debug5", DEBUG5, false},
197         {"debug4", DEBUG4, false},
198         {"debug3", DEBUG3, false},
199         {"debug2", DEBUG2, false},
200         {"debug1", DEBUG1, false},
201         {"log", LOG, false},
202         {"info", INFO, true},
203         {"notice", NOTICE, false},
204         {"warning", WARNING, false},
205         {"error", ERROR, false},
206         {"fatal", FATAL, true},
207         {"panic", PANIC, true},
208         {NULL, 0, false}
209 };
210
211 static const struct config_enum_entry server_message_level_options[] = {
212         {"debug", DEBUG2, true},
213         {"debug5", DEBUG5, false},
214         {"debug4", DEBUG4, false},
215         {"debug3", DEBUG3, false},
216         {"debug2", DEBUG2, false},
217         {"debug1", DEBUG1, false},
218         {"info", INFO, false},
219         {"notice", NOTICE, false},
220         {"warning", WARNING, false},
221         {"error", ERROR, false},
222         {"log", LOG, false},
223         {"fatal", FATAL, false},
224         {"panic", PANIC, false},
225         {NULL, 0, false}
226 };
227
228 static const struct config_enum_entry intervalstyle_options[] = {
229         {"postgres", INTSTYLE_POSTGRES, false},
230         {"postgres_verbose", INTSTYLE_POSTGRES_VERBOSE, false},
231         {"sql_standard", INTSTYLE_SQL_STANDARD, false},
232         {"iso_8601", INTSTYLE_ISO_8601, false},
233         {NULL, 0, false}
234 };
235
236 static const struct config_enum_entry log_error_verbosity_options[] = {
237         {"terse", PGERROR_TERSE, false},
238         {"default", PGERROR_DEFAULT, false},
239         {"verbose", PGERROR_VERBOSE, false},
240         {NULL, 0, false}
241 };
242
243 static const struct config_enum_entry log_statement_options[] = {
244         {"none", LOGSTMT_NONE, false},
245         {"ddl", LOGSTMT_DDL, false},
246         {"mod", LOGSTMT_MOD, false},
247         {"all", LOGSTMT_ALL, false},
248         {NULL, 0, false}
249 };
250
251 static const struct config_enum_entry regex_flavor_options[] = {
252         {"advanced", REG_ADVANCED, false},
253         {"extended", REG_EXTENDED, false},
254         {"basic", REG_BASIC, false},
255         {NULL, 0, false}
256 };
257
258 static const struct config_enum_entry isolation_level_options[] = {
259         {"serializable", XACT_SERIALIZABLE, false},
260         {"repeatable read", XACT_REPEATABLE_READ, false},
261         {"read committed", XACT_READ_COMMITTED, false},
262         {"read uncommitted", XACT_READ_UNCOMMITTED, false},
263         {NULL, 0}
264 };
265
266 static const struct config_enum_entry session_replication_role_options[] = {
267         {"origin", SESSION_REPLICATION_ROLE_ORIGIN, false},
268         {"replica", SESSION_REPLICATION_ROLE_REPLICA, false},
269         {"local", SESSION_REPLICATION_ROLE_LOCAL, false},
270         {NULL, 0, false}
271 };
272
273 #ifdef HAVE_SYSLOG
274 static const struct config_enum_entry syslog_facility_options[] = {
275         {"local0", LOG_LOCAL0, false},
276         {"local1", LOG_LOCAL1, false},
277         {"local2", LOG_LOCAL2, false},
278         {"local3", LOG_LOCAL3, false},
279         {"local4", LOG_LOCAL4, false},
280         {"local5", LOG_LOCAL5, false},
281         {"local6", LOG_LOCAL6, false},
282         {"local7", LOG_LOCAL7, false},
283         {NULL, 0}
284 };
285 #endif
286
287 static const struct config_enum_entry track_function_options[] = {
288         {"none", TRACK_FUNC_OFF, false},
289         {"pl", TRACK_FUNC_PL, false},
290         {"all", TRACK_FUNC_ALL, false},
291         {NULL, 0, false}
292 };
293
294 static const struct config_enum_entry xmlbinary_options[] = {
295         {"base64", XMLBINARY_BASE64, false},
296         {"hex", XMLBINARY_HEX, false},
297         {NULL, 0, false}
298 };
299
300 static const struct config_enum_entry xmloption_options[] = {
301         {"content", XMLOPTION_CONTENT, false},
302         {"document", XMLOPTION_DOCUMENT, false},
303         {NULL, 0, false}
304 };
305
306 /*
307  * Although only "on", "off", and "safe_encoding" are documented, we
308  * accept all the likely variants of "on" and "off".
309  */
310 static const struct config_enum_entry backslash_quote_options[] = {
311         {"safe_encoding", BACKSLASH_QUOTE_SAFE_ENCODING, false},
312         {"on", BACKSLASH_QUOTE_ON, false},
313         {"off", BACKSLASH_QUOTE_OFF, false},
314         {"true", BACKSLASH_QUOTE_ON, true},
315         {"false", BACKSLASH_QUOTE_OFF, true},
316         {"yes", BACKSLASH_QUOTE_ON, true},
317         {"no", BACKSLASH_QUOTE_OFF, true},
318         {"1", BACKSLASH_QUOTE_ON, true},
319         {"0", BACKSLASH_QUOTE_OFF, true},
320         {NULL, 0, false}
321 };
322
323 /*
324  * Although only "on", "off", and "partition" are documented, we
325  * accept all the likely variants of "on" and "off".
326  */
327 static const struct config_enum_entry constraint_exclusion_options[] = {
328         {"partition", CONSTRAINT_EXCLUSION_PARTITION, false},
329         {"on", CONSTRAINT_EXCLUSION_ON, false},
330         {"off", CONSTRAINT_EXCLUSION_OFF, false},
331         {"true", CONSTRAINT_EXCLUSION_ON, true},
332         {"false", CONSTRAINT_EXCLUSION_OFF, true},
333         {"yes", CONSTRAINT_EXCLUSION_ON, true},
334         {"no", CONSTRAINT_EXCLUSION_OFF, true},
335         {"1", CONSTRAINT_EXCLUSION_ON, true},
336         {"0", CONSTRAINT_EXCLUSION_OFF, true},
337         {NULL, 0, false}
338 };
339
340 /*
341  * Options for enum values stored in other modules
342  */
343 extern const struct config_enum_entry sync_method_options[];
344
345 /*
346  * GUC option variables that are exported from this module
347  */
348 #ifdef USE_ASSERT_CHECKING
349 bool            assert_enabled = true;
350 #else
351 bool            assert_enabled = false;
352 #endif
353 bool            log_duration = false;
354 bool            Debug_print_plan = false;
355 bool            Debug_print_parse = false;
356 bool            Debug_print_rewritten = false;
357 bool            Debug_pretty_print = true;
358
359 bool            log_parser_stats = false;
360 bool            log_planner_stats = false;
361 bool            log_executor_stats = false;
362 bool            log_statement_stats = false;            /* this is sort of all three
363                                                                                                  * above together */
364 bool            log_btree_build_stats = false;
365
366 bool            check_function_bodies = true;
367 bool            default_with_oids = false;
368 bool            SQL_inheritance = true;
369
370 bool            Password_encryption = true;
371
372 int                     log_min_error_statement = ERROR;
373 int                     log_min_messages = WARNING;
374 int                     client_min_messages = NOTICE;
375 int                     log_min_duration_statement = -1;
376 int                     log_temp_files = -1;
377
378 int                     num_temp_buffers = 1000;
379
380 char       *ConfigFileName;
381 char       *HbaFileName;
382 char       *IdentFileName;
383 char       *external_pid_file;
384
385 char       *pgstat_temp_directory;
386
387 int                     tcp_keepalives_idle;
388 int                     tcp_keepalives_interval;
389 int                     tcp_keepalives_count;
390
391 /*
392  * These variables are all dummies that don't do anything, except in some
393  * cases provide the value for SHOW to display.  The real state is elsewhere
394  * and is kept in sync by assign_hooks.
395  */
396 static char *log_destination_string;
397
398 #ifdef HAVE_SYSLOG
399 static char *syslog_ident_str;
400 #endif
401 static bool phony_autocommit;
402 static bool session_auth_is_superuser;
403 static double phony_random_seed;
404 static char *client_encoding_string;
405 static char *datestyle_string;
406 static char *locale_collate;
407 static char *locale_ctype;
408 static char *server_encoding_string;
409 static char *server_version_string;
410 static int      server_version_num;
411 static char *timezone_string;
412 static char *log_timezone_string;
413 static char *timezone_abbreviations_string;
414 static char *XactIsoLevel_string;
415 static char *data_directory;
416 static char *custom_variable_classes;
417 static int      max_function_args;
418 static int      max_index_keys;
419 static int      max_identifier_length;
420 static int      block_size;
421 static int      segment_size;
422 static int      wal_block_size;
423 static int      wal_segment_size;
424 static bool integer_datetimes;
425 static int      effective_io_concurrency;
426
427 /* should be static, but commands/variable.c needs to get at these */
428 char       *role_string;
429 char       *session_authorization_string;
430
431
432 /*
433  * Displayable names for context types (enum GucContext)
434  *
435  * Note: these strings are deliberately not localized.
436  */
437 const char *const GucContext_Names[] =
438 {
439          /* PGC_INTERNAL */ "internal",
440          /* PGC_POSTMASTER */ "postmaster",
441          /* PGC_SIGHUP */ "sighup",
442          /* PGC_BACKEND */ "backend",
443          /* PGC_SUSET */ "superuser",
444          /* PGC_USERSET */ "user"
445 };
446
447 /*
448  * Displayable names for source types (enum GucSource)
449  *
450  * Note: these strings are deliberately not localized.
451  */
452 const char *const GucSource_Names[] =
453 {
454          /* PGC_S_DEFAULT */ "default",
455          /* PGC_S_ENV_VAR */ "environment variable",
456          /* PGC_S_FILE */ "configuration file",
457          /* PGC_S_ARGV */ "command line",
458          /* PGC_S_DATABASE */ "database",
459          /* PGC_S_USER */ "user",
460          /* PGC_S_CLIENT */ "client",
461          /* PGC_S_OVERRIDE */ "override",
462          /* PGC_S_INTERACTIVE */ "interactive",
463          /* PGC_S_TEST */ "test",
464          /* PGC_S_SESSION */ "session"
465 };
466
467 /*
468  * Displayable names for the groupings defined in enum config_group
469  */
470 const char *const config_group_names[] =
471 {
472         /* UNGROUPED */
473         gettext_noop("Ungrouped"),
474         /* FILE_LOCATIONS */
475         gettext_noop("File Locations"),
476         /* CONN_AUTH */
477         gettext_noop("Connections and Authentication"),
478         /* CONN_AUTH_SETTINGS */
479         gettext_noop("Connections and Authentication / Connection Settings"),
480         /* CONN_AUTH_SECURITY */
481         gettext_noop("Connections and Authentication / Security and Authentication"),
482         /* RESOURCES */
483         gettext_noop("Resource Usage"),
484         /* RESOURCES_MEM */
485         gettext_noop("Resource Usage / Memory"),
486         /* RESOURCES_KERNEL */
487         gettext_noop("Resource Usage / Kernel Resources"),
488         /* WAL */
489         gettext_noop("Write-Ahead Log"),
490         /* WAL_SETTINGS */
491         gettext_noop("Write-Ahead Log / Settings"),
492         /* WAL_CHECKPOINTS */
493         gettext_noop("Write-Ahead Log / Checkpoints"),
494         /* QUERY_TUNING */
495         gettext_noop("Query Tuning"),
496         /* QUERY_TUNING_METHOD */
497         gettext_noop("Query Tuning / Planner Method Configuration"),
498         /* QUERY_TUNING_COST */
499         gettext_noop("Query Tuning / Planner Cost Constants"),
500         /* QUERY_TUNING_GEQO */
501         gettext_noop("Query Tuning / Genetic Query Optimizer"),
502         /* QUERY_TUNING_OTHER */
503         gettext_noop("Query Tuning / Other Planner Options"),
504         /* LOGGING */
505         gettext_noop("Reporting and Logging"),
506         /* LOGGING_WHERE */
507         gettext_noop("Reporting and Logging / Where to Log"),
508         /* LOGGING_WHEN */
509         gettext_noop("Reporting and Logging / When to Log"),
510         /* LOGGING_WHAT */
511         gettext_noop("Reporting and Logging / What to Log"),
512         /* STATS */
513         gettext_noop("Statistics"),
514         /* STATS_MONITORING */
515         gettext_noop("Statistics / Monitoring"),
516         /* STATS_COLLECTOR */
517         gettext_noop("Statistics / Query and Index Statistics Collector"),
518         /* AUTOVACUUM */
519         gettext_noop("Autovacuum"),
520         /* CLIENT_CONN */
521         gettext_noop("Client Connection Defaults"),
522         /* CLIENT_CONN_STATEMENT */
523         gettext_noop("Client Connection Defaults / Statement Behavior"),
524         /* CLIENT_CONN_LOCALE */
525         gettext_noop("Client Connection Defaults / Locale and Formatting"),
526         /* CLIENT_CONN_OTHER */
527         gettext_noop("Client Connection Defaults / Other Defaults"),
528         /* LOCK_MANAGEMENT */
529         gettext_noop("Lock Management"),
530         /* COMPAT_OPTIONS */
531         gettext_noop("Version and Platform Compatibility"),
532         /* COMPAT_OPTIONS_PREVIOUS */
533         gettext_noop("Version and Platform Compatibility / Previous PostgreSQL Versions"),
534         /* COMPAT_OPTIONS_CLIENT */
535         gettext_noop("Version and Platform Compatibility / Other Platforms and Clients"),
536         /* PRESET_OPTIONS */
537         gettext_noop("Preset Options"),
538         /* CUSTOM_OPTIONS */
539         gettext_noop("Customized Options"),
540         /* DEVELOPER_OPTIONS */
541         gettext_noop("Developer Options"),
542         /* help_config wants this array to be null-terminated */
543         NULL
544 };
545
546 /*
547  * Displayable names for GUC variable types (enum config_type)
548  *
549  * Note: these strings are deliberately not localized.
550  */
551 const char *const config_type_names[] =
552 {
553          /* PGC_BOOL */ "bool",
554          /* PGC_INT */ "integer",
555          /* PGC_REAL */ "real",
556          /* PGC_STRING */ "string",
557          /* PGC_ENUM */ "enum"
558 };
559
560
561 /*
562  * Contents of GUC tables
563  *
564  * See src/backend/utils/misc/README for design notes.
565  *
566  * TO ADD AN OPTION:
567  *
568  * 1. Declare a global variable of type bool, int, double, or char*
569  *        and make use of it.
570  *
571  * 2. Decide at what times it's safe to set the option. See guc.h for
572  *        details.
573  *
574  * 3. Decide on a name, a default value, upper and lower bounds (if
575  *        applicable), etc.
576  *
577  * 4. Add a record below.
578  *
579  * 5. Add it to src/backend/utils/misc/postgresql.conf.sample, if
580  *        appropriate.
581  *
582  * 6. Don't forget to document the option (at least in config.sgml).
583  *
584  * 7. If it's a new GUC_LIST option you must edit pg_dumpall.c to ensure
585  *        it is not single quoted at dump time.
586  */
587
588
589 /******** option records follow ********/
590
591 static struct config_bool ConfigureNamesBool[] =
592 {
593         {
594                 {"enable_seqscan", PGC_USERSET, QUERY_TUNING_METHOD,
595                         gettext_noop("Enables the planner's use of sequential-scan plans."),
596                         NULL
597                 },
598                 &enable_seqscan,
599                 true, NULL, NULL
600         },
601         {
602                 {"enable_indexscan", PGC_USERSET, QUERY_TUNING_METHOD,
603                         gettext_noop("Enables the planner's use of index-scan plans."),
604                         NULL
605                 },
606                 &enable_indexscan,
607                 true, NULL, NULL
608         },
609         {
610                 {"enable_bitmapscan", PGC_USERSET, QUERY_TUNING_METHOD,
611                         gettext_noop("Enables the planner's use of bitmap-scan plans."),
612                         NULL
613                 },
614                 &enable_bitmapscan,
615                 true, NULL, NULL
616         },
617         {
618                 {"enable_tidscan", PGC_USERSET, QUERY_TUNING_METHOD,
619                         gettext_noop("Enables the planner's use of TID scan plans."),
620                         NULL
621                 },
622                 &enable_tidscan,
623                 true, NULL, NULL
624         },
625         {
626                 {"enable_sort", PGC_USERSET, QUERY_TUNING_METHOD,
627                         gettext_noop("Enables the planner's use of explicit sort steps."),
628                         NULL
629                 },
630                 &enable_sort,
631                 true, NULL, NULL
632         },
633         {
634                 {"enable_hashagg", PGC_USERSET, QUERY_TUNING_METHOD,
635                         gettext_noop("Enables the planner's use of hashed aggregation plans."),
636                         NULL
637                 },
638                 &enable_hashagg,
639                 true, NULL, NULL
640         },
641         {
642                 {"enable_nestloop", PGC_USERSET, QUERY_TUNING_METHOD,
643                         gettext_noop("Enables the planner's use of nested-loop join plans."),
644                         NULL
645                 },
646                 &enable_nestloop,
647                 true, NULL, NULL
648         },
649         {
650                 {"enable_mergejoin", PGC_USERSET, QUERY_TUNING_METHOD,
651                         gettext_noop("Enables the planner's use of merge join plans."),
652                         NULL
653                 },
654                 &enable_mergejoin,
655                 true, NULL, NULL
656         },
657         {
658                 {"enable_hashjoin", PGC_USERSET, QUERY_TUNING_METHOD,
659                         gettext_noop("Enables the planner's use of hash join plans."),
660                         NULL
661                 },
662                 &enable_hashjoin,
663                 true, NULL, NULL
664         },
665         {
666                 {"geqo", PGC_USERSET, QUERY_TUNING_GEQO,
667                         gettext_noop("Enables genetic query optimization."),
668                         gettext_noop("This algorithm attempts to do planning without "
669                                                  "exhaustive searching.")
670                 },
671                 &enable_geqo,
672                 true, NULL, NULL
673         },
674         {
675                 /* Not for general use --- used by SET SESSION AUTHORIZATION */
676                 {"is_superuser", PGC_INTERNAL, UNGROUPED,
677                         gettext_noop("Shows whether the current user is a superuser."),
678                         NULL,
679                         GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
680                 },
681                 &session_auth_is_superuser,
682                 false, NULL, NULL
683         },
684         {
685                 {"ssl", PGC_POSTMASTER, CONN_AUTH_SECURITY,
686                         gettext_noop("Enables SSL connections."),
687                         NULL
688                 },
689                 &EnableSSL,
690                 false, assign_ssl, NULL
691         },
692         {
693                 {"fsync", PGC_SIGHUP, WAL_SETTINGS,
694                         gettext_noop("Forces synchronization of updates to disk."),
695                         gettext_noop("The server will use the fsync() system call in several places to make "
696                         "sure that updates are physically written to disk. This insures "
697                                                  "that a database cluster will recover to a consistent state after "
698                                                  "an operating system or hardware crash.")
699                 },
700                 &enableFsync,
701                 true, NULL, NULL
702         },
703         {
704                 {"synchronous_commit", PGC_USERSET, WAL_SETTINGS,
705                         gettext_noop("Sets immediate fsync at commit."),
706                         NULL
707                 },
708                 &XactSyncCommit,
709                 true, NULL, NULL
710         },
711         {
712                 {"zero_damaged_pages", PGC_SUSET, DEVELOPER_OPTIONS,
713                         gettext_noop("Continues processing past damaged page headers."),
714                         gettext_noop("Detection of a damaged page header normally causes PostgreSQL to "
715                                 "report an error, aborting the current transaction. Setting "
716                                                  "zero_damaged_pages to true causes the system to instead report a "
717                                                  "warning, zero out the damaged page, and continue processing. This "
718                                                  "behavior will destroy data, namely all the rows on the damaged page."),
719                         GUC_NOT_IN_SAMPLE
720                 },
721                 &zero_damaged_pages,
722                 false, NULL, NULL
723         },
724         {
725                 {"full_page_writes", PGC_SIGHUP, WAL_SETTINGS,
726                         gettext_noop("Writes full pages to WAL when first modified after a checkpoint."),
727                         gettext_noop("A page write in process during an operating system crash might be "
728                                                  "only partially written to disk.  During recovery, the row changes "
729                           "stored in WAL are not enough to recover.  This option writes "
730                                                  "pages when first modified after a checkpoint to WAL so full recovery "
731                                                  "is possible.")
732                 },
733                 &fullPageWrites,
734                 true, NULL, NULL
735         },
736         {
737                 {"silent_mode", PGC_POSTMASTER, LOGGING_WHERE,
738                         gettext_noop("Runs the server silently."),
739                         gettext_noop("If this parameter is set, the server will automatically run in the "
740                                  "background and any controlling terminals are dissociated.")
741                 },
742                 &SilentMode,
743                 false, NULL, NULL
744         },
745         {
746                 {"log_checkpoints", PGC_SIGHUP, LOGGING_WHAT,
747                         gettext_noop("Logs each checkpoint."),
748                         NULL
749                 },
750                 &log_checkpoints,
751                 false, NULL, NULL
752         },
753         {
754                 {"log_connections", PGC_BACKEND, LOGGING_WHAT,
755                         gettext_noop("Logs each successful connection."),
756                         NULL
757                 },
758                 &Log_connections,
759                 false, NULL, NULL
760         },
761         {
762                 {"log_disconnections", PGC_BACKEND, LOGGING_WHAT,
763                         gettext_noop("Logs end of a session, including duration."),
764                         NULL
765                 },
766                 &Log_disconnections,
767                 false, NULL, NULL
768         },
769         {
770                 {"debug_assertions", PGC_USERSET, DEVELOPER_OPTIONS,
771                         gettext_noop("Turns on various assertion checks."),
772                         gettext_noop("This is a debugging aid."),
773                         GUC_NOT_IN_SAMPLE
774                 },
775                 &assert_enabled,
776 #ifdef USE_ASSERT_CHECKING
777                 true,
778 #else
779                 false,
780 #endif
781                 assign_debug_assertions, NULL
782         },
783         {
784                 /* currently undocumented, so don't show in SHOW ALL */
785                 {"exit_on_error", PGC_USERSET, UNGROUPED,
786                         gettext_noop("No description available."),
787                         NULL,
788                         GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE
789                 },
790                 &ExitOnAnyError,
791                 false, NULL, NULL
792         },
793         {
794                 {"log_duration", PGC_SUSET, LOGGING_WHAT,
795                         gettext_noop("Logs the duration of each completed SQL statement."),
796                         NULL
797                 },
798                 &log_duration,
799                 false, NULL, NULL
800         },
801         {
802                 {"debug_print_parse", PGC_USERSET, LOGGING_WHAT,
803                         gettext_noop("Logs each query's parse tree."),
804                         NULL
805                 },
806                 &Debug_print_parse,
807                 false, NULL, NULL
808         },
809         {
810                 {"debug_print_rewritten", PGC_USERSET, LOGGING_WHAT,
811                         gettext_noop("Logs each query's rewritten parse tree."),
812                         NULL
813                 },
814                 &Debug_print_rewritten,
815                 false, NULL, NULL
816         },
817         {
818                 {"debug_print_plan", PGC_USERSET, LOGGING_WHAT,
819                         gettext_noop("Logs each query's execution plan."),
820                         NULL
821                 },
822                 &Debug_print_plan,
823                 false, NULL, NULL
824         },
825         {
826                 {"debug_pretty_print", PGC_USERSET, LOGGING_WHAT,
827                         gettext_noop("Indents parse and plan tree displays."),
828                         NULL
829                 },
830                 &Debug_pretty_print,
831                 true, NULL, NULL
832         },
833         {
834                 {"log_parser_stats", PGC_SUSET, STATS_MONITORING,
835                         gettext_noop("Writes parser performance statistics to the server log."),
836                         NULL
837                 },
838                 &log_parser_stats,
839                 false, assign_stage_log_stats, NULL
840         },
841         {
842                 {"log_planner_stats", PGC_SUSET, STATS_MONITORING,
843                         gettext_noop("Writes planner performance statistics to the server log."),
844                         NULL
845                 },
846                 &log_planner_stats,
847                 false, assign_stage_log_stats, NULL
848         },
849         {
850                 {"log_executor_stats", PGC_SUSET, STATS_MONITORING,
851                         gettext_noop("Writes executor performance statistics to the server log."),
852                         NULL
853                 },
854                 &log_executor_stats,
855                 false, assign_stage_log_stats, NULL
856         },
857         {
858                 {"log_statement_stats", PGC_SUSET, STATS_MONITORING,
859                         gettext_noop("Writes cumulative performance statistics to the server log."),
860                         NULL
861                 },
862                 &log_statement_stats,
863                 false, assign_log_stats, NULL
864         },
865 #ifdef BTREE_BUILD_STATS
866         {
867                 {"log_btree_build_stats", PGC_SUSET, DEVELOPER_OPTIONS,
868                         gettext_noop("No description available."),
869                         NULL,
870                         GUC_NOT_IN_SAMPLE
871                 },
872                 &log_btree_build_stats,
873                 false, NULL, NULL
874         },
875 #endif
876
877         {
878                 {"track_activities", PGC_SUSET, STATS_COLLECTOR,
879                         gettext_noop("Collects information about executing commands."),
880                         gettext_noop("Enables the collection of information on the currently "
881                                                  "executing command of each session, along with "
882                                                  "the time at which that command began execution.")
883                 },
884                 &pgstat_track_activities,
885                 true, NULL, NULL
886         },
887         {
888                 {"track_counts", PGC_SUSET, STATS_COLLECTOR,
889                         gettext_noop("Collects statistics on database activity."),
890                         NULL
891                 },
892                 &pgstat_track_counts,
893                 true, NULL, NULL
894         },
895
896         {
897                 {"update_process_title", PGC_SUSET, STATS_COLLECTOR,
898                         gettext_noop("Updates the process title to show the active SQL command."),
899                         gettext_noop("Enables updating of the process title every time a new SQL command is received by the server.")
900                 },
901                 &update_process_title,
902                 true, NULL, NULL
903         },
904
905         {
906                 {"autovacuum", PGC_SIGHUP, AUTOVACUUM,
907                         gettext_noop("Starts the autovacuum subprocess."),
908                         NULL
909                 },
910                 &autovacuum_start_daemon,
911                 true, NULL, NULL
912         },
913
914         {
915                 {"trace_notify", PGC_USERSET, DEVELOPER_OPTIONS,
916                         gettext_noop("Generates debugging output for LISTEN and NOTIFY."),
917                         NULL,
918                         GUC_NOT_IN_SAMPLE
919                 },
920                 &Trace_notify,
921                 false, NULL, NULL
922         },
923
924 #ifdef LOCK_DEBUG
925         {
926                 {"trace_locks", PGC_SUSET, DEVELOPER_OPTIONS,
927                         gettext_noop("No description available."),
928                         NULL,
929                         GUC_NOT_IN_SAMPLE
930                 },
931                 &Trace_locks,
932                 false, NULL, NULL
933         },
934         {
935                 {"trace_userlocks", PGC_SUSET, DEVELOPER_OPTIONS,
936                         gettext_noop("No description available."),
937                         NULL,
938                         GUC_NOT_IN_SAMPLE
939                 },
940                 &Trace_userlocks,
941                 false, NULL, NULL
942         },
943         {
944                 {"trace_lwlocks", PGC_SUSET, DEVELOPER_OPTIONS,
945                         gettext_noop("No description available."),
946                         NULL,
947                         GUC_NOT_IN_SAMPLE
948                 },
949                 &Trace_lwlocks,
950                 false, NULL, NULL
951         },
952         {
953                 {"debug_deadlocks", PGC_SUSET, DEVELOPER_OPTIONS,
954                         gettext_noop("No description available."),
955                         NULL,
956                         GUC_NOT_IN_SAMPLE
957                 },
958                 &Debug_deadlocks,
959                 false, NULL, NULL
960         },
961 #endif
962
963         {
964                 {"log_lock_waits", PGC_SUSET, LOGGING_WHAT,
965                         gettext_noop("Logs long lock waits."),
966                         NULL
967                 },
968                 &log_lock_waits,
969                 false, NULL, NULL
970         },
971
972         {
973                 {"log_hostname", PGC_SIGHUP, LOGGING_WHAT,
974                         gettext_noop("Logs the host name in the connection logs."),
975                         gettext_noop("By default, connection logs only show the IP address "
976                                                  "of the connecting host. If you want them to show the host name you "
977                           "can turn this on, but depending on your host name resolution "
978                            "setup it might impose a non-negligible performance penalty.")
979                 },
980                 &log_hostname,
981                 false, NULL, NULL
982         },
983         {
984                 {"sql_inheritance", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
985                         gettext_noop("Causes subtables to be included by default in various commands."),
986                         NULL
987                 },
988                 &SQL_inheritance,
989                 true, NULL, NULL
990         },
991         {
992                 {"password_encryption", PGC_USERSET, CONN_AUTH_SECURITY,
993                         gettext_noop("Encrypt passwords."),
994                         gettext_noop("When a password is specified in CREATE USER or "
995                            "ALTER USER without writing either ENCRYPTED or UNENCRYPTED, "
996                                                  "this parameter determines whether the password is to be encrypted.")
997                 },
998                 &Password_encryption,
999                 true, NULL, NULL
1000         },
1001         {
1002                 {"transform_null_equals", PGC_USERSET, COMPAT_OPTIONS_CLIENT,
1003                         gettext_noop("Treats \"expr=NULL\" as \"expr IS NULL\"."),
1004                         gettext_noop("When turned on, expressions of the form expr = NULL "
1005                            "(or NULL = expr) are treated as expr IS NULL, that is, they "
1006                                 "return true if expr evaluates to the null value, and false "
1007                            "otherwise. The correct behavior of expr = NULL is to always "
1008                                                  "return null (unknown).")
1009                 },
1010                 &Transform_null_equals,
1011                 false, NULL, NULL
1012         },
1013         {
1014                 {"db_user_namespace", PGC_SIGHUP, CONN_AUTH_SECURITY,
1015                         gettext_noop("Enables per-database user names."),
1016                         NULL
1017                 },
1018                 &Db_user_namespace,
1019                 false, NULL, NULL
1020         },
1021         {
1022                 /* only here for backwards compatibility */
1023                 {"autocommit", PGC_USERSET, CLIENT_CONN_STATEMENT,
1024                         gettext_noop("This parameter doesn't do anything."),
1025                         gettext_noop("It's just here so that we won't choke on SET AUTOCOMMIT TO ON from 7.3-vintage clients."),
1026                         GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE
1027                 },
1028                 &phony_autocommit,
1029                 true, assign_phony_autocommit, NULL
1030         },
1031         {
1032                 {"default_transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
1033                         gettext_noop("Sets the default read-only status of new transactions."),
1034                         NULL
1035                 },
1036                 &DefaultXactReadOnly,
1037                 false, NULL, NULL
1038         },
1039         {
1040                 {"transaction_read_only", PGC_USERSET, CLIENT_CONN_STATEMENT,
1041                         gettext_noop("Sets the current transaction's read-only status."),
1042                         NULL,
1043                         GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1044                 },
1045                 &XactReadOnly,
1046                 false, assign_transaction_read_only, NULL
1047         },
1048         {
1049                 {"add_missing_from", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1050                         gettext_noop("Automatically adds missing table references to FROM clauses."),
1051                         NULL
1052                 },
1053                 &add_missing_from,
1054                 false, NULL, NULL
1055         },
1056         {
1057                 {"check_function_bodies", PGC_USERSET, CLIENT_CONN_STATEMENT,
1058                         gettext_noop("Check function bodies during CREATE FUNCTION."),
1059                         NULL
1060                 },
1061                 &check_function_bodies,
1062                 true, NULL, NULL
1063         },
1064         {
1065                 {"array_nulls", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1066                         gettext_noop("Enable input of NULL elements in arrays."),
1067                         gettext_noop("When turned on, unquoted NULL in an array input "
1068                                                  "value means a null value; "
1069                                                  "otherwise it is taken literally.")
1070                 },
1071                 &Array_nulls,
1072                 true, NULL, NULL
1073         },
1074         {
1075                 {"default_with_oids", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1076                         gettext_noop("Create new tables with OIDs by default."),
1077                         NULL
1078                 },
1079                 &default_with_oids,
1080                 false, NULL, NULL
1081         },
1082         {
1083                 {"logging_collector", PGC_POSTMASTER, LOGGING_WHERE,
1084                         gettext_noop("Start a subprocess to capture stderr output and/or csvlogs into log files."),
1085                         NULL
1086                 },
1087                 &Logging_collector,
1088                 false, NULL, NULL
1089         },
1090         {
1091                 {"log_truncate_on_rotation", PGC_SIGHUP, LOGGING_WHERE,
1092                         gettext_noop("Truncate existing log files of same name during log rotation."),
1093                         NULL
1094                 },
1095                 &Log_truncate_on_rotation,
1096                 false, NULL, NULL
1097         },
1098
1099 #ifdef TRACE_SORT
1100         {
1101                 {"trace_sort", PGC_USERSET, DEVELOPER_OPTIONS,
1102                         gettext_noop("Emit information about resource usage in sorting."),
1103                         NULL,
1104                         GUC_NOT_IN_SAMPLE
1105                 },
1106                 &trace_sort,
1107                 false, NULL, NULL
1108         },
1109 #endif
1110
1111 #ifdef TRACE_SYNCSCAN
1112         /* this is undocumented because not exposed in a standard build */
1113         {
1114                 {"trace_syncscan", PGC_USERSET, DEVELOPER_OPTIONS,
1115                         gettext_noop("Generate debugging output for synchronized scanning."),
1116                         NULL,
1117                         GUC_NOT_IN_SAMPLE
1118                 },
1119                 &trace_syncscan,
1120                 false, NULL, NULL
1121         },
1122 #endif
1123
1124 #ifdef DEBUG_BOUNDED_SORT
1125         /* this is undocumented because not exposed in a standard build */
1126         {
1127                 {
1128                         "optimize_bounded_sort", PGC_USERSET, QUERY_TUNING_METHOD,
1129                         gettext_noop("Enable bounded sorting using heap sort."),
1130                         NULL,
1131                         GUC_NOT_IN_SAMPLE
1132                 },
1133                 &optimize_bounded_sort,
1134                 true, NULL, NULL
1135         },
1136 #endif
1137
1138 #ifdef WAL_DEBUG
1139         {
1140                 {"wal_debug", PGC_SUSET, DEVELOPER_OPTIONS,
1141                         gettext_noop("Emit WAL-related debugging output."),
1142                         NULL,
1143                         GUC_NOT_IN_SAMPLE
1144                 },
1145                 &XLOG_DEBUG,
1146                 false, NULL, NULL
1147         },
1148 #endif
1149
1150         {
1151                 {"integer_datetimes", PGC_INTERNAL, PRESET_OPTIONS,
1152                         gettext_noop("Datetimes are integer based."),
1153                         NULL,
1154                         GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1155                 },
1156                 &integer_datetimes,
1157 #ifdef HAVE_INT64_TIMESTAMP
1158                 true, NULL, NULL
1159 #else
1160                 false, NULL, NULL
1161 #endif
1162         },
1163
1164         {
1165                 {"krb_caseins_users", PGC_SIGHUP, CONN_AUTH_SECURITY,
1166                         gettext_noop("Sets whether Kerberos and GSSAPI user names should be treated as case-insensitive."),
1167                         NULL
1168                 },
1169                 &pg_krb_caseins_users,
1170                 false, NULL, NULL
1171         },
1172
1173         {
1174                 {"escape_string_warning", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1175                         gettext_noop("Warn about backslash escapes in ordinary string literals."),
1176                         NULL
1177                 },
1178                 &escape_string_warning,
1179                 true, NULL, NULL
1180         },
1181
1182         {
1183                 {"standard_conforming_strings", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1184                         gettext_noop("Causes '...' strings to treat backslashes literally."),
1185                         NULL,
1186                         GUC_REPORT
1187                 },
1188                 &standard_conforming_strings,
1189                 false, NULL, NULL
1190         },
1191
1192         {
1193                 {"synchronize_seqscans", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
1194                         gettext_noop("Enable synchronized sequential scans."),
1195                         NULL
1196                 },
1197                 &synchronize_seqscans,
1198                 true, NULL, NULL
1199         },
1200
1201         {
1202                 {"archive_mode", PGC_POSTMASTER, WAL_SETTINGS,
1203                         gettext_noop("Allows archiving of WAL files using archive_command."),
1204                         NULL
1205                 },
1206                 &XLogArchiveMode,
1207                 false, NULL, NULL
1208         },
1209
1210         {
1211                 {"allow_system_table_mods", PGC_POSTMASTER, DEVELOPER_OPTIONS,
1212                         gettext_noop("Allows modifications of the structure of system tables."),
1213                         NULL,
1214                         GUC_NOT_IN_SAMPLE
1215                 },
1216                 &allowSystemTableMods,
1217                 false, NULL, NULL
1218         },
1219
1220         {
1221                 {"ignore_system_indexes", PGC_BACKEND, DEVELOPER_OPTIONS,
1222                         gettext_noop("Disables reading from system indexes."),
1223                         gettext_noop("It does not prevent updating the indexes, so it is safe "
1224                                                  "to use.  The worst consequence is slowness."),
1225                         GUC_NOT_IN_SAMPLE
1226                 },
1227                 &IgnoreSystemIndexes,
1228                 false, NULL, NULL
1229         },
1230
1231         /* End-of-list marker */
1232         {
1233                 {NULL, 0, 0, NULL, NULL}, NULL, false, NULL, NULL
1234         }
1235 };
1236
1237
1238 static struct config_int ConfigureNamesInt[] =
1239 {
1240         {
1241                 {"archive_timeout", PGC_SIGHUP, WAL_SETTINGS,
1242                         gettext_noop("Forces a switch to the next xlog file if a "
1243                                                  "new file has not been started within N seconds."),
1244                         NULL,
1245                         GUC_UNIT_S
1246                 },
1247                 &XLogArchiveTimeout,
1248                 0, 0, INT_MAX, NULL, NULL
1249         },
1250         {
1251                 {"post_auth_delay", PGC_BACKEND, DEVELOPER_OPTIONS,
1252                         gettext_noop("Waits N seconds on connection startup after authentication."),
1253                         gettext_noop("This allows attaching a debugger to the process."),
1254                         GUC_NOT_IN_SAMPLE | GUC_UNIT_S
1255                 },
1256                 &PostAuthDelay,
1257                 0, 0, INT_MAX, NULL, NULL
1258         },
1259         {
1260                 {"default_statistics_target", PGC_USERSET, QUERY_TUNING_OTHER,
1261                         gettext_noop("Sets the default statistics target."),
1262                         gettext_noop("This applies to table columns that have not had a "
1263                                 "column-specific target set via ALTER TABLE SET STATISTICS.")
1264                 },
1265                 &default_statistics_target,
1266                 100, 1, 10000, NULL, NULL
1267         },
1268         {
1269                 {"from_collapse_limit", PGC_USERSET, QUERY_TUNING_OTHER,
1270                         gettext_noop("Sets the FROM-list size beyond which subqueries "
1271                                                  "are not collapsed."),
1272                         gettext_noop("The planner will merge subqueries into upper "
1273                                 "queries if the resulting FROM list would have no more than "
1274                                                  "this many items.")
1275                 },
1276                 &from_collapse_limit,
1277                 8, 1, INT_MAX, NULL, NULL
1278         },
1279         {
1280                 {"join_collapse_limit", PGC_USERSET, QUERY_TUNING_OTHER,
1281                         gettext_noop("Sets the FROM-list size beyond which JOIN "
1282                                                  "constructs are not flattened."),
1283                         gettext_noop("The planner will flatten explicit JOIN "
1284                                                  "constructs into lists of FROM items whenever a "
1285                                                  "list of no more than this many items would result.")
1286                 },
1287                 &join_collapse_limit,
1288                 8, 1, INT_MAX, NULL, NULL
1289         },
1290         {
1291                 {"geqo_threshold", PGC_USERSET, QUERY_TUNING_GEQO,
1292                         gettext_noop("Sets the threshold of FROM items beyond which GEQO is used."),
1293                         NULL
1294                 },
1295                 &geqo_threshold,
1296                 12, 2, INT_MAX, NULL, NULL
1297         },
1298         {
1299                 {"geqo_effort", PGC_USERSET, QUERY_TUNING_GEQO,
1300                         gettext_noop("GEQO: effort is used to set the default for other GEQO parameters."),
1301                         NULL
1302                 },
1303                 &Geqo_effort,
1304                 DEFAULT_GEQO_EFFORT, MIN_GEQO_EFFORT, MAX_GEQO_EFFORT, NULL, NULL
1305         },
1306         {
1307                 {"geqo_pool_size", PGC_USERSET, QUERY_TUNING_GEQO,
1308                         gettext_noop("GEQO: number of individuals in the population."),
1309                         gettext_noop("Zero selects a suitable default value.")
1310                 },
1311                 &Geqo_pool_size,
1312                 0, 0, INT_MAX, NULL, NULL
1313         },
1314         {
1315                 {"geqo_generations", PGC_USERSET, QUERY_TUNING_GEQO,
1316                         gettext_noop("GEQO: number of iterations of the algorithm."),
1317                         gettext_noop("Zero selects a suitable default value.")
1318                 },
1319                 &Geqo_generations,
1320                 0, 0, INT_MAX, NULL, NULL
1321         },
1322
1323         {
1324                 /* This is PGC_SIGHUP so all backends have the same value. */
1325                 {"deadlock_timeout", PGC_SIGHUP, LOCK_MANAGEMENT,
1326                         gettext_noop("Sets the time to wait on a lock before checking for deadlock."),
1327                         NULL,
1328                         GUC_UNIT_MS
1329                 },
1330                 &DeadlockTimeout,
1331                 1000, 1, INT_MAX / 1000, NULL, NULL
1332         },
1333
1334         /*
1335          * Note: MaxBackends is limited to INT_MAX/4 because some places compute
1336          * 4*MaxBackends without any overflow check.  This check is made in
1337          * assign_maxconnections, since MaxBackends is computed as MaxConnections
1338          * plus autovacuum_max_workers plus one (for the autovacuum launcher).
1339          *
1340          * Likewise we have to limit NBuffers to INT_MAX/2.
1341          */
1342         {
1343                 {"max_connections", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1344                         gettext_noop("Sets the maximum number of concurrent connections."),
1345                         NULL
1346                 },
1347                 &MaxConnections,
1348                 100, 1, INT_MAX / 4, assign_maxconnections, NULL
1349         },
1350
1351         {
1352                 {"superuser_reserved_connections", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1353                         gettext_noop("Sets the number of connection slots reserved for superusers."),
1354                         NULL
1355                 },
1356                 &ReservedBackends,
1357                 3, 0, INT_MAX / 4, NULL, NULL
1358         },
1359
1360         {
1361                 {"shared_buffers", PGC_POSTMASTER, RESOURCES_MEM,
1362                         gettext_noop("Sets the number of shared memory buffers used by the server."),
1363                         NULL,
1364                         GUC_UNIT_BLOCKS
1365                 },
1366                 &NBuffers,
1367                 1024, 16, INT_MAX / 2, NULL, NULL
1368         },
1369
1370         {
1371                 {"temp_buffers", PGC_USERSET, RESOURCES_MEM,
1372                         gettext_noop("Sets the maximum number of temporary buffers used by each session."),
1373                         NULL,
1374                         GUC_UNIT_BLOCKS
1375                 },
1376                 &num_temp_buffers,
1377                 1024, 100, INT_MAX / 2, NULL, show_num_temp_buffers
1378         },
1379
1380         {
1381                 {"port", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1382                         gettext_noop("Sets the TCP port the server listens on."),
1383                         NULL
1384                 },
1385                 &PostPortNumber,
1386                 DEF_PGPORT, 1, 65535, NULL, NULL
1387         },
1388
1389         {
1390                 {"unix_socket_permissions", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
1391                         gettext_noop("Sets the access permissions of the Unix-domain socket."),
1392                         gettext_noop("Unix-domain sockets use the usual Unix file system "
1393                                                  "permission set. The parameter value is expected to be a numeric mode "
1394                                                  "specification in the form accepted by the chmod and umask system "
1395                                                  "calls. (To use the customary octal format the number must start with "
1396                                                  "a 0 (zero).)")
1397                 },
1398                 &Unix_socket_permissions,
1399                 0777, 0000, 0777, NULL, NULL
1400         },
1401
1402         {
1403                 {"work_mem", PGC_USERSET, RESOURCES_MEM,
1404                         gettext_noop("Sets the maximum memory to be used for query workspaces."),
1405                         gettext_noop("This much memory can be used by each internal "
1406                                                  "sort operation and hash table before switching to "
1407                                                  "temporary disk files."),
1408                         GUC_UNIT_KB
1409                 },
1410                 &work_mem,
1411                 1024, 64, MAX_KILOBYTES, NULL, NULL
1412         },
1413
1414         {
1415                 {"maintenance_work_mem", PGC_USERSET, RESOURCES_MEM,
1416                         gettext_noop("Sets the maximum memory to be used for maintenance operations."),
1417                         gettext_noop("This includes operations such as VACUUM and CREATE INDEX."),
1418                         GUC_UNIT_KB
1419                 },
1420                 &maintenance_work_mem,
1421                 16384, 1024, MAX_KILOBYTES, NULL, NULL
1422         },
1423
1424         {
1425                 {"max_stack_depth", PGC_SUSET, RESOURCES_MEM,
1426                         gettext_noop("Sets the maximum stack depth, in kilobytes."),
1427                         NULL,
1428                         GUC_UNIT_KB
1429                 },
1430                 &max_stack_depth,
1431                 100, 100, MAX_KILOBYTES, assign_max_stack_depth, NULL
1432         },
1433
1434         {
1435                 {"vacuum_cost_page_hit", PGC_USERSET, RESOURCES,
1436                         gettext_noop("Vacuum cost for a page found in the buffer cache."),
1437                         NULL
1438                 },
1439                 &VacuumCostPageHit,
1440                 1, 0, 10000, NULL, NULL
1441         },
1442
1443         {
1444                 {"vacuum_cost_page_miss", PGC_USERSET, RESOURCES,
1445                         gettext_noop("Vacuum cost for a page not found in the buffer cache."),
1446                         NULL
1447                 },
1448                 &VacuumCostPageMiss,
1449                 10, 0, 10000, NULL, NULL
1450         },
1451
1452         {
1453                 {"vacuum_cost_page_dirty", PGC_USERSET, RESOURCES,
1454                         gettext_noop("Vacuum cost for a page dirtied by vacuum."),
1455                         NULL
1456                 },
1457                 &VacuumCostPageDirty,
1458                 20, 0, 10000, NULL, NULL
1459         },
1460
1461         {
1462                 {"vacuum_cost_limit", PGC_USERSET, RESOURCES,
1463                         gettext_noop("Vacuum cost amount available before napping."),
1464                         NULL
1465                 },
1466                 &VacuumCostLimit,
1467                 200, 1, 10000, NULL, NULL
1468         },
1469
1470         {
1471                 {"vacuum_cost_delay", PGC_USERSET, RESOURCES,
1472                         gettext_noop("Vacuum cost delay in milliseconds."),
1473                         NULL,
1474                         GUC_UNIT_MS
1475                 },
1476                 &VacuumCostDelay,
1477                 0, 0, 100, NULL, NULL
1478         },
1479
1480         {
1481                 {"autovacuum_vacuum_cost_delay", PGC_SIGHUP, AUTOVACUUM,
1482                         gettext_noop("Vacuum cost delay in milliseconds, for autovacuum."),
1483                         NULL,
1484                         GUC_UNIT_MS
1485                 },
1486                 &autovacuum_vac_cost_delay,
1487                 20, -1, 100, NULL, NULL
1488         },
1489
1490         {
1491                 {"autovacuum_vacuum_cost_limit", PGC_SIGHUP, AUTOVACUUM,
1492                         gettext_noop("Vacuum cost amount available before napping, for autovacuum."),
1493                         NULL
1494                 },
1495                 &autovacuum_vac_cost_limit,
1496                 -1, -1, 10000, NULL, NULL
1497         },
1498
1499         {
1500                 {"max_files_per_process", PGC_POSTMASTER, RESOURCES_KERNEL,
1501                         gettext_noop("Sets the maximum number of simultaneously open files for each server process."),
1502                         NULL
1503                 },
1504                 &max_files_per_process,
1505                 1000, 25, INT_MAX, NULL, NULL
1506         },
1507
1508         {
1509                 {"max_prepared_transactions", PGC_POSTMASTER, RESOURCES,
1510                         gettext_noop("Sets the maximum number of simultaneously prepared transactions."),
1511                         NULL
1512                 },
1513                 &max_prepared_xacts,
1514                 0, 0, INT_MAX / 4, NULL, NULL
1515         },
1516
1517 #ifdef LOCK_DEBUG
1518         {
1519                 {"trace_lock_oidmin", PGC_SUSET, DEVELOPER_OPTIONS,
1520                         gettext_noop("No description available."),
1521                         NULL,
1522                         GUC_NOT_IN_SAMPLE
1523                 },
1524                 &Trace_lock_oidmin,
1525                 FirstNormalObjectId, 0, INT_MAX, NULL, NULL
1526         },
1527         {
1528                 {"trace_lock_table", PGC_SUSET, DEVELOPER_OPTIONS,
1529                         gettext_noop("No description available."),
1530                         NULL,
1531                         GUC_NOT_IN_SAMPLE
1532                 },
1533                 &Trace_lock_table,
1534                 0, 0, INT_MAX, NULL, NULL
1535         },
1536 #endif
1537
1538         {
1539                 {"statement_timeout", PGC_USERSET, CLIENT_CONN_STATEMENT,
1540                         gettext_noop("Sets the maximum allowed duration of any statement."),
1541                         gettext_noop("A value of 0 turns off the timeout."),
1542                         GUC_UNIT_MS
1543                 },
1544                 &StatementTimeout,
1545                 0, 0, INT_MAX, NULL, NULL
1546         },
1547
1548         {
1549                 {"vacuum_freeze_min_age", PGC_USERSET, CLIENT_CONN_STATEMENT,
1550                         gettext_noop("Minimum age at which VACUUM should freeze a table row."),
1551                         NULL
1552                 },
1553                 &vacuum_freeze_min_age,
1554                 50000000, 0, 1000000000, NULL, NULL
1555         },
1556
1557         {
1558                 {"vacuum_freeze_table_age", PGC_USERSET, CLIENT_CONN_STATEMENT,
1559                         gettext_noop("Age at which VACUUM should scan whole table to freeze tuples."),
1560                         NULL
1561                 },
1562                 &vacuum_freeze_table_age,
1563                 150000000, 0, 2000000000, NULL, NULL
1564         },
1565
1566         {
1567                 {"max_locks_per_transaction", PGC_POSTMASTER, LOCK_MANAGEMENT,
1568                         gettext_noop("Sets the maximum number of locks per transaction."),
1569                         gettext_noop("The shared lock table is sized on the assumption that "
1570                           "at most max_locks_per_transaction * max_connections distinct "
1571                                                  "objects will need to be locked at any one time.")
1572                 },
1573                 &max_locks_per_xact,
1574                 64, 10, INT_MAX, NULL, NULL
1575         },
1576
1577         {
1578                 {"authentication_timeout", PGC_SIGHUP, CONN_AUTH_SECURITY,
1579                         gettext_noop("Sets the maximum allowed time to complete client authentication."),
1580                         NULL,
1581                         GUC_UNIT_S
1582                 },
1583                 &AuthenticationTimeout,
1584                 60, 1, 600, NULL, NULL
1585         },
1586
1587         {
1588                 /* Not for general use */
1589                 {"pre_auth_delay", PGC_SIGHUP, DEVELOPER_OPTIONS,
1590                         gettext_noop("Waits N seconds on connection startup before authentication."),
1591                         gettext_noop("This allows attaching a debugger to the process."),
1592                         GUC_NOT_IN_SAMPLE | GUC_UNIT_S
1593                 },
1594                 &PreAuthDelay,
1595                 0, 0, 60, NULL, NULL
1596         },
1597
1598         {
1599                 {"checkpoint_segments", PGC_SIGHUP, WAL_CHECKPOINTS,
1600                         gettext_noop("Sets the maximum distance in log segments between automatic WAL checkpoints."),
1601                         NULL
1602                 },
1603                 &CheckPointSegments,
1604                 3, 1, INT_MAX, NULL, NULL
1605         },
1606
1607         {
1608                 {"checkpoint_timeout", PGC_SIGHUP, WAL_CHECKPOINTS,
1609                         gettext_noop("Sets the maximum time between automatic WAL checkpoints."),
1610                         NULL,
1611                         GUC_UNIT_S
1612                 },
1613                 &CheckPointTimeout,
1614                 300, 30, 3600, NULL, NULL
1615         },
1616
1617         {
1618                 {"checkpoint_warning", PGC_SIGHUP, WAL_CHECKPOINTS,
1619                         gettext_noop("Enables warnings if checkpoint segments are filled more "
1620                                                  "frequently than this."),
1621                         gettext_noop("Write a message to the server log if checkpoints "
1622                         "caused by the filling of checkpoint segment files happens more "
1623                                                  "frequently than this number of seconds. Zero turns off the warning."),
1624                         GUC_UNIT_S
1625                 },
1626                 &CheckPointWarning,
1627                 30, 0, INT_MAX, NULL, NULL
1628         },
1629
1630         {
1631                 {"wal_buffers", PGC_POSTMASTER, WAL_SETTINGS,
1632                         gettext_noop("Sets the number of disk-page buffers in shared memory for WAL."),
1633                         NULL,
1634                         GUC_UNIT_XBLOCKS
1635                 },
1636                 &XLOGbuffers,
1637                 8, 4, INT_MAX, NULL, NULL
1638         },
1639
1640         {
1641                 {"wal_writer_delay", PGC_SIGHUP, WAL_SETTINGS,
1642                         gettext_noop("WAL writer sleep time between WAL flushes."),
1643                         NULL,
1644                         GUC_UNIT_MS
1645                 },
1646                 &WalWriterDelay,
1647                 200, 1, 10000, NULL, NULL
1648         },
1649
1650         {
1651                 {"commit_delay", PGC_USERSET, WAL_SETTINGS,
1652                         gettext_noop("Sets the delay in microseconds between transaction commit and "
1653                                                  "flushing WAL to disk."),
1654                         NULL
1655                 },
1656                 &CommitDelay,
1657                 0, 0, 100000, NULL, NULL
1658         },
1659
1660         {
1661                 {"commit_siblings", PGC_USERSET, WAL_SETTINGS,
1662                         gettext_noop("Sets the minimum concurrent open transactions before performing "
1663                                                  "commit_delay."),
1664                         NULL
1665                 },
1666                 &CommitSiblings,
1667                 5, 1, 1000, NULL, NULL
1668         },
1669
1670         {
1671                 {"extra_float_digits", PGC_USERSET, CLIENT_CONN_LOCALE,
1672                         gettext_noop("Sets the number of digits displayed for floating-point values."),
1673                         gettext_noop("This affects real, double precision, and geometric data types. "
1674                          "The parameter value is added to the standard number of digits "
1675                                                  "(FLT_DIG or DBL_DIG as appropriate).")
1676                 },
1677                 &extra_float_digits,
1678                 0, -15, 2, NULL, NULL
1679         },
1680
1681         {
1682                 {"log_min_duration_statement", PGC_SUSET, LOGGING_WHEN,
1683                         gettext_noop("Sets the minimum execution time above which "
1684                                                  "statements will be logged."),
1685                         gettext_noop("Zero prints all queries. -1 turns this feature off."),
1686                         GUC_UNIT_MS
1687                 },
1688                 &log_min_duration_statement,
1689                 -1, -1, INT_MAX / 1000, NULL, NULL
1690         },
1691
1692         {
1693                 {"log_autovacuum_min_duration", PGC_SIGHUP, LOGGING_WHAT,
1694                         gettext_noop("Sets the minimum execution time above which "
1695                                                  "autovacuum actions will be logged."),
1696                         gettext_noop("Zero prints all actions. -1 turns autovacuum logging off."),
1697                         GUC_UNIT_MS
1698                 },
1699                 &Log_autovacuum_min_duration,
1700                 -1, -1, INT_MAX / 1000, NULL, NULL
1701         },
1702
1703         {
1704                 {"bgwriter_delay", PGC_SIGHUP, RESOURCES,
1705                         gettext_noop("Background writer sleep time between rounds."),
1706                         NULL,
1707                         GUC_UNIT_MS
1708                 },
1709                 &BgWriterDelay,
1710                 200, 10, 10000, NULL, NULL
1711         },
1712
1713         {
1714                 {"bgwriter_lru_maxpages", PGC_SIGHUP, RESOURCES,
1715                         gettext_noop("Background writer maximum number of LRU pages to flush per round."),
1716                         NULL
1717                 },
1718                 &bgwriter_lru_maxpages,
1719                 100, 0, 1000, NULL, NULL
1720         },
1721
1722         {
1723                 {"effective_io_concurrency",
1724 #ifdef USE_PREFETCH
1725                         PGC_USERSET,
1726 #else
1727                         PGC_INTERNAL,
1728 #endif
1729                         RESOURCES,
1730                         gettext_noop("Number of simultaneous requests that can be handled efficiently by the disk subsystem."),
1731                         gettext_noop("For RAID arrays, this should be approximately the number of drive spindles in the array.")
1732                 },
1733                 &effective_io_concurrency,
1734 #ifdef USE_PREFETCH
1735                 1, 0, 1000,
1736 #else
1737                 0, 0, 0,
1738 #endif
1739                 assign_effective_io_concurrency, NULL
1740         },
1741
1742         {
1743                 {"log_rotation_age", PGC_SIGHUP, LOGGING_WHERE,
1744                         gettext_noop("Automatic log file rotation will occur after N minutes."),
1745                         NULL,
1746                         GUC_UNIT_MIN
1747                 },
1748                 &Log_RotationAge,
1749                 HOURS_PER_DAY * MINS_PER_HOUR, 0, INT_MAX / MINS_PER_HOUR, NULL, NULL
1750         },
1751
1752         {
1753                 {"log_rotation_size", PGC_SIGHUP, LOGGING_WHERE,
1754                         gettext_noop("Automatic log file rotation will occur after N kilobytes."),
1755                         NULL,
1756                         GUC_UNIT_KB
1757                 },
1758                 &Log_RotationSize,
1759                 10 * 1024, 0, INT_MAX / 1024, NULL, NULL
1760         },
1761
1762         {
1763                 {"max_function_args", PGC_INTERNAL, PRESET_OPTIONS,
1764                         gettext_noop("Shows the maximum number of function arguments."),
1765                         NULL,
1766                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1767                 },
1768                 &max_function_args,
1769                 FUNC_MAX_ARGS, FUNC_MAX_ARGS, FUNC_MAX_ARGS, NULL, NULL
1770         },
1771
1772         {
1773                 {"max_index_keys", PGC_INTERNAL, PRESET_OPTIONS,
1774                         gettext_noop("Shows the maximum number of index keys."),
1775                         NULL,
1776                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1777                 },
1778                 &max_index_keys,
1779                 INDEX_MAX_KEYS, INDEX_MAX_KEYS, INDEX_MAX_KEYS, NULL, NULL
1780         },
1781
1782         {
1783                 {"max_identifier_length", PGC_INTERNAL, PRESET_OPTIONS,
1784                         gettext_noop("Shows the maximum identifier length."),
1785                         NULL,
1786                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1787                 },
1788                 &max_identifier_length,
1789                 NAMEDATALEN - 1, NAMEDATALEN - 1, NAMEDATALEN - 1, NULL, NULL
1790         },
1791
1792         {
1793                 {"block_size", PGC_INTERNAL, PRESET_OPTIONS,
1794                         gettext_noop("Shows the size of a disk block."),
1795                         NULL,
1796                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1797                 },
1798                 &block_size,
1799                 BLCKSZ, BLCKSZ, BLCKSZ, NULL, NULL
1800         },
1801
1802         {
1803                 {"segment_size", PGC_INTERNAL, PRESET_OPTIONS,
1804                         gettext_noop("Shows the number of pages per disk file."),
1805                         NULL,
1806                         GUC_UNIT_BLOCKS | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1807                 },
1808                 &segment_size,
1809                 RELSEG_SIZE, RELSEG_SIZE, RELSEG_SIZE, NULL, NULL
1810         },
1811
1812         {
1813                 {"wal_block_size", PGC_INTERNAL, PRESET_OPTIONS,
1814                         gettext_noop("Shows the block size in the write ahead log."),
1815                         NULL,
1816                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1817                 },
1818                 &wal_block_size,
1819                 XLOG_BLCKSZ, XLOG_BLCKSZ, XLOG_BLCKSZ, NULL, NULL
1820         },
1821
1822         {
1823                 {"wal_segment_size", PGC_INTERNAL, PRESET_OPTIONS,
1824                         gettext_noop("Shows the number of pages per write ahead log segment."),
1825                         NULL,
1826                         GUC_UNIT_XBLOCKS | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1827                 },
1828                 &wal_segment_size,
1829                 (XLOG_SEG_SIZE / XLOG_BLCKSZ),
1830                 (XLOG_SEG_SIZE / XLOG_BLCKSZ),
1831                 (XLOG_SEG_SIZE / XLOG_BLCKSZ),
1832                 NULL, NULL
1833         },
1834
1835         {
1836                 {"autovacuum_naptime", PGC_SIGHUP, AUTOVACUUM,
1837                         gettext_noop("Time to sleep between autovacuum runs."),
1838                         NULL,
1839                         GUC_UNIT_S
1840                 },
1841                 &autovacuum_naptime,
1842                 60, 1, INT_MAX / 1000, NULL, NULL
1843         },
1844         {
1845                 {"autovacuum_vacuum_threshold", PGC_SIGHUP, AUTOVACUUM,
1846                         gettext_noop("Minimum number of tuple updates or deletes prior to vacuum."),
1847                         NULL
1848                 },
1849                 &autovacuum_vac_thresh,
1850                 50, 0, INT_MAX, NULL, NULL
1851         },
1852         {
1853                 {"autovacuum_analyze_threshold", PGC_SIGHUP, AUTOVACUUM,
1854                         gettext_noop("Minimum number of tuple inserts, updates or deletes prior to analyze."),
1855                         NULL
1856                 },
1857                 &autovacuum_anl_thresh,
1858                 50, 0, INT_MAX, NULL, NULL
1859         },
1860         {
1861                 /* see varsup.c for why this is PGC_POSTMASTER not PGC_SIGHUP */
1862                 {"autovacuum_freeze_max_age", PGC_POSTMASTER, AUTOVACUUM,
1863                         gettext_noop("Age at which to autovacuum a table to prevent transaction ID wraparound."),
1864                         NULL
1865                 },
1866                 &autovacuum_freeze_max_age,
1867                 /* see pg_resetxlog if you change the upper-limit value */
1868                 200000000, 100000000, 2000000000, NULL, NULL
1869         },
1870         {
1871                 /* see max_connections */
1872                 {"autovacuum_max_workers", PGC_POSTMASTER, AUTOVACUUM,
1873                         gettext_noop("Sets the maximum number of simultaneously running autovacuum worker processes."),
1874                         NULL
1875                 },
1876                 &autovacuum_max_workers,
1877                 3, 1, INT_MAX / 4, assign_autovacuum_max_workers, NULL
1878         },
1879
1880         {
1881                 {"tcp_keepalives_idle", PGC_USERSET, CLIENT_CONN_OTHER,
1882                         gettext_noop("Time between issuing TCP keepalives."),
1883                         gettext_noop("A value of 0 uses the system default."),
1884                         GUC_UNIT_S
1885                 },
1886                 &tcp_keepalives_idle,
1887                 0, 0, INT_MAX, assign_tcp_keepalives_idle, show_tcp_keepalives_idle
1888         },
1889
1890         {
1891                 {"tcp_keepalives_interval", PGC_USERSET, CLIENT_CONN_OTHER,
1892                         gettext_noop("Time between TCP keepalive retransmits."),
1893                         gettext_noop("A value of 0 uses the system default."),
1894                         GUC_UNIT_S
1895                 },
1896                 &tcp_keepalives_interval,
1897                 0, 0, INT_MAX, assign_tcp_keepalives_interval, show_tcp_keepalives_interval
1898         },
1899
1900         {
1901                 {"tcp_keepalives_count", PGC_USERSET, CLIENT_CONN_OTHER,
1902                         gettext_noop("Maximum number of TCP keepalive retransmits."),
1903                         gettext_noop("This controls the number of consecutive keepalive retransmits that can be "
1904                                                  "lost before a connection is considered dead. A value of 0 uses the "
1905                                                  "system default."),
1906                 },
1907                 &tcp_keepalives_count,
1908                 0, 0, INT_MAX, assign_tcp_keepalives_count, show_tcp_keepalives_count
1909         },
1910
1911         {
1912                 {"gin_fuzzy_search_limit", PGC_USERSET, CLIENT_CONN_OTHER,
1913                         gettext_noop("Sets the maximum allowed result for exact search by GIN."),
1914                         NULL,
1915                         0
1916                 },
1917                 &GinFuzzySearchLimit,
1918                 0, 0, INT_MAX, NULL, NULL
1919         },
1920
1921         {
1922                 {"effective_cache_size", PGC_USERSET, QUERY_TUNING_COST,
1923                         gettext_noop("Sets the planner's assumption about the size of the disk cache."),
1924                         gettext_noop("That is, the portion of the kernel's disk cache that "
1925                                                  "will be used for PostgreSQL data files. This is measured in disk "
1926                                                  "pages, which are normally 8 kB each."),
1927                         GUC_UNIT_BLOCKS,
1928                 },
1929                 &effective_cache_size,
1930                 DEFAULT_EFFECTIVE_CACHE_SIZE, 1, INT_MAX, NULL, NULL
1931         },
1932
1933         {
1934                 /* Can't be set in postgresql.conf */
1935                 {"server_version_num", PGC_INTERNAL, PRESET_OPTIONS,
1936                         gettext_noop("Shows the server version as an integer."),
1937                         NULL,
1938                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
1939                 },
1940                 &server_version_num,
1941                 PG_VERSION_NUM, PG_VERSION_NUM, PG_VERSION_NUM, NULL, NULL
1942         },
1943
1944         {
1945                 {"log_temp_files", PGC_SUSET, LOGGING_WHAT,
1946                         gettext_noop("Log the use of temporary files larger than this number of kilobytes."),
1947                         gettext_noop("Zero logs all files. The default is -1 (turning this feature off)."),
1948                         GUC_UNIT_KB
1949                 },
1950                 &log_temp_files,
1951                 -1, -1, INT_MAX, NULL, NULL
1952         },
1953
1954         {
1955                 {"track_activity_query_size", PGC_POSTMASTER, RESOURCES_MEM,
1956                         gettext_noop("Sets the size reserved for pg_stat_activity.current_query, in bytes."),
1957                         NULL,
1958                 },
1959                 &pgstat_track_activity_query_size,
1960                 1024, 100, 102400, NULL, NULL
1961         },
1962
1963         /* End-of-list marker */
1964         {
1965                 {NULL, 0, 0, NULL, NULL}, NULL, 0, 0, 0, NULL, NULL
1966         }
1967 };
1968
1969
1970 static struct config_real ConfigureNamesReal[] =
1971 {
1972         {
1973                 {"seq_page_cost", PGC_USERSET, QUERY_TUNING_COST,
1974                         gettext_noop("Sets the planner's estimate of the cost of a "
1975                                                  "sequentially fetched disk page."),
1976                         NULL
1977                 },
1978                 &seq_page_cost,
1979                 DEFAULT_SEQ_PAGE_COST, 0, DBL_MAX, NULL, NULL
1980         },
1981         {
1982                 {"random_page_cost", PGC_USERSET, QUERY_TUNING_COST,
1983                         gettext_noop("Sets the planner's estimate of the cost of a "
1984                                                  "nonsequentially fetched disk page."),
1985                         NULL
1986                 },
1987                 &random_page_cost,
1988                 DEFAULT_RANDOM_PAGE_COST, 0, DBL_MAX, NULL, NULL
1989         },
1990         {
1991                 {"cpu_tuple_cost", PGC_USERSET, QUERY_TUNING_COST,
1992                         gettext_noop("Sets the planner's estimate of the cost of "
1993                                                  "processing each tuple (row)."),
1994                         NULL
1995                 },
1996                 &cpu_tuple_cost,
1997                 DEFAULT_CPU_TUPLE_COST, 0, DBL_MAX, NULL, NULL
1998         },
1999         {
2000                 {"cpu_index_tuple_cost", PGC_USERSET, QUERY_TUNING_COST,
2001                         gettext_noop("Sets the planner's estimate of the cost of "
2002                                                  "processing each index entry during an index scan."),
2003                         NULL
2004                 },
2005                 &cpu_index_tuple_cost,
2006                 DEFAULT_CPU_INDEX_TUPLE_COST, 0, DBL_MAX, NULL, NULL
2007         },
2008         {
2009                 {"cpu_operator_cost", PGC_USERSET, QUERY_TUNING_COST,
2010                         gettext_noop("Sets the planner's estimate of the cost of "
2011                                                  "processing each operator or function call."),
2012                         NULL
2013                 },
2014                 &cpu_operator_cost,
2015                 DEFAULT_CPU_OPERATOR_COST, 0, DBL_MAX, NULL, NULL
2016         },
2017
2018         {
2019                 {"cursor_tuple_fraction", PGC_USERSET, QUERY_TUNING_OTHER,
2020                         gettext_noop("Sets the planner's estimate of the fraction of "
2021                                                  "a cursor's rows that will be retrieved."),
2022                         NULL
2023                 },
2024                 &cursor_tuple_fraction,
2025                 DEFAULT_CURSOR_TUPLE_FRACTION, 0.0, 1.0, NULL, NULL
2026         },
2027
2028         {
2029                 {"geqo_selection_bias", PGC_USERSET, QUERY_TUNING_GEQO,
2030                         gettext_noop("GEQO: selective pressure within the population."),
2031                         NULL
2032                 },
2033                 &Geqo_selection_bias,
2034                 DEFAULT_GEQO_SELECTION_BIAS, MIN_GEQO_SELECTION_BIAS,
2035                 MAX_GEQO_SELECTION_BIAS, NULL, NULL
2036         },
2037         {
2038                 {"geqo_seed", PGC_USERSET, QUERY_TUNING_GEQO,
2039                         gettext_noop("GEQO: seed for random path selection."),
2040                         NULL
2041                 },
2042                 &Geqo_seed,
2043                 0.0, 0.0, 1.0, NULL, NULL
2044         },
2045
2046         {
2047                 {"bgwriter_lru_multiplier", PGC_SIGHUP, RESOURCES,
2048                         gettext_noop("Multiple of the average buffer usage to free per round."),
2049                         NULL
2050                 },
2051                 &bgwriter_lru_multiplier,
2052                 2.0, 0.0, 10.0, NULL, NULL
2053         },
2054
2055         {
2056                 {"seed", PGC_USERSET, UNGROUPED,
2057                         gettext_noop("Sets the seed for random-number generation."),
2058                         NULL,
2059                         GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2060                 },
2061                 &phony_random_seed,
2062                 0.0, -1.0, 1.0, assign_random_seed, show_random_seed
2063         },
2064
2065         {
2066                 {"autovacuum_vacuum_scale_factor", PGC_SIGHUP, AUTOVACUUM,
2067                         gettext_noop("Number of tuple updates or deletes prior to vacuum as a fraction of reltuples."),
2068                         NULL
2069                 },
2070                 &autovacuum_vac_scale,
2071                 0.2, 0.0, 100.0, NULL, NULL
2072         },
2073         {
2074                 {"autovacuum_analyze_scale_factor", PGC_SIGHUP, AUTOVACUUM,
2075                         gettext_noop("Number of tuple inserts, updates or deletes prior to analyze as a fraction of reltuples."),
2076                         NULL
2077                 },
2078                 &autovacuum_anl_scale,
2079                 0.1, 0.0, 100.0, NULL, NULL
2080         },
2081
2082         {
2083                 {"checkpoint_completion_target", PGC_SIGHUP, WAL_CHECKPOINTS,
2084                         gettext_noop("Time spent flushing dirty buffers during checkpoint, as fraction of checkpoint interval."),
2085                         NULL
2086                 },
2087                 &CheckPointCompletionTarget,
2088                 0.5, 0.0, 1.0, NULL, NULL
2089         },
2090
2091         /* End-of-list marker */
2092         {
2093                 {NULL, 0, 0, NULL, NULL}, NULL, 0.0, 0.0, 0.0, NULL, NULL
2094         }
2095 };
2096
2097
2098 static struct config_string ConfigureNamesString[] =
2099 {
2100         {
2101                 {"archive_command", PGC_SIGHUP, WAL_SETTINGS,
2102                         gettext_noop("Sets the shell command that will be called to archive a WAL file."),
2103                         NULL
2104                 },
2105                 &XLogArchiveCommand,
2106                 "", NULL, show_archive_command
2107         },
2108
2109         {
2110                 {"client_encoding", PGC_USERSET, CLIENT_CONN_LOCALE,
2111                         gettext_noop("Sets the client's character set encoding."),
2112                         NULL,
2113                         GUC_IS_NAME | GUC_REPORT
2114                 },
2115                 &client_encoding_string,
2116                 "SQL_ASCII", assign_client_encoding, NULL
2117         },
2118
2119         {
2120                 {"log_line_prefix", PGC_SIGHUP, LOGGING_WHAT,
2121                         gettext_noop("Controls information prefixed to each log line."),
2122                         gettext_noop("If blank, no prefix is used.")
2123                 },
2124                 &Log_line_prefix,
2125                 "", NULL, NULL
2126         },
2127
2128         {
2129                 {"log_timezone", PGC_SIGHUP, LOGGING_WHAT,
2130                         gettext_noop("Sets the time zone to use in log messages."),
2131                         NULL
2132                 },
2133                 &log_timezone_string,
2134                 "UNKNOWN", assign_log_timezone, show_log_timezone
2135         },
2136
2137         {
2138                 {"DateStyle", PGC_USERSET, CLIENT_CONN_LOCALE,
2139                         gettext_noop("Sets the display format for date and time values."),
2140                         gettext_noop("Also controls interpretation of ambiguous "
2141                                                  "date inputs."),
2142                         GUC_LIST_INPUT | GUC_REPORT
2143                 },
2144                 &datestyle_string,
2145                 "ISO, MDY", assign_datestyle, NULL
2146         },
2147
2148         {
2149                 {"default_tablespace", PGC_USERSET, CLIENT_CONN_STATEMENT,
2150                         gettext_noop("Sets the default tablespace to create tables and indexes in."),
2151                         gettext_noop("An empty string selects the database's default tablespace."),
2152                         GUC_IS_NAME
2153                 },
2154                 &default_tablespace,
2155                 "", assign_default_tablespace, NULL
2156         },
2157
2158         {
2159                 {"temp_tablespaces", PGC_USERSET, CLIENT_CONN_STATEMENT,
2160                         gettext_noop("Sets the tablespace(s) to use for temporary tables and sort files."),
2161                         NULL,
2162                         GUC_LIST_INPUT | GUC_LIST_QUOTE
2163                 },
2164                 &temp_tablespaces,
2165                 "", assign_temp_tablespaces, NULL
2166         },
2167
2168         {
2169                 {"dynamic_library_path", PGC_SUSET, CLIENT_CONN_OTHER,
2170                         gettext_noop("Sets the path for dynamically loadable modules."),
2171                         gettext_noop("If a dynamically loadable module needs to be opened and "
2172                                                  "the specified name does not have a directory component (i.e., the "
2173                                                  "name does not contain a slash), the system will search this path for "
2174                                                  "the specified file."),
2175                         GUC_SUPERUSER_ONLY
2176                 },
2177                 &Dynamic_library_path,
2178                 "$libdir", NULL, NULL
2179         },
2180
2181         {
2182                 {"krb_server_keyfile", PGC_SIGHUP, CONN_AUTH_SECURITY,
2183                         gettext_noop("Sets the location of the Kerberos server key file."),
2184                         NULL,
2185                         GUC_SUPERUSER_ONLY
2186                 },
2187                 &pg_krb_server_keyfile,
2188                 PG_KRB_SRVTAB, NULL, NULL
2189         },
2190
2191         {
2192                 {"krb_srvname", PGC_SIGHUP, CONN_AUTH_SECURITY,
2193                         gettext_noop("Sets the name of the Kerberos service."),
2194                         NULL
2195                 },
2196                 &pg_krb_srvnam,
2197                 PG_KRB_SRVNAM, NULL, NULL
2198         },
2199
2200         {
2201                 {"bonjour_name", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
2202                         gettext_noop("Sets the Bonjour broadcast service name."),
2203                         NULL
2204                 },
2205                 &bonjour_name,
2206                 "", NULL, NULL
2207         },
2208
2209         /* See main.c about why defaults for LC_foo are not all alike */
2210
2211         {
2212                 {"lc_collate", PGC_INTERNAL, CLIENT_CONN_LOCALE,
2213                         gettext_noop("Shows the collation order locale."),
2214                         NULL,
2215                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2216                 },
2217                 &locale_collate,
2218                 "C", NULL, NULL
2219         },
2220
2221         {
2222                 {"lc_ctype", PGC_INTERNAL, CLIENT_CONN_LOCALE,
2223                         gettext_noop("Shows the character classification and case conversion locale."),
2224                         NULL,
2225                         GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2226                 },
2227                 &locale_ctype,
2228                 "C", NULL, NULL
2229         },
2230
2231         {
2232                 {"lc_messages", PGC_SUSET, CLIENT_CONN_LOCALE,
2233                         gettext_noop("Sets the language in which messages are displayed."),
2234                         NULL
2235                 },
2236                 &locale_messages,
2237                 "", locale_messages_assign, NULL
2238         },
2239
2240         {
2241                 {"lc_monetary", PGC_USERSET, CLIENT_CONN_LOCALE,
2242                         gettext_noop("Sets the locale for formatting monetary amounts."),
2243                         NULL
2244                 },
2245                 &locale_monetary,
2246                 "C", locale_monetary_assign, NULL
2247         },
2248
2249         {
2250                 {"lc_numeric", PGC_USERSET, CLIENT_CONN_LOCALE,
2251                         gettext_noop("Sets the locale for formatting numbers."),
2252                         NULL
2253                 },
2254                 &locale_numeric,
2255                 "C", locale_numeric_assign, NULL
2256         },
2257
2258         {
2259                 {"lc_time", PGC_USERSET, CLIENT_CONN_LOCALE,
2260                         gettext_noop("Sets the locale for formatting date and time values."),
2261                         NULL
2262                 },
2263                 &locale_time,
2264                 "C", locale_time_assign, NULL
2265         },
2266
2267         {
2268                 {"shared_preload_libraries", PGC_POSTMASTER, RESOURCES_KERNEL,
2269                         gettext_noop("Lists shared libraries to preload into server."),
2270                         NULL,
2271                         GUC_LIST_INPUT | GUC_LIST_QUOTE | GUC_SUPERUSER_ONLY
2272                 },
2273                 &shared_preload_libraries_string,
2274                 "", NULL, NULL
2275         },
2276
2277         {
2278                 {"local_preload_libraries", PGC_BACKEND, CLIENT_CONN_OTHER,
2279                         gettext_noop("Lists shared libraries to preload into each backend."),
2280                         NULL,
2281                         GUC_LIST_INPUT | GUC_LIST_QUOTE
2282                 },
2283                 &local_preload_libraries_string,
2284                 "", NULL, NULL
2285         },
2286
2287         {
2288                 {"search_path", PGC_USERSET, CLIENT_CONN_STATEMENT,
2289                         gettext_noop("Sets the schema search order for names that are not schema-qualified."),
2290                         NULL,
2291                         GUC_LIST_INPUT | GUC_LIST_QUOTE
2292                 },
2293                 &namespace_search_path,
2294                 "\"$user\",public", assign_search_path, NULL
2295         },
2296
2297         {
2298                 /* Can't be set in postgresql.conf */
2299                 {"server_encoding", PGC_INTERNAL, CLIENT_CONN_LOCALE,
2300                         gettext_noop("Sets the server (database) character set encoding."),
2301                         NULL,
2302                         GUC_IS_NAME | GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2303                 },
2304                 &server_encoding_string,
2305                 "SQL_ASCII", NULL, NULL
2306         },
2307
2308         {
2309                 /* Can't be set in postgresql.conf */
2310                 {"server_version", PGC_INTERNAL, PRESET_OPTIONS,
2311                         gettext_noop("Shows the server version."),
2312                         NULL,
2313                         GUC_REPORT | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2314                 },
2315                 &server_version_string,
2316                 PG_VERSION, NULL, NULL
2317         },
2318
2319         {
2320                 /* Not for general use --- used by SET ROLE */
2321                 {"role", PGC_USERSET, UNGROUPED,
2322                         gettext_noop("Sets the current role."),
2323                         NULL,
2324                         GUC_IS_NAME | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE | GUC_NOT_WHILE_SEC_DEF
2325                 },
2326                 &role_string,
2327                 "none", assign_role, show_role
2328         },
2329
2330         {
2331                 /* Not for general use --- used by SET SESSION AUTHORIZATION */
2332                 {"session_authorization", PGC_USERSET, UNGROUPED,
2333                         gettext_noop("Sets the session user name."),
2334                         NULL,
2335                         GUC_IS_NAME | GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE | GUC_NOT_WHILE_SEC_DEF
2336                 },
2337                 &session_authorization_string,
2338                 NULL, assign_session_authorization, show_session_authorization
2339         },
2340
2341         {
2342                 {"log_destination", PGC_SIGHUP, LOGGING_WHERE,
2343                         gettext_noop("Sets the destination for server log output."),
2344                         gettext_noop("Valid values are combinations of \"stderr\", "
2345                                                  "\"syslog\", \"csvlog\", and \"eventlog\", "
2346                                                  "depending on the platform."),
2347                         GUC_LIST_INPUT
2348                 },
2349                 &log_destination_string,
2350                 "stderr", assign_log_destination, NULL
2351         },
2352         {
2353                 {"log_directory", PGC_SIGHUP, LOGGING_WHERE,
2354                         gettext_noop("Sets the destination directory for log files."),
2355                         gettext_noop("Can be specified as relative to the data directory "
2356                                                  "or as absolute path."),
2357                         GUC_SUPERUSER_ONLY
2358                 },
2359                 &Log_directory,
2360                 "pg_log", assign_canonical_path, NULL
2361         },
2362         {
2363                 {"log_filename", PGC_SIGHUP, LOGGING_WHERE,
2364                         gettext_noop("Sets the file name pattern for log files."),
2365                         NULL,
2366                         GUC_SUPERUSER_ONLY
2367                 },
2368                 &Log_filename,
2369                 "postgresql-%Y-%m-%d_%H%M%S.log", NULL, NULL
2370         },
2371
2372 #ifdef HAVE_SYSLOG
2373         {
2374                 {"syslog_ident", PGC_SIGHUP, LOGGING_WHERE,
2375                         gettext_noop("Sets the program name used to identify PostgreSQL "
2376                                                  "messages in syslog."),
2377                         NULL
2378                 },
2379                 &syslog_ident_str,
2380                 "postgres", assign_syslog_ident, NULL
2381         },
2382 #endif
2383
2384         {
2385                 {"TimeZone", PGC_USERSET, CLIENT_CONN_LOCALE,
2386                         gettext_noop("Sets the time zone for displaying and interpreting time stamps."),
2387                         NULL,
2388                         GUC_REPORT
2389                 },
2390                 &timezone_string,
2391                 "UNKNOWN", assign_timezone, show_timezone
2392         },
2393         {
2394                 {"timezone_abbreviations", PGC_USERSET, CLIENT_CONN_LOCALE,
2395                         gettext_noop("Selects a file of time zone abbreviations."),
2396                         NULL
2397                 },
2398                 &timezone_abbreviations_string,
2399                 "UNKNOWN", assign_timezone_abbreviations, NULL
2400         },
2401
2402         {
2403                 {"transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
2404                         gettext_noop("Sets the current transaction's isolation level."),
2405                         NULL,
2406                         GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
2407                 },
2408                 &XactIsoLevel_string,
2409                 NULL, assign_XactIsoLevel, show_XactIsoLevel
2410         },
2411
2412         {
2413                 {"unix_socket_group", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
2414                         gettext_noop("Sets the owning group of the Unix-domain socket."),
2415                         gettext_noop("The owning user of the socket is always the user "
2416                                                  "that starts the server.")
2417                 },
2418                 &Unix_socket_group,
2419                 "", NULL, NULL
2420         },
2421
2422         {
2423                 {"unix_socket_directory", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
2424                         gettext_noop("Sets the directory where the Unix-domain socket will be created."),
2425                         NULL,
2426                         GUC_SUPERUSER_ONLY
2427                 },
2428                 &UnixSocketDir,
2429                 "", assign_canonical_path, NULL
2430         },
2431
2432         {
2433                 {"listen_addresses", PGC_POSTMASTER, CONN_AUTH_SETTINGS,
2434                         gettext_noop("Sets the host name or IP address(es) to listen to."),
2435                         NULL,
2436                         GUC_LIST_INPUT
2437                 },
2438                 &ListenAddresses,
2439                 "localhost", NULL, NULL
2440         },
2441
2442         {
2443                 {"custom_variable_classes", PGC_SIGHUP, CUSTOM_OPTIONS,
2444                         gettext_noop("Sets the list of known custom variable classes."),
2445                         NULL,
2446                         GUC_LIST_INPUT | GUC_LIST_QUOTE
2447                 },
2448                 &custom_variable_classes,
2449                 NULL, assign_custom_variable_classes, NULL
2450         },
2451
2452         {
2453                 {"data_directory", PGC_POSTMASTER, FILE_LOCATIONS,
2454                         gettext_noop("Sets the server's data directory."),
2455                         NULL,
2456                         GUC_SUPERUSER_ONLY
2457                 },
2458                 &data_directory,
2459                 NULL, NULL, NULL
2460         },
2461
2462         {
2463                 {"config_file", PGC_POSTMASTER, FILE_LOCATIONS,
2464                         gettext_noop("Sets the server's main configuration file."),
2465                         NULL,
2466                         GUC_DISALLOW_IN_FILE | GUC_SUPERUSER_ONLY
2467                 },
2468                 &ConfigFileName,
2469                 NULL, NULL, NULL
2470         },
2471
2472         {
2473                 {"hba_file", PGC_POSTMASTER, FILE_LOCATIONS,
2474                         gettext_noop("Sets the server's \"hba\" configuration file."),
2475                         NULL,
2476                         GUC_SUPERUSER_ONLY
2477                 },
2478                 &HbaFileName,
2479                 NULL, NULL, NULL
2480         },
2481
2482         {
2483                 {"ident_file", PGC_POSTMASTER, FILE_LOCATIONS,
2484                         gettext_noop("Sets the server's \"ident\" configuration file."),
2485                         NULL,
2486                         GUC_SUPERUSER_ONLY
2487                 },
2488                 &IdentFileName,
2489                 NULL, NULL, NULL
2490         },
2491
2492         {
2493                 {"external_pid_file", PGC_POSTMASTER, FILE_LOCATIONS,
2494                         gettext_noop("Writes the postmaster PID to the specified file."),
2495                         NULL,
2496                         GUC_SUPERUSER_ONLY
2497                 },
2498                 &external_pid_file,
2499                 NULL, assign_canonical_path, NULL
2500         },
2501
2502         {
2503                 {"stats_temp_directory", PGC_SIGHUP, STATS_COLLECTOR,
2504                         gettext_noop("Writes temporary statistics files to the specified directory."),
2505                         NULL,
2506                         GUC_SUPERUSER_ONLY
2507                 },
2508                 &pgstat_temp_directory,
2509                 "pg_stat_tmp", assign_pgstat_temp_directory, NULL
2510         },
2511
2512         {
2513                 {"default_text_search_config", PGC_USERSET, CLIENT_CONN_LOCALE,
2514                         gettext_noop("Sets default text search configuration."),
2515                         NULL
2516                 },
2517                 &TSCurrentConfig,
2518                 "pg_catalog.simple", assignTSCurrentConfig, NULL
2519         },
2520
2521 #ifdef USE_SSL
2522         {
2523                 {"ssl_ciphers", PGC_POSTMASTER, CONN_AUTH_SECURITY,
2524                         gettext_noop("Sets the list of allowed SSL ciphers."),
2525                         NULL,
2526                         GUC_SUPERUSER_ONLY
2527                 },
2528                 &SSLCipherSuites,
2529                 "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH", NULL, NULL
2530         },
2531 #endif   /* USE_SSL */
2532
2533         /* End-of-list marker */
2534         {
2535                 {NULL, 0, 0, NULL, NULL}, NULL, NULL, NULL, NULL
2536         }
2537 };
2538
2539
2540 static struct config_enum ConfigureNamesEnum[] =
2541 {
2542         {
2543                 {"backslash_quote", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
2544                         gettext_noop("Sets whether \"\\'\" is allowed in string literals."),
2545                         NULL
2546                 },
2547                 &backslash_quote,
2548                 BACKSLASH_QUOTE_SAFE_ENCODING, backslash_quote_options, NULL, NULL
2549         },
2550
2551         {
2552                 {"bytea_output", PGC_USERSET, CLIENT_CONN_STATEMENT,
2553                         gettext_noop("Sets the output format for bytea."),
2554                         NULL
2555                 },
2556                 &bytea_output,
2557                 BYTEA_OUTPUT_HEX, bytea_output_options, NULL, NULL
2558         },
2559
2560         {
2561                 {"client_min_messages", PGC_USERSET, LOGGING_WHEN,
2562                         gettext_noop("Sets the message levels that are sent to the client."),
2563                         gettext_noop("Each level includes all the levels that follow it. The later"
2564                                                  " the level, the fewer messages are sent.")
2565                 },
2566                 &client_min_messages,
2567                 NOTICE, client_message_level_options, NULL, NULL
2568         },
2569
2570         {
2571                 {"constraint_exclusion", PGC_USERSET, QUERY_TUNING_OTHER,
2572                         gettext_noop("Enables the planner to use constraints to optimize queries."),
2573                         gettext_noop("Table scans will be skipped if their constraints"
2574                                                  " guarantee that no rows match the query.")
2575                 },
2576                 &constraint_exclusion,
2577                 CONSTRAINT_EXCLUSION_PARTITION, constraint_exclusion_options,
2578                 NULL, NULL
2579         },
2580
2581         {
2582                 {"default_transaction_isolation", PGC_USERSET, CLIENT_CONN_STATEMENT,
2583                         gettext_noop("Sets the transaction isolation level of each new transaction."),
2584                         NULL
2585                 },
2586                 &DefaultXactIsoLevel,
2587                 XACT_READ_COMMITTED, isolation_level_options, NULL, NULL
2588         },
2589
2590         {
2591                 {"IntervalStyle", PGC_USERSET, CLIENT_CONN_LOCALE,
2592                         gettext_noop("Sets the display format for interval values."),
2593                         NULL,
2594                         GUC_REPORT
2595                 },
2596                 &IntervalStyle,
2597                 INTSTYLE_POSTGRES, intervalstyle_options, NULL, NULL
2598         },
2599
2600         {
2601                 {"log_error_verbosity", PGC_SUSET, LOGGING_WHEN,
2602                         gettext_noop("Sets the verbosity of logged messages."),
2603                         NULL
2604                 },
2605                 &Log_error_verbosity,
2606                 PGERROR_DEFAULT, log_error_verbosity_options, NULL, NULL
2607         },
2608
2609         {
2610                 {"log_min_messages", PGC_SUSET, LOGGING_WHEN,
2611                         gettext_noop("Sets the message levels that are logged."),
2612                         gettext_noop("Each level includes all the levels that follow it. The later"
2613                                                  " the level, the fewer messages are sent.")
2614                 },
2615                 &log_min_messages,
2616                 WARNING, server_message_level_options, NULL, NULL
2617         },
2618
2619         {
2620                 {"log_min_error_statement", PGC_SUSET, LOGGING_WHEN,
2621                         gettext_noop("Causes all statements generating error at or above this level to be logged."),
2622                         gettext_noop("Each level includes all the levels that follow it. The later"
2623                                                  " the level, the fewer messages are sent.")
2624                 },
2625                 &log_min_error_statement,
2626                 ERROR, server_message_level_options, NULL, NULL
2627         },
2628
2629         {
2630                 {"log_statement", PGC_SUSET, LOGGING_WHAT,
2631                         gettext_noop("Sets the type of statements logged."),
2632                         NULL
2633                 },
2634                 &log_statement,
2635                 LOGSTMT_NONE, log_statement_options, NULL, NULL
2636         },
2637
2638 #ifdef HAVE_SYSLOG
2639         {
2640                 {"syslog_facility", PGC_SIGHUP, LOGGING_WHERE,
2641                         gettext_noop("Sets the syslog \"facility\" to be used when syslog enabled."),
2642                         NULL
2643                 },
2644                 &syslog_facility,
2645                 LOG_LOCAL0, syslog_facility_options, assign_syslog_facility, NULL
2646         },
2647 #endif
2648
2649         {
2650                 {"regex_flavor", PGC_USERSET, COMPAT_OPTIONS_PREVIOUS,
2651                         gettext_noop("Sets the regular expression \"flavor\"."),
2652                         NULL
2653                 },
2654                 &regex_flavor,
2655                 REG_ADVANCED, regex_flavor_options, NULL, NULL
2656         },
2657
2658         {
2659                 {"session_replication_role", PGC_SUSET, CLIENT_CONN_STATEMENT,
2660                         gettext_noop("Sets the session's behavior for triggers and rewrite rules."),
2661                         NULL
2662                 },
2663                 &SessionReplicationRole,
2664                 SESSION_REPLICATION_ROLE_ORIGIN, session_replication_role_options,
2665                 assign_session_replication_role, NULL
2666         },
2667
2668         {
2669                 {"track_functions", PGC_SUSET, STATS_COLLECTOR,
2670                         gettext_noop("Collects function-level statistics on database activity."),
2671                         NULL
2672                 },
2673                 &pgstat_track_functions,
2674                 TRACK_FUNC_OFF, track_function_options, NULL, NULL
2675         },
2676
2677         {
2678                 {"wal_sync_method", PGC_SIGHUP, WAL_SETTINGS,
2679                         gettext_noop("Selects the method used for forcing WAL updates to disk."),
2680                         NULL
2681                 },
2682                 &sync_method,
2683                 DEFAULT_SYNC_METHOD, sync_method_options,
2684                 assign_xlog_sync_method, NULL
2685         },
2686
2687         {
2688                 {"xmlbinary", PGC_USERSET, CLIENT_CONN_STATEMENT,
2689                         gettext_noop("Sets how binary values are to be encoded in XML."),
2690                         NULL
2691                 },
2692                 &xmlbinary,
2693                 XMLBINARY_BASE64, xmlbinary_options, NULL, NULL
2694         },
2695
2696         {
2697                 {"xmloption", PGC_USERSET, CLIENT_CONN_STATEMENT,
2698                         gettext_noop("Sets whether XML data in implicit parsing and serialization "
2699                                                  "operations is to be considered as documents or content fragments."),
2700                         NULL
2701                 },
2702                 &xmloption,
2703                 XMLOPTION_CONTENT, xmloption_options, NULL, NULL
2704         },
2705
2706
2707         /* End-of-list marker */
2708         {
2709                 {NULL, 0, 0, NULL, NULL}, NULL, 0, NULL, NULL, NULL
2710         }
2711 };
2712
2713 /******** end of options list ********/
2714
2715
2716 /*
2717  * To allow continued support of obsolete names for GUC variables, we apply
2718  * the following mappings to any unrecognized name.  Note that an old name
2719  * should be mapped to a new one only if the new variable has very similar
2720  * semantics to the old.
2721  */
2722 static const char *const map_old_guc_names[] = {
2723         "sort_mem", "work_mem",
2724         "vacuum_mem", "maintenance_work_mem",
2725         NULL
2726 };
2727
2728
2729 /*
2730  * Actual lookup of variables is done through this single, sorted array.
2731  */
2732 static struct config_generic **guc_variables;
2733
2734 /* Current number of variables contained in the vector */
2735 static int      num_guc_variables;
2736
2737 /* Vector capacity */
2738 static int      size_guc_variables;
2739
2740
2741 static bool guc_dirty;                  /* TRUE if need to do commit/abort work */
2742
2743 static bool reporting_enabled;  /* TRUE to enable GUC_REPORT */
2744
2745 static int      GUCNestLevel = 0;       /* 1 when in main transaction */
2746
2747
2748 static int      guc_var_compare(const void *a, const void *b);
2749 static int      guc_name_compare(const char *namea, const char *nameb);
2750 static void InitializeOneGUCOption(struct config_generic * gconf);
2751 static void push_old_value(struct config_generic * gconf, GucAction action);
2752 static void ReportGUCOption(struct config_generic * record);
2753 static void ShowGUCConfigOption(const char *name, DestReceiver *dest);
2754 static void ShowAllGUCConfig(DestReceiver *dest);
2755 static char *_ShowOption(struct config_generic * record, bool use_units);
2756 static bool is_newvalue_equal(struct config_generic * record, const char *newvalue);
2757
2758
2759 /*
2760  * Some infrastructure for checking malloc/strdup/realloc calls
2761  */
2762 static void *
2763 guc_malloc(int elevel, size_t size)
2764 {
2765         void       *data;
2766
2767         data = malloc(size);
2768         if (data == NULL)
2769                 ereport(elevel,
2770                                 (errcode(ERRCODE_OUT_OF_MEMORY),
2771                                  errmsg("out of memory")));
2772         return data;
2773 }
2774
2775 static void *
2776 guc_realloc(int elevel, void *old, size_t size)
2777 {
2778         void       *data;
2779
2780         data = realloc(old, size);
2781         if (data == NULL)
2782                 ereport(elevel,
2783                                 (errcode(ERRCODE_OUT_OF_MEMORY),
2784                                  errmsg("out of memory")));
2785         return data;
2786 }
2787
2788 static char *
2789 guc_strdup(int elevel, const char *src)
2790 {
2791         char       *data;
2792
2793         data = strdup(src);
2794         if (data == NULL)
2795                 ereport(elevel,
2796                                 (errcode(ERRCODE_OUT_OF_MEMORY),
2797                                  errmsg("out of memory")));
2798         return data;
2799 }
2800
2801
2802 /*
2803  * Support for assigning to a field of a string GUC item.  Free the prior
2804  * value if it's not referenced anywhere else in the item (including stacked
2805  * states).
2806  */
2807 static void
2808 set_string_field(struct config_string * conf, char **field, char *newval)
2809 {
2810         char       *oldval = *field;
2811         GucStack   *stack;
2812
2813         /* Do the assignment */
2814         *field = newval;
2815
2816         /* Exit if any duplicate references, or if old value was NULL anyway */
2817         if (oldval == NULL ||
2818                 oldval == *(conf->variable) ||
2819                 oldval == conf->reset_val ||
2820                 oldval == conf->boot_val)
2821                 return;
2822         for (stack = conf->gen.stack; stack; stack = stack->prev)
2823         {
2824                 if (oldval == stack->prior.stringval ||
2825                         oldval == stack->masked.stringval)
2826                         return;
2827         }
2828
2829         /* Not used anymore, so free it */
2830         free(oldval);
2831 }
2832
2833 /*
2834  * Detect whether strval is referenced anywhere in a GUC string item
2835  */
2836 static bool
2837 string_field_used(struct config_string * conf, char *strval)
2838 {
2839         GucStack   *stack;
2840
2841         if (strval == *(conf->variable) ||
2842                 strval == conf->reset_val ||
2843                 strval == conf->boot_val)
2844                 return true;
2845         for (stack = conf->gen.stack; stack; stack = stack->prev)
2846         {
2847                 if (strval == stack->prior.stringval ||
2848                         strval == stack->masked.stringval)
2849                         return true;
2850         }
2851         return false;
2852 }
2853
2854 /*
2855  * Support for copying a variable's active value into a stack entry
2856  */
2857 static void
2858 set_stack_value(struct config_generic * gconf, union config_var_value * val)
2859 {
2860         switch (gconf->vartype)
2861         {
2862                 case PGC_BOOL:
2863                         val->boolval =
2864                                 *((struct config_bool *) gconf)->variable;
2865                         break;
2866                 case PGC_INT:
2867                         val->intval =
2868                                 *((struct config_int *) gconf)->variable;
2869                         break;
2870                 case PGC_REAL:
2871                         val->realval =
2872                                 *((struct config_real *) gconf)->variable;
2873                         break;
2874                 case PGC_STRING:
2875                         /* we assume stringval is NULL if not valid */
2876                         set_string_field((struct config_string *) gconf,
2877                                                          &(val->stringval),
2878                                                          *((struct config_string *) gconf)->variable);
2879                         break;
2880                 case PGC_ENUM:
2881                         val->enumval =
2882                                 *((struct config_enum *) gconf)->variable;
2883                         break;
2884         }
2885 }
2886
2887 /*
2888  * Support for discarding a no-longer-needed value in a stack entry
2889  */
2890 static void
2891 discard_stack_value(struct config_generic * gconf, union config_var_value * val)
2892 {
2893         switch (gconf->vartype)
2894         {
2895                 case PGC_BOOL:
2896                 case PGC_INT:
2897                 case PGC_REAL:
2898                 case PGC_ENUM:
2899                         /* no need to do anything */
2900                         break;
2901                 case PGC_STRING:
2902                         set_string_field((struct config_string *) gconf,
2903                                                          &(val->stringval),
2904                                                          NULL);
2905                         break;
2906         }
2907 }
2908
2909
2910 /*
2911  * Fetch the sorted array pointer (exported for help_config.c's use ONLY)
2912  */
2913 struct config_generic **
2914 get_guc_variables(void)
2915 {
2916         return guc_variables;
2917 }
2918
2919
2920 /*
2921  * Build the sorted array.      This is split out so that it could be
2922  * re-executed after startup (eg, we could allow loadable modules to
2923  * add vars, and then we'd need to re-sort).
2924  */
2925 void
2926 build_guc_variables(void)
2927 {
2928         int                     size_vars;
2929         int                     num_vars = 0;
2930         struct config_generic **guc_vars;
2931         int                     i;
2932
2933         for (i = 0; ConfigureNamesBool[i].gen.name; i++)
2934         {
2935                 struct config_bool *conf = &ConfigureNamesBool[i];
2936
2937                 /* Rather than requiring vartype to be filled in by hand, do this: */
2938                 conf->gen.vartype = PGC_BOOL;
2939                 num_vars++;
2940         }
2941
2942         for (i = 0; ConfigureNamesInt[i].gen.name; i++)
2943         {
2944                 struct config_int *conf = &ConfigureNamesInt[i];
2945
2946                 conf->gen.vartype = PGC_INT;
2947                 num_vars++;
2948         }
2949
2950         for (i = 0; ConfigureNamesReal[i].gen.name; i++)
2951         {
2952                 struct config_real *conf = &ConfigureNamesReal[i];
2953
2954                 conf->gen.vartype = PGC_REAL;
2955                 num_vars++;
2956         }
2957
2958         for (i = 0; ConfigureNamesString[i].gen.name; i++)
2959         {
2960                 struct config_string *conf = &ConfigureNamesString[i];
2961
2962                 conf->gen.vartype = PGC_STRING;
2963                 num_vars++;
2964         }
2965
2966         for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
2967         {
2968                 struct config_enum *conf = &ConfigureNamesEnum[i];
2969
2970                 conf->gen.vartype = PGC_ENUM;
2971                 num_vars++;
2972         }
2973
2974         /*
2975          * Create table with 20% slack
2976          */
2977         size_vars = num_vars + num_vars / 4;
2978
2979         guc_vars = (struct config_generic **)
2980                 guc_malloc(FATAL, size_vars * sizeof(struct config_generic *));
2981
2982         num_vars = 0;
2983
2984         for (i = 0; ConfigureNamesBool[i].gen.name; i++)
2985                 guc_vars[num_vars++] = &ConfigureNamesBool[i].gen;
2986
2987         for (i = 0; ConfigureNamesInt[i].gen.name; i++)
2988                 guc_vars[num_vars++] = &ConfigureNamesInt[i].gen;
2989
2990         for (i = 0; ConfigureNamesReal[i].gen.name; i++)
2991                 guc_vars[num_vars++] = &ConfigureNamesReal[i].gen;
2992
2993         for (i = 0; ConfigureNamesString[i].gen.name; i++)
2994                 guc_vars[num_vars++] = &ConfigureNamesString[i].gen;
2995
2996         for (i = 0; ConfigureNamesEnum[i].gen.name; i++)
2997                 guc_vars[num_vars++] = &ConfigureNamesEnum[i].gen;
2998
2999         if (guc_variables)
3000                 free(guc_variables);
3001         guc_variables = guc_vars;
3002         num_guc_variables = num_vars;
3003         size_guc_variables = size_vars;
3004         qsort((void *) guc_variables, num_guc_variables,
3005                   sizeof(struct config_generic *), guc_var_compare);
3006 }
3007
3008 /*
3009  * Add a new GUC variable to the list of known variables. The
3010  * list is expanded if needed.
3011  */
3012 static bool
3013 add_guc_variable(struct config_generic * var, int elevel)
3014 {
3015         if (num_guc_variables + 1 >= size_guc_variables)
3016         {
3017                 /*
3018                  * Increase the vector by 25%
3019                  */
3020                 int                     size_vars = size_guc_variables + size_guc_variables / 4;
3021                 struct config_generic **guc_vars;
3022
3023                 if (size_vars == 0)
3024                 {
3025                         size_vars = 100;
3026                         guc_vars = (struct config_generic **)
3027                                 guc_malloc(elevel, size_vars * sizeof(struct config_generic *));
3028                 }
3029                 else
3030                 {
3031                         guc_vars = (struct config_generic **)
3032                                 guc_realloc(elevel, guc_variables, size_vars * sizeof(struct config_generic *));
3033                 }
3034
3035                 if (guc_vars == NULL)
3036                         return false;           /* out of memory */
3037
3038                 guc_variables = guc_vars;
3039                 size_guc_variables = size_vars;
3040         }
3041         guc_variables[num_guc_variables++] = var;
3042         qsort((void *) guc_variables, num_guc_variables,
3043                   sizeof(struct config_generic *), guc_var_compare);
3044         return true;
3045 }
3046
3047 /*
3048  * Create and add a placeholder variable. It's presumed to belong
3049  * to a valid custom variable class at this point.
3050  */
3051 static struct config_generic *
3052 add_placeholder_variable(const char *name, int elevel)
3053 {
3054         size_t          sz = sizeof(struct config_string) + sizeof(char *);
3055         struct config_string *var;
3056         struct config_generic *gen;
3057
3058         var = (struct config_string *) guc_malloc(elevel, sz);
3059         if (var == NULL)
3060                 return NULL;
3061         memset(var, 0, sz);
3062         gen = &var->gen;
3063
3064         gen->name = guc_strdup(elevel, name);
3065         if (gen->name == NULL)
3066         {
3067                 free(var);
3068                 return NULL;
3069         }
3070
3071         gen->context = PGC_USERSET;
3072         gen->group = CUSTOM_OPTIONS;
3073         gen->short_desc = "GUC placeholder variable";
3074         gen->flags = GUC_NO_SHOW_ALL | GUC_NOT_IN_SAMPLE | GUC_CUSTOM_PLACEHOLDER;
3075         gen->vartype = PGC_STRING;
3076
3077         /*
3078          * The char* is allocated at the end of the struct since we have no
3079          * 'static' place to point to.  Note that the current value, as well as
3080          * the boot and reset values, start out NULL.
3081          */
3082         var->variable = (char **) (var + 1);
3083
3084         if (!add_guc_variable((struct config_generic *) var, elevel))
3085         {
3086                 free((void *) gen->name);
3087                 free(var);
3088                 return NULL;
3089         }
3090
3091         return gen;
3092 }
3093
3094 /*
3095  * Detect whether the portion of "name" before dotPos matches any custom
3096  * variable class name listed in custom_var_classes.  The latter must be
3097  * formatted the way that assign_custom_variable_classes does it, ie,
3098  * no whitespace.  NULL is valid for custom_var_classes.
3099  */
3100 static bool
3101 is_custom_class(const char *name, int dotPos, const char *custom_var_classes)
3102 {
3103         bool            result = false;
3104         const char *ccs = custom_var_classes;
3105
3106         if (ccs != NULL)
3107         {
3108                 const char *start = ccs;
3109
3110                 for (;; ++ccs)
3111                 {
3112                         char            c = *ccs;
3113
3114                         if (c == '\0' || c == ',')
3115                         {
3116                                 if (dotPos == ccs - start && strncmp(start, name, dotPos) == 0)
3117                                 {
3118                                         result = true;
3119                                         break;
3120                                 }
3121                                 if (c == '\0')
3122                                         break;
3123                                 start = ccs + 1;
3124                         }
3125                 }
3126         }
3127         return result;
3128 }
3129
3130 /*
3131  * Look up option NAME.  If it exists, return a pointer to its record,
3132  * else return NULL.  If create_placeholders is TRUE, we'll create a
3133  * placeholder record for a valid-looking custom variable name.
3134  */
3135 static struct config_generic *
3136 find_option(const char *name, bool create_placeholders, int elevel)
3137 {
3138         const char **key = &name;
3139         struct config_generic **res;
3140         int                     i;
3141
3142         Assert(name);
3143
3144         /*
3145          * By equating const char ** with struct config_generic *, we are assuming
3146          * the name field is first in config_generic.
3147          */
3148         res = (struct config_generic **) bsearch((void *) &key,
3149                                                                                          (void *) guc_variables,
3150                                                                                          num_guc_variables,
3151                                                                                          sizeof(struct config_generic *),
3152                                                                                          guc_var_compare);
3153         if (res)
3154                 return *res;
3155
3156         /*
3157          * See if the name is an obsolete name for a variable.  We assume that the
3158          * set of supported old names is short enough that a brute-force search is
3159          * the best way.
3160          */
3161         for (i = 0; map_old_guc_names[i] != NULL; i += 2)
3162         {
3163                 if (guc_name_compare(name, map_old_guc_names[i]) == 0)
3164                         return find_option(map_old_guc_names[i + 1], false, elevel);
3165         }
3166
3167         if (create_placeholders)
3168         {
3169                 /*
3170                  * Check if the name is qualified, and if so, check if the qualifier
3171                  * matches any custom variable class.  If so, add a placeholder.
3172                  */
3173                 const char *dot = strchr(name, GUC_QUALIFIER_SEPARATOR);
3174
3175                 if (dot != NULL &&
3176                         is_custom_class(name, dot - name, custom_variable_classes))
3177                         return add_placeholder_variable(name, elevel);
3178         }
3179
3180         /* Unknown name */
3181         return NULL;
3182 }
3183
3184
3185 /*
3186  * comparator for qsorting and bsearching guc_variables array
3187  */
3188 static int
3189 guc_var_compare(const void *a, const void *b)
3190 {
3191         struct config_generic *confa = *(struct config_generic **) a;
3192         struct config_generic *confb = *(struct config_generic **) b;
3193
3194         return guc_name_compare(confa->name, confb->name);
3195 }
3196
3197 /*
3198  * the bare comparison function for GUC names
3199  */
3200 static int
3201 guc_name_compare(const char *namea, const char *nameb)
3202 {
3203         /*
3204          * The temptation to use strcasecmp() here must be resisted, because the
3205          * array ordering has to remain stable across setlocale() calls. So, build
3206          * our own with a simple ASCII-only downcasing.
3207          */
3208         while (*namea && *nameb)
3209         {
3210                 char            cha = *namea++;
3211                 char            chb = *nameb++;
3212
3213                 if (cha >= 'A' && cha <= 'Z')
3214                         cha += 'a' - 'A';
3215                 if (chb >= 'A' && chb <= 'Z')
3216                         chb += 'a' - 'A';
3217                 if (cha != chb)
3218                         return cha - chb;
3219         }
3220         if (*namea)
3221                 return 1;                               /* a is longer */
3222         if (*nameb)
3223                 return -1;                              /* b is longer */
3224         return 0;
3225 }
3226
3227
3228 /*
3229  * Initialize GUC options during program startup.
3230  *
3231  * Note that we cannot read the config file yet, since we have not yet
3232  * processed command-line switches.
3233  */
3234 void
3235 InitializeGUCOptions(void)
3236 {
3237         int                     i;
3238         char       *env;
3239         long            stack_rlimit;
3240
3241         /*
3242          * Before log_line_prefix could possibly receive a nonempty setting, make
3243          * sure that timezone processing is minimally alive (see elog.c).
3244          */
3245         pg_timezone_pre_initialize();
3246
3247         /*
3248          * Build sorted array of all GUC variables.
3249          */
3250         build_guc_variables();
3251
3252         /*
3253          * Load all variables with their compiled-in defaults, and initialize
3254          * status fields as needed.
3255          */
3256         for (i = 0; i < num_guc_variables; i++)
3257         {
3258                 InitializeOneGUCOption(guc_variables[i]);
3259         }
3260
3261         guc_dirty = false;
3262
3263         reporting_enabled = false;
3264
3265         /*
3266          * Prevent any attempt to override the transaction modes from
3267          * non-interactive sources.
3268          */
3269         SetConfigOption("transaction_isolation", "default",
3270                                         PGC_POSTMASTER, PGC_S_OVERRIDE);
3271         SetConfigOption("transaction_read_only", "no",
3272                                         PGC_POSTMASTER, PGC_S_OVERRIDE);
3273
3274         /*
3275          * For historical reasons, some GUC parameters can receive defaults from
3276          * environment variables.  Process those settings.      NB: if you add or
3277          * remove anything here, see also ProcessConfigFile().
3278          */
3279
3280         env = getenv("PGPORT");
3281         if (env != NULL)
3282                 SetConfigOption("port", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
3283
3284         env = getenv("PGDATESTYLE");
3285         if (env != NULL)
3286                 SetConfigOption("datestyle", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
3287
3288         env = getenv("PGCLIENTENCODING");
3289         if (env != NULL)
3290                 SetConfigOption("client_encoding", env, PGC_POSTMASTER, PGC_S_ENV_VAR);
3291
3292         /*
3293          * rlimit isn't exactly an "environment variable", but it behaves about
3294          * the same.  If we can identify the platform stack depth rlimit, increase
3295          * default stack depth setting up to whatever is safe (but at most 2MB).
3296          */
3297         stack_rlimit = get_stack_depth_rlimit();
3298         if (stack_rlimit > 0)
3299         {
3300                 int                     new_limit = (stack_rlimit - STACK_DEPTH_SLOP) / 1024L;
3301
3302                 if (new_limit > 100)
3303                 {
3304                         char            limbuf[16];
3305
3306                         new_limit = Min(new_limit, 2048);
3307                         sprintf(limbuf, "%d", new_limit);
3308                         SetConfigOption("max_stack_depth", limbuf,
3309                                                         PGC_POSTMASTER, PGC_S_ENV_VAR);
3310                 }
3311         }
3312 }
3313
3314 /*
3315  * Initialize one GUC option variable to its compiled-in default.
3316  */
3317 static void
3318 InitializeOneGUCOption(struct config_generic * gconf)
3319 {
3320         gconf->status = 0;
3321         gconf->reset_source = PGC_S_DEFAULT;
3322         gconf->source = PGC_S_DEFAULT;
3323         gconf->stack = NULL;
3324         gconf->sourcefile = NULL;
3325         gconf->sourceline = 0;
3326
3327         switch (gconf->vartype)
3328         {
3329                 case PGC_BOOL:
3330                         {
3331                                 struct config_bool *conf = (struct config_bool *) gconf;
3332
3333                                 if (conf->assign_hook)
3334                                         if (!(*conf->assign_hook) (conf->boot_val, true,
3335                                                                                            PGC_S_DEFAULT))
3336                                                 elog(FATAL, "failed to initialize %s to %d",
3337                                                          conf->gen.name, (int) conf->boot_val);
3338                                 *conf->variable = conf->reset_val = conf->boot_val;
3339                                 break;
3340                         }
3341                 case PGC_INT:
3342                         {
3343                                 struct config_int *conf = (struct config_int *) gconf;
3344
3345                                 Assert(conf->boot_val >= conf->min);
3346                                 Assert(conf->boot_val <= conf->max);
3347                                 if (conf->assign_hook)
3348                                         if (!(*conf->assign_hook) (conf->boot_val, true,
3349                                                                                            PGC_S_DEFAULT))
3350                                                 elog(FATAL, "failed to initialize %s to %d",
3351                                                          conf->gen.name, conf->boot_val);
3352                                 *conf->variable = conf->reset_val = conf->boot_val;
3353                                 break;
3354                         }
3355                 case PGC_REAL:
3356                         {
3357                                 struct config_real *conf = (struct config_real *) gconf;
3358
3359                                 Assert(conf->boot_val >= conf->min);
3360                                 Assert(conf->boot_val <= conf->max);
3361                                 if (conf->assign_hook)
3362                                         if (!(*conf->assign_hook) (conf->boot_val, true,
3363                                                                                            PGC_S_DEFAULT))
3364                                                 elog(FATAL, "failed to initialize %s to %g",
3365                                                          conf->gen.name, conf->boot_val);
3366                                 *conf->variable = conf->reset_val = conf->boot_val;
3367                                 break;
3368                         }
3369                 case PGC_STRING:
3370                         {
3371                                 struct config_string *conf = (struct config_string *) gconf;
3372                                 char       *str;
3373
3374                                 *conf->variable = NULL;
3375                                 conf->reset_val = NULL;
3376
3377                                 if (conf->boot_val == NULL)
3378                                 {
3379                                         /* leave the value NULL, do not call assign hook */
3380                                         break;
3381                                 }
3382
3383                                 str = guc_strdup(FATAL, conf->boot_val);
3384                                 conf->reset_val = str;
3385
3386                                 if (conf->assign_hook)
3387                                 {
3388                                         const char *newstr;
3389
3390                                         newstr = (*conf->assign_hook) (str, true,
3391                                                                                                    PGC_S_DEFAULT);
3392                                         if (newstr == NULL)
3393                                         {
3394                                                 elog(FATAL, "failed to initialize %s to \"%s\"",
3395                                                          conf->gen.name, str);
3396                                         }
3397                                         else if (newstr != str)
3398                                         {
3399                                                 free(str);
3400
3401                                                 /*
3402                                                  * See notes in set_config_option about casting
3403                                                  */
3404                                                 str = (char *) newstr;
3405                                                 conf->reset_val = str;
3406                                         }
3407                                 }
3408                                 *conf->variable = str;
3409                                 break;
3410                         }
3411                 case PGC_ENUM:
3412                         {
3413                                 struct config_enum *conf = (struct config_enum *) gconf;
3414
3415                                 if (conf->assign_hook)
3416                                         if (!(*conf->assign_hook) (conf->boot_val, true,
3417                                                                                            PGC_S_DEFAULT))
3418                                                 elog(FATAL, "failed to initialize %s to %s",
3419                                                          conf->gen.name,
3420                                                   config_enum_lookup_by_value(conf, conf->boot_val));
3421                                 *conf->variable = conf->reset_val = conf->boot_val;
3422                                 break;
3423                         }
3424         }
3425 }
3426
3427
3428 /*
3429  * Select the configuration files and data directory to be used, and
3430  * do the initial read of postgresql.conf.
3431  *
3432  * This is called after processing command-line switches.
3433  *              userDoption is the -D switch value if any (NULL if unspecified).
3434  *              progname is just for use in error messages.
3435  *
3436  * Returns true on success; on failure, prints a suitable error message
3437  * to stderr and returns false.
3438  */
3439 bool
3440 SelectConfigFiles(const char *userDoption, const char *progname)
3441 {
3442         char       *configdir;
3443         char       *fname;
3444         struct stat stat_buf;
3445
3446         /* configdir is -D option, or $PGDATA if no -D */
3447         if (userDoption)
3448                 configdir = make_absolute_path(userDoption);
3449         else
3450                 configdir = make_absolute_path(getenv("PGDATA"));
3451
3452         /*
3453          * Find the configuration file: if config_file was specified on the
3454          * command line, use it, else use configdir/postgresql.conf.  In any case
3455          * ensure the result is an absolute path, so that it will be interpreted
3456          * the same way by future backends.
3457          */
3458         if (ConfigFileName)
3459                 fname = make_absolute_path(ConfigFileName);
3460         else if (configdir)
3461         {
3462                 fname = guc_malloc(FATAL,
3463                                                    strlen(configdir) + strlen(CONFIG_FILENAME) + 2);
3464                 sprintf(fname, "%s/%s", configdir, CONFIG_FILENAME);
3465         }
3466         else
3467         {
3468                 write_stderr("%s does not know where to find the server configuration file.\n"
3469                                          "You must specify the --config-file or -D invocation "
3470                                          "option or set the PGDATA environment variable.\n",
3471                                          progname);
3472                 return false;
3473         }
3474
3475         /*
3476          * Set the ConfigFileName GUC variable to its final value, ensuring that
3477          * it can't be overridden later.
3478          */
3479         SetConfigOption("config_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
3480         free(fname);
3481
3482         /*
3483          * Now read the config file for the first time.
3484          */
3485         if (stat(ConfigFileName, &stat_buf) != 0)
3486         {
3487                 write_stderr("%s cannot access the server configuration file \"%s\": %s\n",
3488                                          progname, ConfigFileName, strerror(errno));
3489                 return false;
3490         }
3491
3492         ProcessConfigFile(PGC_POSTMASTER);
3493
3494         /*
3495          * If the data_directory GUC variable has been set, use that as DataDir;
3496          * otherwise use configdir if set; else punt.
3497          *
3498          * Note: SetDataDir will copy and absolute-ize its argument, so we don't
3499          * have to.
3500          */
3501         if (data_directory)
3502                 SetDataDir(data_directory);
3503         else if (configdir)
3504                 SetDataDir(configdir);
3505         else
3506         {
3507                 write_stderr("%s does not know where to find the database system data.\n"
3508                                          "This can be specified as \"data_directory\" in \"%s\", "
3509                                          "or by the -D invocation option, or by the "
3510                                          "PGDATA environment variable.\n",
3511                                          progname, ConfigFileName);
3512                 return false;
3513         }
3514
3515         /*
3516          * Reflect the final DataDir value back into the data_directory GUC var.
3517          * (If you are wondering why we don't just make them a single variable,
3518          * it's because the EXEC_BACKEND case needs DataDir to be transmitted to
3519          * child backends specially.  XXX is that still true?  Given that we now
3520          * chdir to DataDir, EXEC_BACKEND can read the config file without knowing
3521          * DataDir in advance.)
3522          */
3523         SetConfigOption("data_directory", DataDir, PGC_POSTMASTER, PGC_S_OVERRIDE);
3524
3525         /*
3526          * Figure out where pg_hba.conf is, and make sure the path is absolute.
3527          */
3528         if (HbaFileName)
3529                 fname = make_absolute_path(HbaFileName);
3530         else if (configdir)
3531         {
3532                 fname = guc_malloc(FATAL,
3533                                                    strlen(configdir) + strlen(HBA_FILENAME) + 2);
3534                 sprintf(fname, "%s/%s", configdir, HBA_FILENAME);
3535         }
3536         else
3537         {
3538                 write_stderr("%s does not know where to find the \"hba\" configuration file.\n"
3539                                          "This can be specified as \"hba_file\" in \"%s\", "
3540                                          "or by the -D invocation option, or by the "
3541                                          "PGDATA environment variable.\n",
3542                                          progname, ConfigFileName);
3543                 return false;
3544         }
3545         SetConfigOption("hba_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
3546         free(fname);
3547
3548         /*
3549          * Likewise for pg_ident.conf.
3550          */
3551         if (IdentFileName)
3552                 fname = make_absolute_path(IdentFileName);
3553         else if (configdir)
3554         {
3555                 fname = guc_malloc(FATAL,
3556                                                    strlen(configdir) + strlen(IDENT_FILENAME) + 2);
3557                 sprintf(fname, "%s/%s", configdir, IDENT_FILENAME);
3558         }
3559         else
3560         {
3561                 write_stderr("%s does not know where to find the \"ident\" configuration file.\n"
3562                                          "This can be specified as \"ident_file\" in \"%s\", "
3563                                          "or by the -D invocation option, or by the "
3564                                          "PGDATA environment variable.\n",
3565                                          progname, ConfigFileName);
3566                 return false;
3567         }
3568         SetConfigOption("ident_file", fname, PGC_POSTMASTER, PGC_S_OVERRIDE);
3569         free(fname);
3570
3571         free(configdir);
3572
3573         return true;
3574 }
3575
3576
3577 /*
3578  * Reset all options to their saved default values (implements RESET ALL)
3579  */
3580 void
3581 ResetAllOptions(void)
3582 {
3583         int                     i;
3584
3585         for (i = 0; i < num_guc_variables; i++)
3586         {
3587                 struct config_generic *gconf = guc_variables[i];
3588
3589                 /* Don't reset non-SET-able values */
3590                 if (gconf->context != PGC_SUSET &&
3591                         gconf->context != PGC_USERSET)
3592                         continue;
3593                 /* Don't reset if special exclusion from RESET ALL */
3594                 if (gconf->flags & GUC_NO_RESET_ALL)
3595                         continue;
3596                 /* No need to reset if wasn't SET */
3597                 if (gconf->source <= PGC_S_OVERRIDE)
3598                         continue;
3599
3600                 /* Save old value to support transaction abort */
3601                 push_old_value(gconf, GUC_ACTION_SET);
3602
3603                 switch (gconf->vartype)
3604                 {
3605                         case PGC_BOOL:
3606                                 {
3607                                         struct config_bool *conf = (struct config_bool *) gconf;
3608
3609                                         if (conf->assign_hook)
3610                                                 if (!(*conf->assign_hook) (conf->reset_val, true,
3611                                                                                                    PGC_S_SESSION))
3612                                                         elog(ERROR, "failed to reset %s to %d",
3613                                                                  conf->gen.name, (int) conf->reset_val);
3614                                         *conf->variable = conf->reset_val;
3615                                         break;
3616                                 }
3617                         case PGC_INT:
3618                                 {
3619                                         struct config_int *conf = (struct config_int *) gconf;
3620
3621                                         if (conf->assign_hook)
3622                                                 if (!(*conf->assign_hook) (conf->reset_val, true,
3623                                                                                                    PGC_S_SESSION))
3624                                                         elog(ERROR, "failed to reset %s to %d",
3625                                                                  conf->gen.name, conf->reset_val);
3626                                         *conf->variable = conf->reset_val;
3627                                         break;
3628                                 }
3629                         case PGC_REAL:
3630                                 {
3631                                         struct config_real *conf = (struct config_real *) gconf;
3632
3633                                         if (conf->assign_hook)
3634                                                 if (!(*conf->assign_hook) (conf->reset_val, true,
3635                                                                                                    PGC_S_SESSION))
3636                                                         elog(ERROR, "failed to reset %s to %g",
3637                                                                  conf->gen.name, conf->reset_val);
3638                                         *conf->variable = conf->reset_val;
3639                                         break;
3640                                 }
3641                         case PGC_STRING:
3642                                 {
3643                                         struct config_string *conf = (struct config_string *) gconf;
3644                                         char       *str;
3645
3646                                         /* We need not strdup here */
3647                                         str = conf->reset_val;
3648
3649                                         if (conf->assign_hook && str)
3650                                         {
3651                                                 const char *newstr;
3652
3653                                                 newstr = (*conf->assign_hook) (str, true,
3654                                                                                                            PGC_S_SESSION);
3655                                                 if (newstr == NULL)
3656                                                         elog(ERROR, "failed to reset %s to \"%s\"",
3657                                                                  conf->gen.name, str);
3658                                                 else if (newstr != str)
3659                                                 {
3660                                                         /*
3661                                                          * See notes in set_config_option about casting
3662                                                          */
3663                                                         str = (char *) newstr;
3664                                                 }
3665                                         }
3666
3667                                         set_string_field(conf, conf->variable, str);
3668                                         break;
3669                                 }
3670                         case PGC_ENUM:
3671                                 {
3672                                         struct config_enum *conf = (struct config_enum *) gconf;
3673
3674                                         if (conf->assign_hook)
3675                                                 if (!(*conf->assign_hook) (conf->reset_val, true,
3676                                                                                                    PGC_S_SESSION))
3677                                                         elog(ERROR, "failed to reset %s to %s",
3678                                                                  conf->gen.name,
3679                                                                  config_enum_lookup_by_value(conf, conf->reset_val));
3680                                         *conf->variable = conf->reset_val;
3681                                         break;
3682                                 }
3683                 }
3684
3685                 gconf->source = gconf->reset_source;
3686
3687                 if (gconf->flags & GUC_REPORT)
3688                         ReportGUCOption(gconf);
3689         }
3690 }
3691
3692
3693 /*
3694  * push_old_value
3695  *              Push previous state during transactional assignment to a GUC variable.
3696  */
3697 static void
3698 push_old_value(struct config_generic * gconf, GucAction action)
3699 {
3700         GucStack   *stack;
3701
3702         /* If we're not inside a nest level, do nothing */
3703         if (GUCNestLevel == 0)
3704                 return;
3705
3706         /* Do we already have a stack entry of the current nest level? */
3707         stack = gconf->stack;
3708         if (stack && stack->nest_level >= GUCNestLevel)
3709         {
3710                 /* Yes, so adjust its state if necessary */
3711                 Assert(stack->nest_level == GUCNestLevel);
3712                 switch (action)
3713                 {
3714                         case GUC_ACTION_SET:
3715                                 /* SET overrides any prior action at same nest level */
3716                                 if (stack->state == GUC_SET_LOCAL)
3717                                 {
3718                                         /* must discard old masked value */
3719                                         discard_stack_value(gconf, &stack->masked);
3720                                 }
3721                                 stack->state = GUC_SET;
3722                                 break;
3723                         case GUC_ACTION_LOCAL:
3724                                 if (stack->state == GUC_SET)
3725                                 {
3726                                         /* SET followed by SET LOCAL, remember SET's value */
3727                                         set_stack_value(gconf, &stack->masked);
3728                                         stack->state = GUC_SET_LOCAL;
3729                                 }
3730                                 /* in all other cases, no change to stack entry */
3731                                 break;
3732                         case GUC_ACTION_SAVE:
3733                                 /* Could only have a prior SAVE of same variable */
3734                                 Assert(stack->state == GUC_SAVE);
3735                                 break;
3736                 }
3737                 Assert(guc_dirty);              /* must be set already */
3738                 return;
3739         }
3740
3741         /*
3742          * Push a new stack entry
3743          *
3744          * We keep all the stack entries in TopTransactionContext for simplicity.
3745          */
3746         stack = (GucStack *) MemoryContextAllocZero(TopTransactionContext,
3747                                                                                                 sizeof(GucStack));
3748
3749         stack->prev = gconf->stack;
3750         stack->nest_level = GUCNestLevel;
3751         switch (action)
3752         {
3753                 case GUC_ACTION_SET:
3754                         stack->state = GUC_SET;
3755                         break;
3756                 case GUC_ACTION_LOCAL:
3757                         stack->state = GUC_LOCAL;
3758                         break;
3759                 case GUC_ACTION_SAVE:
3760                         stack->state = GUC_SAVE;
3761                         break;
3762         }
3763         stack->source = gconf->source;
3764         set_stack_value(gconf, &stack->prior);
3765
3766         gconf->stack = stack;
3767
3768         /* Ensure we remember to pop at end of xact */
3769         guc_dirty = true;
3770 }
3771
3772
3773 /*
3774  * Do GUC processing at main transaction start.
3775  */
3776 void
3777 AtStart_GUC(void)
3778 {
3779         /*
3780          * The nest level should be 0 between transactions; if it isn't, somebody
3781          * didn't call AtEOXact_GUC, or called it with the wrong nestLevel.  We
3782          * throw a warning but make no other effort to clean up.
3783          */
3784         if (GUCNestLevel != 0)
3785                 elog(WARNING, "GUC nest level = %d at transaction start",
3786                          GUCNestLevel);
3787         GUCNestLevel = 1;
3788 }
3789
3790 /*
3791  * Enter a new nesting level for GUC values.  This is called at subtransaction
3792  * start and when entering a function that has proconfig settings.      NOTE that
3793  * we must not risk error here, else subtransaction start will be unhappy.
3794  */
3795 int
3796 NewGUCNestLevel(void)
3797 {
3798         return ++GUCNestLevel;
3799 }
3800
3801 /*
3802  * Do GUC processing at transaction or subtransaction commit or abort, or
3803  * when exiting a function that has proconfig settings.  (The name is thus
3804  * a bit of a misnomer; perhaps it should be ExitGUCNestLevel or some such.)
3805  * During abort, we discard all GUC settings that were applied at nesting
3806  * levels >= nestLevel.  nestLevel == 1 corresponds to the main transaction.
3807  */
3808 void
3809 AtEOXact_GUC(bool isCommit, int nestLevel)
3810 {
3811         bool            still_dirty;
3812         int                     i;
3813
3814         Assert(nestLevel > 0 && nestLevel <= GUCNestLevel);
3815
3816         /* Quick exit if nothing's changed in this transaction */
3817         if (!guc_dirty)
3818         {
3819                 GUCNestLevel = nestLevel - 1;
3820                 return;
3821         }
3822
3823         still_dirty = false;
3824         for (i = 0; i < num_guc_variables; i++)
3825         {
3826                 struct config_generic *gconf = guc_variables[i];
3827                 GucStack   *stack;
3828
3829                 /*
3830                  * Process and pop each stack entry within the nest level.      To
3831                  * simplify fmgr_security_definer(), we allow failure exit from a
3832                  * function-with-SET-options to be recovered at the surrounding
3833                  * transaction or subtransaction abort; so there could be more than
3834                  * one stack entry to pop.
3835                  */
3836                 while ((stack = gconf->stack) != NULL &&
3837                            stack->nest_level >= nestLevel)
3838                 {
3839                         GucStack   *prev = stack->prev;
3840                         bool            restorePrior = false;
3841                         bool            restoreMasked = false;
3842                         bool            changed;
3843
3844                         /*
3845                          * In this next bit, if we don't set either restorePrior or
3846                          * restoreMasked, we must "discard" any unwanted fields of the
3847                          * stack entries to avoid leaking memory.  If we do set one of
3848                          * those flags, unused fields will be cleaned up after restoring.
3849                          */
3850                         if (!isCommit)          /* if abort, always restore prior value */
3851                                 restorePrior = true;
3852                         else if (stack->state == GUC_SAVE)
3853                                 restorePrior = true;
3854                         else if (stack->nest_level == 1)
3855                         {
3856                                 /* transaction commit */
3857                                 if (stack->state == GUC_SET_LOCAL)
3858                                         restoreMasked = true;
3859                                 else if (stack->state == GUC_SET)
3860                                 {
3861                                         /* we keep the current active value */
3862                                         discard_stack_value(gconf, &stack->prior);
3863                                 }
3864                                 else    /* must be GUC_LOCAL */
3865                                         restorePrior = true;
3866                         }
3867                         else if (prev == NULL ||
3868                                          prev->nest_level < stack->nest_level - 1)
3869                         {
3870                                 /* decrement entry's level and do not pop it */
3871                                 stack->nest_level--;
3872                                 continue;
3873                         }
3874                         else
3875                         {
3876                                 /*
3877                                  * We have to merge this stack entry into prev. See README for
3878                                  * discussion of this bit.
3879                                  */
3880                                 switch (stack->state)
3881                                 {
3882                                         case GUC_SAVE:
3883                                                 Assert(false);  /* can't get here */
3884
3885                                         case GUC_SET:
3886                                                 /* next level always becomes SET */
3887                                                 discard_stack_value(gconf, &stack->prior);
3888                                                 if (prev->state == GUC_SET_LOCAL)
3889                                                         discard_stack_value(gconf, &prev->masked);
3890                                                 prev->state = GUC_SET;
3891                                                 break;
3892
3893                                         case GUC_LOCAL:
3894                                                 if (prev->state == GUC_SET)
3895                                                 {
3896                                                         /* LOCAL migrates down */
3897                                                         prev->masked = stack->prior;
3898                                                         prev->state = GUC_SET_LOCAL;
3899                                                 }
3900                                                 else
3901                                                 {
3902                                                         /* else just forget this stack level */
3903                                                         discard_stack_value(gconf, &stack->prior);
3904                                                 }
3905                                                 break;
3906
3907                                         case GUC_SET_LOCAL:
3908                                                 /* prior state at this level no longer wanted */
3909                                                 discard_stack_value(gconf, &stack->prior);
3910                                                 /* copy down the masked state */
3911                                                 if (prev->state == GUC_SET_LOCAL)
3912                                                         discard_stack_value(gconf, &prev->masked);
3913                                                 prev->masked = stack->masked;
3914                                                 prev->state = GUC_SET_LOCAL;
3915                                                 break;
3916                                 }
3917                         }
3918
3919                         changed = false;
3920
3921                         if (restorePrior || restoreMasked)
3922                         {
3923                                 /* Perform appropriate restoration of the stacked value */
3924                                 union config_var_value newvalue;
3925                                 GucSource       newsource;
3926
3927                                 if (restoreMasked)
3928                                 {
3929                                         newvalue = stack->masked;
3930                                         newsource = PGC_S_SESSION;
3931                                 }
3932                                 else
3933                                 {
3934                                         newvalue = stack->prior;
3935                                         newsource = stack->source;
3936                                 }
3937
3938                                 switch (gconf->vartype)
3939                                 {
3940                                         case PGC_BOOL:
3941                                                 {
3942                                                         struct config_bool *conf = (struct config_bool *) gconf;
3943                                                         bool            newval = newvalue.boolval;
3944
3945                                                         if (*conf->variable != newval)
3946                                                         {
3947                                                                 if (conf->assign_hook)
3948                                                                         if (!(*conf->assign_hook) (newval,
3949                                                                                                            true, PGC_S_OVERRIDE))
3950                                                                                 elog(LOG, "failed to commit %s as %d",
3951                                                                                          conf->gen.name, (int) newval);
3952                                                                 *conf->variable = newval;
3953                                                                 changed = true;
3954                                                         }
3955                                                         break;
3956                                                 }
3957                                         case PGC_INT:
3958                                                 {
3959                                                         struct config_int *conf = (struct config_int *) gconf;
3960                                                         int                     newval = newvalue.intval;
3961
3962                                                         if (*conf->variable != newval)
3963                                                         {
3964                                                                 if (conf->assign_hook)
3965                                                                         if (!(*conf->assign_hook) (newval,
3966                                                                                                            true, PGC_S_OVERRIDE))
3967                                                                                 elog(LOG, "failed to commit %s as %d",
3968                                                                                          conf->gen.name, newval);
3969                                                                 *conf->variable = newval;
3970                                                                 changed = true;
3971                                                         }
3972                                                         break;
3973                                                 }
3974                                         case PGC_REAL:
3975                                                 {
3976                                                         struct config_real *conf = (struct config_real *) gconf;
3977                                                         double          newval = newvalue.realval;
3978
3979                                                         if (*conf->variable != newval)
3980                                                         {
3981                                                                 if (conf->assign_hook)
3982                                                                         if (!(*conf->assign_hook) (newval,
3983                                                                                                            true, PGC_S_OVERRIDE))
3984                                                                                 elog(LOG, "failed to commit %s as %g",
3985                                                                                          conf->gen.name, newval);
3986                                                                 *conf->variable = newval;
3987                                                                 changed = true;
3988                                                         }
3989                                                         break;
3990                                                 }
3991                                         case PGC_STRING:
3992                                                 {
3993                                                         struct config_string *conf = (struct config_string *) gconf;
3994                                                         char       *newval = newvalue.stringval;
3995
3996                                                         if (*conf->variable != newval)
3997                                                         {
3998                                                                 if (conf->assign_hook && newval)
3999                                                                 {
4000                                                                         const char *newstr;
4001
4002                                                                         newstr = (*conf->assign_hook) (newval, true,
4003                                                                                                                          PGC_S_OVERRIDE);
4004                                                                         if (newstr == NULL)
4005                                                                                 elog(LOG, "failed to commit %s as \"%s\"",
4006                                                                                          conf->gen.name, newval);
4007                                                                         else if (newstr != newval)
4008                                                                         {
4009                                                                                 /*
4010                                                                                  * If newval should now be freed,
4011                                                                                  * it'll be taken care of below.
4012                                                                                  *
4013                                                                                  * See notes in set_config_option
4014                                                                                  * about casting
4015                                                                                  */
4016                                                                                 newval = (char *) newstr;
4017                                                                         }
4018                                                                 }
4019
4020                                                                 set_string_field(conf, conf->variable, newval);
4021                                                                 changed = true;
4022                                                         }
4023
4024                                                         /*
4025                                                          * Release stacked values if not used anymore. We
4026                                                          * could use discard_stack_value() here, but since
4027                                                          * we have type-specific code anyway, might as
4028                                                          * well inline it.
4029                                                          */
4030                                                         set_string_field(conf, &stack->prior.stringval, NULL);
4031                                                         set_string_field(conf, &stack->masked.stringval, NULL);
4032                                                         break;
4033                                                 }
4034                                         case PGC_ENUM:
4035                                                 {
4036                                                         struct config_enum *conf = (struct config_enum *) gconf;
4037                                                         int                     newval = newvalue.enumval;
4038
4039                                                         if (*conf->variable != newval)
4040                                                         {
4041                                                                 if (conf->assign_hook)
4042                                                                         if (!(*conf->assign_hook) (newval,
4043                                                                                                            true, PGC_S_OVERRIDE))
4044                                                                                 elog(LOG, "failed to commit %s as %s",
4045                                                                                          conf->gen.name,
4046                                                                                          config_enum_lookup_by_value(conf, newval));
4047                                                                 *conf->variable = newval;
4048                                                                 changed = true;
4049                                                         }
4050                                                         break;
4051                                                 }
4052                                 }
4053
4054                                 gconf->source = newsource;
4055                         }
4056
4057                         /* Finish popping the state stack */
4058                         gconf->stack = prev;
4059                         pfree(stack);
4060
4061                         /* Report new value if we changed it */
4062                         if (changed && (gconf->flags & GUC_REPORT))
4063                                 ReportGUCOption(gconf);
4064                 }                                               /* end of stack-popping loop */
4065
4066                 if (stack != NULL)
4067                         still_dirty = true;
4068         }
4069
4070         /* If there are no remaining stack entries, we can reset guc_dirty */
4071         guc_dirty = still_dirty;
4072
4073         /* Update nesting level */
4074         GUCNestLevel = nestLevel - 1;
4075 }
4076
4077
4078 /*
4079  * Start up automatic reporting of changes to variables marked GUC_REPORT.
4080  * This is executed at completion of backend startup.
4081  */
4082 void
4083 BeginReportingGUCOptions(void)
4084 {
4085         int                     i;
4086
4087         /*
4088          * Don't do anything unless talking to an interactive frontend of protocol
4089          * 3.0 or later.
4090          */
4091         if (whereToSendOutput != DestRemote ||
4092                 PG_PROTOCOL_MAJOR(FrontendProtocol) < 3)
4093                 return;
4094
4095         reporting_enabled = true;
4096
4097         /* Transmit initial values of interesting variables */
4098         for (i = 0; i < num_guc_variables; i++)
4099         {
4100                 struct config_generic *conf = guc_variables[i];
4101
4102                 if (conf->flags & GUC_REPORT)
4103                         ReportGUCOption(conf);
4104         }
4105 }
4106
4107 /*
4108  * ReportGUCOption: if appropriate, transmit option value to frontend
4109  */
4110 static void
4111 ReportGUCOption(struct config_generic * record)
4112 {
4113         if (reporting_enabled && (record->flags & GUC_REPORT))
4114         {
4115                 char       *val = _ShowOption(record, false);
4116                 StringInfoData msgbuf;
4117
4118                 pq_beginmessage(&msgbuf, 'S');
4119                 pq_sendstring(&msgbuf, record->name);
4120                 pq_sendstring(&msgbuf, val);
4121                 pq_endmessage(&msgbuf);
4122
4123                 pfree(val);
4124         }
4125 }
4126
4127 /*
4128  * Try to parse value as an integer.  The accepted formats are the
4129  * usual decimal, octal, or hexadecimal formats, optionally followed by
4130  * a unit name if "flags" indicates a unit is allowed.
4131  *
4132  * If the string parses okay, return true, else false.
4133  * If okay and result is not NULL, return the value in *result.
4134  * If not okay and hintmsg is not NULL, *hintmsg is set to a suitable
4135  *      HINT message, or NULL if no hint provided.
4136  */
4137 bool
4138 parse_int(const char *value, int *result, int flags, const char **hintmsg)
4139 {
4140         int64           val;
4141         char       *endptr;
4142
4143         /* To suppress compiler warnings, always set output params */
4144         if (result)
4145                 *result = 0;
4146         if (hintmsg)
4147                 *hintmsg = NULL;
4148
4149         /* We assume here that int64 is at least as wide as long */
4150         errno = 0;
4151         val = strtol(value, &endptr, 0);
4152
4153         if (endptr == value)
4154                 return false;                   /* no HINT for integer syntax error */
4155
4156         if (errno == ERANGE || val != (int64) ((int32) val))
4157         {
4158                 if (hintmsg)
4159                         *hintmsg = gettext_noop("Value exceeds integer range.");
4160                 return false;
4161         }
4162
4163         /* allow whitespace between integer and unit */
4164         while (isspace((unsigned char) *endptr))
4165                 endptr++;
4166
4167         /* Handle possible unit */
4168         if (*endptr != '\0')
4169         {
4170                 /*
4171                  * Note: the multiple-switch coding technique here is a bit tedious,
4172                  * but seems necessary to avoid intermediate-value overflows.
4173                  *
4174                  * If INT64_IS_BUSTED (ie, it's really int32) we will fail to detect
4175                  * overflow due to units conversion, but there are few enough such
4176                  * machines that it does not seem worth trying to be smarter.
4177                  */
4178                 if (flags & GUC_UNIT_MEMORY)
4179                 {
4180                         /* Set hint for use if no match or trailing garbage */
4181                         if (hintmsg)
4182                                 *hintmsg = gettext_noop("Valid units for this parameter are \"kB\", \"MB\", and \"GB\".");
4183
4184 #if BLCKSZ < 1024 || BLCKSZ > (1024*1024)
4185 #error BLCKSZ must be between 1KB and 1MB
4186 #endif
4187 #if XLOG_BLCKSZ < 1024 || XLOG_BLCKSZ > (1024*1024)
4188 #error XLOG_BLCKSZ must be between 1KB and 1MB
4189 #endif
4190
4191                         if (strncmp(endptr, "kB", 2) == 0)
4192                         {
4193                                 endptr += 2;
4194                                 switch (flags & GUC_UNIT_MEMORY)
4195                                 {
4196                                         case GUC_UNIT_BLOCKS:
4197                                                 val /= (BLCKSZ / 1024);
4198                                                 break;
4199                                         case GUC_UNIT_XBLOCKS:
4200                                                 val /= (XLOG_BLCKSZ / 1024);
4201                                                 break;
4202                                 }
4203                         }
4204                         else if (strncmp(endptr, "MB", 2) == 0)
4205                         {
4206                                 endptr += 2;
4207                                 switch (flags & GUC_UNIT_MEMORY)
4208                                 {
4209                                         case GUC_UNIT_KB:
4210                                                 val *= KB_PER_MB;
4211                                                 break;
4212                                         case GUC_UNIT_BLOCKS:
4213                                                 val *= KB_PER_MB / (BLCKSZ / 1024);
4214                                                 break;
4215                                         case GUC_UNIT_XBLOCKS:
4216                                                 val *= KB_PER_MB / (XLOG_BLCKSZ / 1024);
4217                                                 break;
4218                                 }
4219                         }
4220                         else if (strncmp(endptr, "GB", 2) == 0)
4221                         {
4222                                 endptr += 2;
4223                                 switch (flags & GUC_UNIT_MEMORY)
4224                                 {
4225                                         case GUC_UNIT_KB:
4226                                                 val *= KB_PER_GB;
4227                                                 break;
4228                                         case GUC_UNIT_BLOCKS:
4229                                                 val *= KB_PER_GB / (BLCKSZ / 1024);
4230                                                 break;
4231                                         case GUC_UNIT_XBLOCKS:
4232                                                 val *= KB_PER_GB / (XLOG_BLCKSZ / 1024);
4233                                                 break;
4234                                 }
4235                         }
4236                 }
4237                 else if (flags & GUC_UNIT_TIME)
4238                 {
4239                         /* Set hint for use if no match or trailing garbage */
4240                         if (hintmsg)
4241                                 *hintmsg = gettext_noop("Valid units for this parameter are \"ms\", \"s\", \"min\", \"h\", and \"d\".");
4242
4243                         if (strncmp(endptr, "ms", 2) == 0)
4244                         {
4245                                 endptr += 2;
4246                                 switch (flags & GUC_UNIT_TIME)
4247                                 {
4248                                         case GUC_UNIT_S:
4249                                                 val /= MS_PER_S;
4250                                                 break;
4251                                         case GUC_UNIT_MIN:
4252                                                 val /= MS_PER_MIN;
4253                                                 break;
4254                                 }
4255                         }
4256                         else if (strncmp(endptr, "s", 1) == 0)
4257                         {
4258                                 endptr += 1;
4259                                 switch (flags & GUC_UNIT_TIME)
4260                                 {
4261                                         case GUC_UNIT_MS:
4262                                                 val *= MS_PER_S;
4263                                                 break;
4264                                         case GUC_UNIT_MIN:
4265                                                 val /= S_PER_MIN;
4266                                                 break;
4267                                 }
4268                         }
4269                         else if (strncmp(endptr, "min", 3) == 0)
4270                         {
4271                                 endptr += 3;
4272                                 switch (flags & GUC_UNIT_TIME)
4273                                 {
4274                                         case GUC_UNIT_MS:
4275                                                 val *= MS_PER_MIN;
4276                                                 break;
4277                                         case GUC_UNIT_S:
4278                                                 val *= S_PER_MIN;
4279                                                 break;
4280                                 }
4281                         }
4282                         else if (strncmp(endptr, "h", 1) == 0)
4283                         {
4284                                 endptr += 1;
4285                                 switch (flags & GUC_UNIT_TIME)
4286                                 {
4287                                         case GUC_UNIT_MS:
4288                                                 val *= MS_PER_H;
4289                                                 break;
4290                                         case GUC_UNIT_S:
4291                                                 val *= S_PER_H;
4292                                                 break;
4293                                         case GUC_UNIT_MIN:
4294                                                 val *= MIN_PER_H;
4295                                                 break;
4296                                 }
4297                         }
4298                         else if (strncmp(endptr, "d", 1) == 0)
4299                         {
4300                                 endptr += 1;
4301                                 switch (flags & GUC_UNIT_TIME)
4302                                 {
4303                                         case GUC_UNIT_MS:
4304                                                 val *= MS_PER_D;
4305                                                 break;
4306                                         case GUC_UNIT_S:
4307                                                 val *= S_PER_D;
4308                                                 break;
4309                                         case GUC_UNIT_MIN:
4310                                                 val *= MIN_PER_D;
4311                                                 break;
4312                                 }
4313                         }
4314                 }
4315
4316                 /* allow whitespace after unit */
4317                 while (isspace((unsigned char) *endptr))
4318                         endptr++;
4319
4320                 if (*endptr != '\0')
4321                         return false;           /* appropriate hint, if any, already set */
4322
4323                 /* Check for overflow due to units conversion */
4324                 if (val != (int64) ((int32) val))
4325                 {
4326                         if (hintmsg)
4327                                 *hintmsg = gettext_noop("Value exceeds integer range.");
4328                         return false;
4329                 }
4330         }
4331
4332         if (result)
4333                 *result = (int) val;
4334         return true;
4335 }
4336
4337
4338
4339 /*
4340  * Try to parse value as a floating point number in the usual format.
4341  * If the string parses okay, return true, else false.
4342  * If okay and result is not NULL, return the value in *result.
4343  */
4344 bool
4345 parse_real(const char *value, double *result)
4346 {
4347         double          val;
4348         char       *endptr;
4349
4350         if (result)
4351                 *result = 0;                    /* suppress compiler warning */
4352
4353         errno = 0;
4354         val = strtod(value, &endptr);
4355         if (endptr == value || errno == ERANGE)
4356                 return false;
4357
4358         /* allow whitespace after number */
4359         while (isspace((unsigned char) *endptr))
4360                 endptr++;
4361         if (*endptr != '\0')
4362                 return false;
4363
4364         if (result)
4365                 *result = val;
4366         return true;
4367 }
4368
4369
4370 /*
4371  * Lookup the name for an enum option with the selected value.
4372  * Should only ever be called with known-valid values, so throws
4373  * an elog(ERROR) if the enum option is not found.
4374  *
4375  * The returned string is a pointer to static data and not
4376  * allocated for modification.
4377  */
4378 const char *
4379 config_enum_lookup_by_value(struct config_enum * record, int val)
4380 {
4381         const struct config_enum_entry *entry;
4382
4383         for (entry = record->options; entry && entry->name; entry++)
4384         {
4385                 if (entry->val == val)
4386                         return entry->name;
4387         }
4388
4389         elog(ERROR, "could not find enum option %d for %s",
4390                  val, record->gen.name);
4391         return NULL;                            /* silence compiler */
4392 }
4393
4394
4395 /*
4396  * Lookup the value for an enum option with the selected name
4397  * (case-insensitive).
4398  * If the enum option is found, sets the retval value and returns
4399  * true. If it's not found, return FALSE and retval is set to 0.
4400  */
4401 bool
4402 config_enum_lookup_by_name(struct config_enum * record, const char *value,
4403                                                    int *retval)
4404 {
4405         const struct config_enum_entry *entry;
4406
4407         for (entry = record->options; entry && entry->name; entry++)
4408         {
4409                 if (pg_strcasecmp(value, entry->name) == 0)
4410                 {
4411                         *retval = entry->val;
4412                         return TRUE;
4413                 }
4414         }
4415
4416         *retval = 0;
4417         return FALSE;
4418 }
4419
4420
4421 /*
4422  * Return a list of all available options for an enum, excluding
4423  * hidden ones, separated by the given separator.
4424  * If prefix is non-NULL, it is added before the first enum value.
4425  * If suffix is non-NULL, it is added to the end of the string.
4426  */
4427 static char *
4428 config_enum_get_options(struct config_enum * record, const char *prefix,
4429                                                 const char *suffix, const char *separator)
4430 {
4431         const struct config_enum_entry *entry;
4432         StringInfoData retstr;
4433         int                     seplen;
4434
4435         initStringInfo(&retstr);
4436         appendStringInfoString(&retstr, prefix);
4437
4438         seplen = strlen(separator);
4439         for (entry = record->options; entry && entry->name; entry++)
4440         {
4441                 if (!entry->hidden)
4442                 {
4443                         appendStringInfoString(&retstr, entry->name);
4444                         appendBinaryStringInfo(&retstr, separator, seplen);
4445                 }
4446         }
4447
4448         /*
4449          * All the entries may have been hidden, leaving the string empty if no
4450          * prefix was given. This indicates a broken GUC setup, since there is no
4451          * use for an enum without any values, so we just check to make sure we
4452          * don't write to invalid memory instead of actually trying to do
4453          * something smart with it.
4454          */
4455         if (retstr.len >= seplen)
4456         {
4457                 /* Replace final separator */
4458                 retstr.data[retstr.len - seplen] = '\0';
4459                 retstr.len -= seplen;
4460         }
4461
4462         appendStringInfoString(&retstr, suffix);
4463
4464         return retstr.data;
4465 }
4466
4467 /*
4468  * Call a GucStringAssignHook function, being careful to free the
4469  * "newval" string if the hook ereports.
4470  *
4471  * This is split out of set_config_option just to avoid the "volatile"
4472  * qualifiers that would otherwise have to be plastered all over.
4473  */
4474 static const char *
4475 call_string_assign_hook(GucStringAssignHook assign_hook,
4476                                                 char *newval, bool doit, GucSource source)
4477 {
4478         const char *result;
4479
4480         PG_TRY();
4481         {
4482                 result = (*assign_hook) (newval, doit, source);
4483         }
4484         PG_CATCH();
4485         {
4486                 free(newval);
4487                 PG_RE_THROW();
4488         }
4489         PG_END_TRY();
4490
4491         return result;
4492 }
4493
4494
4495 /*
4496  * Sets option `name' to given value. The value should be a string
4497  * which is going to be parsed and converted to the appropriate data
4498  * type.  The context and source parameters indicate in which context this
4499  * function is being called so it can apply the access restrictions
4500  * properly.
4501  *
4502  * If value is NULL, set the option to its default value (normally the
4503  * reset_val, but if source == PGC_S_DEFAULT we instead use the boot_val).
4504  *
4505  * action indicates whether to set the value globally in the session, locally
4506  * to the current top transaction, or just for the duration of a function call.
4507  *
4508  * If changeVal is false then don't really set the option but do all
4509  * the checks to see if it would work.
4510  *
4511  * If there is an error (non-existing option, invalid value) then an
4512  * ereport(ERROR) is thrown *unless* this is called in a context where we
4513  * don't want to ereport (currently, startup or SIGHUP config file reread).
4514  * In that case we write a suitable error message via ereport(LOG) and
4515  * return false. This is working around the deficiencies in the ereport
4516  * mechanism, so don't blame me.  In all other cases, the function
4517  * returns true, including cases where the input is valid but we chose
4518  * not to apply it because of context or source-priority considerations.
4519  *
4520  * See also SetConfigOption for an external interface.
4521  */
4522 bool
4523 set_config_option(const char *name, const char *value,
4524                                   GucContext context, GucSource source,
4525                                   GucAction action, bool changeVal)
4526 {
4527         struct config_generic *record;
4528         int                     elevel;
4529         bool            makeDefault;
4530
4531         if (context == PGC_SIGHUP || source == PGC_S_DEFAULT)
4532         {
4533                 /*
4534                  * To avoid cluttering the log, only the postmaster bleats loudly
4535                  * about problems with the config file.
4536                  */
4537                 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
4538         }
4539         else if (source == PGC_S_DATABASE || source == PGC_S_USER)
4540                 elevel = WARNING;
4541         else
4542                 elevel = ERROR;
4543
4544         record = find_option(name, true, elevel);
4545         if (record == NULL)
4546         {
4547                 ereport(elevel,
4548                                 (errcode(ERRCODE_UNDEFINED_OBJECT),
4549                            errmsg("unrecognized configuration parameter \"%s\"", name)));
4550                 return false;
4551         }
4552
4553         /*
4554          * If source is postgresql.conf, mark the found record with
4555          * GUC_IS_IN_FILE. This is for the convenience of ProcessConfigFile.  Note
4556          * that we do it even if changeVal is false, since ProcessConfigFile wants
4557          * the marking to occur during its testing pass.
4558          */
4559         if (source == PGC_S_FILE)
4560                 record->status |= GUC_IS_IN_FILE;
4561
4562         /*
4563          * Check if the option can be set at this time. See guc.h for the precise
4564          * rules. Note that we don't want to throw errors if we're in the SIGHUP
4565          * context. In that case we just ignore the attempt and return true.
4566          */
4567         switch (record->context)
4568         {
4569                 case PGC_INTERNAL:
4570                         if (context == PGC_SIGHUP)
4571                                 return true;
4572                         if (context != PGC_INTERNAL)
4573                         {
4574                                 ereport(elevel,
4575                                                 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4576                                                  errmsg("parameter \"%s\" cannot be changed",
4577                                                                 name)));
4578                                 return false;
4579                         }
4580                         break;
4581                 case PGC_POSTMASTER:
4582                         if (context == PGC_SIGHUP)
4583                         {
4584                                 /*
4585                                  * We are reading a PGC_POSTMASTER var from postgresql.conf.
4586                                  * We can't change the setting, so give a warning if the DBA
4587                                  * tries to change it.  (Throwing an error would be more
4588                                  * consistent, but seems overly rigid.)
4589                                  */
4590                                 if (changeVal && !is_newvalue_equal(record, value))
4591                                         ereport(elevel,
4592                                                         (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4593                                            errmsg("attempted change of parameter \"%s\" ignored",
4594                                                           name),
4595                                                          errdetail("This parameter cannot be changed after server start.")));
4596                                 return true;
4597                         }
4598                         if (context != PGC_POSTMASTER)
4599                         {
4600                                 ereport(elevel,
4601                                                 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4602                                            errmsg("attempted change of parameter \"%s\" ignored",
4603                                                           name),
4604                                                  errdetail("This parameter cannot be changed after server start.")));
4605                                 return false;
4606                         }
4607                         break;
4608                 case PGC_SIGHUP:
4609                         if (context != PGC_SIGHUP && context != PGC_POSTMASTER)
4610                         {
4611                                 ereport(elevel,
4612                                                 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4613                                                  errmsg("parameter \"%s\" cannot be changed now",
4614                                                                 name)));
4615                                 return false;
4616                         }
4617
4618                         /*
4619                          * Hmm, the idea of the SIGHUP context is "ought to be global, but
4620                          * can be changed after postmaster start". But there's nothing
4621                          * that prevents a crafty administrator from sending SIGHUP
4622                          * signals to individual backends only.
4623                          */
4624                         break;
4625                 case PGC_BACKEND:
4626                         if (context == PGC_SIGHUP)
4627                         {
4628                                 /*
4629                                  * If a PGC_BACKEND parameter is changed in the config file,
4630                                  * we want to accept the new value in the postmaster (whence
4631                                  * it will propagate to subsequently-started backends), but
4632                                  * ignore it in existing backends.      This is a tad klugy, but
4633                                  * necessary because we don't re-read the config file during
4634                                  * backend start.
4635                                  */
4636                                 if (IsUnderPostmaster)
4637                                         return true;
4638                         }
4639                         else if (context != PGC_POSTMASTER && context != PGC_BACKEND &&
4640                                          source != PGC_S_CLIENT)
4641                         {
4642                                 ereport(elevel,
4643                                                 (errcode(ERRCODE_CANT_CHANGE_RUNTIME_PARAM),
4644                                                  errmsg("parameter \"%s\" cannot be set after connection start",
4645                                                                 name)));
4646                                 return false;
4647                         }
4648                         break;
4649                 case PGC_SUSET:
4650                         if (context == PGC_USERSET || context == PGC_BACKEND)
4651                         {
4652                                 ereport(elevel,
4653                                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4654                                                  errmsg("permission denied to set parameter \"%s\"",
4655                                                                 name)));
4656                                 return false;
4657                         }
4658                         break;
4659                 case PGC_USERSET:
4660                         /* always okay */
4661                         break;
4662         }
4663
4664         /*
4665          * Disallow changing GUC_NOT_WHILE_SEC_DEF values if we are inside a
4666          * security-definer function.  We can reject this regardless of
4667          * the context or source, mainly because sources that it might be
4668          * reasonable to override for won't be seen while inside a function.
4669          *
4670          * Note: variables marked GUC_NOT_WHILE_SEC_DEF should probably be marked
4671          * GUC_NO_RESET_ALL as well, because ResetAllOptions() doesn't check this.
4672          *
4673          * Note: this flag is currently used for "session_authorization" and
4674          * "role".  We need to prohibit this because when we exit the sec-def
4675          * context, GUC won't be notified, leaving things out of sync.
4676          *
4677          * XXX it would be nice to allow these cases in future, with the behavior
4678          * being that the SET's effects end when the security definer context is
4679          * exited.
4680          */
4681         if ((record->flags & GUC_NOT_WHILE_SEC_DEF) && InSecurityDefinerContext())
4682         {
4683                 ereport(elevel,
4684                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
4685                                  errmsg("cannot set parameter \"%s\" within security-definer function",
4686                                                 name)));
4687                 return false;
4688         }
4689
4690         /*
4691          * Should we set reset/stacked values?  (If so, the behavior is not
4692          * transactional.)      This is done either when we get a default value from
4693          * the database's/user's/client's default settings or when we reset a
4694          * value to its default.
4695          */
4696         makeDefault = changeVal && (source <= PGC_S_OVERRIDE) &&
4697                 ((value != NULL) || source == PGC_S_DEFAULT);
4698
4699         /*
4700          * Ignore attempted set if overridden by previously processed setting.
4701          * However, if changeVal is false then plow ahead anyway since we are
4702          * trying to find out if the value is potentially good, not actually use
4703          * it. Also keep going if makeDefault is true, since we may want to set
4704          * the reset/stacked values even if we can't set the variable itself.
4705          */
4706         if (record->source > source)
4707         {
4708                 if (changeVal && !makeDefault)
4709                 {
4710                         elog(DEBUG3, "\"%s\": setting ignored because previous source is higher priority",
4711                                  name);
4712                         return true;
4713                 }
4714                 changeVal = false;
4715         }
4716
4717         /*
4718          * Evaluate value and set variable.
4719          */
4720         switch (record->vartype)
4721         {
4722                 case PGC_BOOL:
4723                         {
4724                                 struct config_bool *conf = (struct config_bool *) record;
4725                                 bool            newval;
4726
4727                                 if (value)
4728                                 {
4729                                         if (!parse_bool(value, &newval))
4730                                         {
4731                                                 ereport(elevel,
4732                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4733                                                   errmsg("parameter \"%s\" requires a Boolean value",
4734                                                                  name)));
4735                                                 return false;
4736                                         }
4737                                 }
4738                                 else if (source == PGC_S_DEFAULT)
4739                                         newval = conf->boot_val;
4740                                 else
4741                                 {
4742                                         newval = conf->reset_val;
4743                                         source = conf->gen.reset_source;
4744                                 }
4745
4746                                 /* Save old value to support transaction abort */
4747                                 if (changeVal && !makeDefault)
4748                                         push_old_value(&conf->gen, action);
4749
4750                                 if (conf->assign_hook)
4751                                         if (!(*conf->assign_hook) (newval, changeVal, source))
4752                                         {
4753                                                 ereport(elevel,
4754                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4755                                                          errmsg("invalid value for parameter \"%s\": %d",
4756                                                                         name, (int) newval)));
4757                                                 return false;
4758                                         }
4759
4760                                 if (changeVal)
4761                                 {
4762                                         *conf->variable = newval;
4763                                         conf->gen.source = source;
4764                                 }
4765                                 if (makeDefault)
4766                                 {
4767                                         GucStack   *stack;
4768
4769                                         if (conf->gen.reset_source <= source)
4770                                         {
4771                                                 conf->reset_val = newval;
4772                                                 conf->gen.reset_source = source;
4773                                         }
4774                                         for (stack = conf->gen.stack; stack; stack = stack->prev)
4775                                         {
4776                                                 if (stack->source <= source)
4777                                                 {
4778                                                         stack->prior.boolval = newval;
4779                                                         stack->source = source;
4780                                                 }
4781                                         }
4782                                 }
4783                                 break;
4784                         }
4785
4786                 case PGC_INT:
4787                         {
4788                                 struct config_int *conf = (struct config_int *) record;
4789                                 int                     newval;
4790
4791                                 if (value)
4792                                 {
4793                                         const char *hintmsg;
4794
4795                                         if (!parse_int(value, &newval, conf->gen.flags, &hintmsg))
4796                                         {
4797                                                 ereport(elevel,
4798                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4799                                                  errmsg("invalid value for parameter \"%s\": \"%s\"",
4800                                                                 name, value),
4801                                                                  hintmsg ? errhint("%s", _(hintmsg)) : 0));
4802                                                 return false;
4803                                         }
4804                                         if (newval < conf->min || newval > conf->max)
4805                                         {
4806                                                 ereport(elevel,
4807                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4808                                                                  errmsg("%d is outside the valid range for parameter \"%s\" (%d .. %d)",
4809                                                                                 newval, name, conf->min, conf->max)));
4810                                                 return false;
4811                                         }
4812                                 }
4813                                 else if (source == PGC_S_DEFAULT)
4814                                         newval = conf->boot_val;
4815                                 else
4816                                 {
4817                                         newval = conf->reset_val;
4818                                         source = conf->gen.reset_source;
4819                                 }
4820
4821                                 /* Save old value to support transaction abort */
4822                                 if (changeVal && !makeDefault)
4823                                         push_old_value(&conf->gen, action);
4824
4825                                 if (conf->assign_hook)
4826                                         if (!(*conf->assign_hook) (newval, changeVal, source))
4827                                         {
4828                                                 ereport(elevel,
4829                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4830                                                          errmsg("invalid value for parameter \"%s\": %d",
4831                                                                         name, newval)));
4832                                                 return false;
4833                                         }
4834
4835                                 if (changeVal)
4836                                 {
4837                                         *conf->variable = newval;
4838                                         conf->gen.source = source;
4839                                 }
4840                                 if (makeDefault)
4841                                 {
4842                                         GucStack   *stack;
4843
4844                                         if (conf->gen.reset_source <= source)
4845                                         {
4846                                                 conf->reset_val = newval;
4847                                                 conf->gen.reset_source = source;
4848                                         }
4849                                         for (stack = conf->gen.stack; stack; stack = stack->prev)
4850                                         {
4851                                                 if (stack->source <= source)
4852                                                 {
4853                                                         stack->prior.intval = newval;
4854                                                         stack->source = source;
4855                                                 }
4856                                         }
4857                                 }
4858                                 break;
4859                         }
4860
4861                 case PGC_REAL:
4862                         {
4863                                 struct config_real *conf = (struct config_real *) record;
4864                                 double          newval;
4865
4866                                 if (value)
4867                                 {
4868                                         if (!parse_real(value, &newval))
4869                                         {
4870                                                 ereport(elevel,
4871                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4872                                                   errmsg("parameter \"%s\" requires a numeric value",
4873                                                                  name)));
4874                                                 return false;
4875                                         }
4876                                         if (newval < conf->min || newval > conf->max)
4877                                         {
4878                                                 ereport(elevel,
4879                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4880                                                                  errmsg("%g is outside the valid range for parameter \"%s\" (%g .. %g)",
4881                                                                                 newval, name, conf->min, conf->max)));
4882                                                 return false;
4883                                         }
4884                                 }
4885                                 else if (source == PGC_S_DEFAULT)
4886                                         newval = conf->boot_val;
4887                                 else
4888                                 {
4889                                         newval = conf->reset_val;
4890                                         source = conf->gen.reset_source;
4891                                 }
4892
4893                                 /* Save old value to support transaction abort */
4894                                 if (changeVal && !makeDefault)
4895                                         push_old_value(&conf->gen, action);
4896
4897                                 if (conf->assign_hook)
4898                                         if (!(*conf->assign_hook) (newval, changeVal, source))
4899                                         {
4900                                                 ereport(elevel,
4901                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
4902                                                          errmsg("invalid value for parameter \"%s\": %g",
4903                                                                         name, newval)));
4904                                                 return false;
4905                                         }
4906
4907                                 if (changeVal)
4908                                 {
4909                                         *conf->variable = newval;
4910                                         conf->gen.source = source;
4911                                 }
4912                                 if (makeDefault)
4913                                 {
4914                                         GucStack   *stack;
4915
4916                                         if (conf->gen.reset_source <= source)
4917                                         {
4918                                                 conf->reset_val = newval;
4919                                                 conf->gen.reset_source = source;
4920                                         }
4921                                         for (stack = conf->gen.stack; stack; stack = stack->prev)
4922                                         {
4923                                                 if (stack->source <= source)
4924                                                 {
4925                                                         stack->prior.realval = newval;
4926                                                         stack->source = source;
4927                                                 }
4928                                         }
4929                                 }
4930                                 break;
4931                         }
4932
4933                 case PGC_STRING:
4934                         {
4935                                 struct config_string *conf = (struct config_string *) record;
4936                                 char       *newval;
4937
4938                                 if (value)
4939                                 {
4940                                         newval = guc_strdup(elevel, value);
4941                                         if (newval == NULL)
4942                                                 return false;
4943
4944                                         /*
4945                                          * The only sort of "parsing" check we need to do is apply
4946                                          * truncation if GUC_IS_NAME.
4947                                          */
4948                                         if (conf->gen.flags & GUC_IS_NAME)
4949                                                 truncate_identifier(newval, strlen(newval), true);
4950                                 }
4951                                 else if (source == PGC_S_DEFAULT)
4952                                 {
4953                                         if (conf->boot_val == NULL)
4954                                                 newval = NULL;
4955                                         else
4956                                         {
4957                                                 newval = guc_strdup(elevel, conf->boot_val);
4958                                                 if (newval == NULL)
4959                                                         return false;
4960                                         }
4961                                 }
4962                                 else
4963                                 {
4964                                         /*
4965                                          * We could possibly avoid strdup here, but easier to make
4966                                          * this case work the same as the normal assignment case;
4967                                          * note the possible free of newval below.
4968                                          */
4969                                         if (conf->reset_val == NULL)
4970                                                 newval = NULL;
4971                                         else
4972                                         {
4973                                                 newval = guc_strdup(elevel, conf->reset_val);
4974                                                 if (newval == NULL)
4975                                                         return false;
4976                                         }
4977                                         source = conf->gen.reset_source;
4978                                 }
4979
4980                                 /* Save old value to support transaction abort */
4981                                 if (changeVal && !makeDefault)
4982                                         push_old_value(&conf->gen, action);
4983
4984                                 if (conf->assign_hook && newval)
4985                                 {
4986                                         const char *hookresult;
4987
4988                                         /*
4989                                          * If the hook ereports, we have to make sure we free
4990                                          * newval, else it will be a permanent memory leak.
4991                                          */
4992                                         hookresult = call_string_assign_hook(conf->assign_hook,
4993                                                                                                                  newval,
4994                                                                                                                  changeVal,
4995                                                                                                                  source);
4996                                         if (hookresult == NULL)
4997                                         {
4998                                                 free(newval);
4999                                                 ereport(elevel,
5000                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5001                                                  errmsg("invalid value for parameter \"%s\": \"%s\"",
5002                                                                 name, value ? value : "")));
5003                                                 return false;
5004                                         }
5005                                         else if (hookresult != newval)
5006                                         {
5007                                                 free(newval);
5008
5009                                                 /*
5010                                                  * Having to cast away const here is annoying, but the
5011                                                  * alternative is to declare assign_hooks as returning
5012                                                  * char*, which would mean they'd have to cast away
5013                                                  * const, or as both taking and returning char*, which
5014                                                  * doesn't seem attractive either --- we don't want
5015                                                  * them to scribble on the passed str.
5016                                                  */
5017                                                 newval = (char *) hookresult;
5018                                         }
5019                                 }
5020
5021                                 if (changeVal)
5022                                 {
5023                                         set_string_field(conf, conf->variable, newval);
5024                                         conf->gen.source = source;
5025                                 }
5026                                 if (makeDefault)
5027                                 {
5028                                         GucStack   *stack;
5029
5030                                         if (conf->gen.reset_source <= source)
5031                                         {
5032                                                 set_string_field(conf, &conf->reset_val, newval);
5033                                                 conf->gen.reset_source = source;
5034                                         }
5035                                         for (stack = conf->gen.stack; stack; stack = stack->prev)
5036                                         {
5037                                                 if (stack->source <= source)
5038                                                 {
5039                                                         set_string_field(conf, &stack->prior.stringval,
5040                                                                                          newval);
5041                                                         stack->source = source;
5042                                                 }
5043                                         }
5044                                 }
5045                                 /* Perhaps we didn't install newval anywhere */
5046                                 if (newval && !string_field_used(conf, newval))
5047                                         free(newval);
5048                                 break;
5049                         }
5050                 case PGC_ENUM:
5051                         {
5052                                 struct config_enum *conf = (struct config_enum *) record;
5053                                 int                     newval;
5054
5055                                 if (value)
5056                                 {
5057                                         if (!config_enum_lookup_by_name(conf, value, &newval))
5058                                         {
5059                                                 char       *hintmsg;
5060
5061                                                 hintmsg = config_enum_get_options(conf,
5062                                                                                                                 "Available values: ",
5063                                                                                                                   ".", ", ");
5064
5065                                                 ereport(elevel,
5066                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5067                                                  errmsg("invalid value for parameter \"%s\": \"%s\"",
5068                                                                 name, value),
5069                                                                  hintmsg ? errhint("%s", _(hintmsg)) : 0));
5070
5071                                                 if (hintmsg)
5072                                                         pfree(hintmsg);
5073                                                 return false;
5074                                         }
5075                                 }
5076                                 else if (source == PGC_S_DEFAULT)
5077                                         newval = conf->boot_val;
5078                                 else
5079                                 {
5080                                         newval = conf->reset_val;
5081                                         source = conf->gen.reset_source;
5082                                 }
5083
5084                                 /* Save old value to support transaction abort */
5085                                 if (changeVal && !makeDefault)
5086                                         push_old_value(&conf->gen, action);
5087
5088                                 if (conf->assign_hook)
5089                                         if (!(*conf->assign_hook) (newval, changeVal, source))
5090                                         {
5091                                                 ereport(elevel,
5092                                                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5093                                                  errmsg("invalid value for parameter \"%s\": \"%s\"",
5094                                                                 name,
5095                                                                 config_enum_lookup_by_value(conf, newval))));
5096                                                 return false;
5097                                         }
5098
5099                                 if (changeVal)
5100                                 {
5101                                         *conf->variable = newval;
5102                                         conf->gen.source = source;
5103                                 }
5104                                 if (makeDefault)
5105                                 {
5106                                         GucStack   *stack;
5107
5108                                         if (conf->gen.reset_source <= source)
5109                                         {
5110                                                 conf->reset_val = newval;
5111                                                 conf->gen.reset_source = source;
5112                                         }
5113                                         for (stack = conf->gen.stack; stack; stack = stack->prev)
5114                                         {
5115                                                 if (stack->source <= source)
5116                                                 {
5117                                                         stack->prior.enumval = newval;
5118                                                         stack->source = source;
5119                                                 }
5120                                         }
5121                                 }
5122                                 break;
5123                         }
5124         }
5125
5126         if (changeVal && (record->flags & GUC_REPORT))
5127                 ReportGUCOption(record);
5128
5129         return true;
5130 }
5131
5132
5133 /*
5134  * Set the fields for source file and line number the setting came from.
5135  */
5136 static void
5137 set_config_sourcefile(const char *name, char *sourcefile, int sourceline)
5138 {
5139         struct config_generic *record;
5140         int                     elevel;
5141
5142         /*
5143          * To avoid cluttering the log, only the postmaster bleats loudly about
5144          * problems with the config file.
5145          */
5146         elevel = IsUnderPostmaster ? DEBUG3 : LOG;
5147
5148         record = find_option(name, true, elevel);
5149         /* should not happen */
5150         if (record == NULL)
5151                 elog(ERROR, "unrecognized configuration parameter \"%s\"", name);
5152
5153         sourcefile = guc_strdup(elevel, sourcefile);
5154         if (record->sourcefile)
5155                 free(record->sourcefile);
5156         record->sourcefile = sourcefile;
5157         record->sourceline = sourceline;
5158 }
5159
5160 /*
5161  * Set a config option to the given value. See also set_config_option,
5162  * this is just the wrapper to be called from outside GUC.      NB: this
5163  * is used only for non-transactional operations.
5164  *
5165  * Note: there is no support here for setting source file/line, as it
5166  * is currently not needed.
5167  */
5168 void
5169 SetConfigOption(const char *name, const char *value,
5170                                 GucContext context, GucSource source)
5171 {
5172         (void) set_config_option(name, value, context, source,
5173                                                          GUC_ACTION_SET, true);
5174 }
5175
5176
5177
5178 /*
5179  * Fetch the current value of the option `name'. If the option doesn't exist,
5180  * throw an ereport and don't return.
5181  *
5182  * The string is *not* allocated for modification and is really only
5183  * valid until the next call to configuration related functions.
5184  */
5185 const char *
5186 GetConfigOption(const char *name)
5187 {
5188         struct config_generic *record;
5189         static char buffer[256];
5190
5191         record = find_option(name, false, ERROR);
5192         if (record == NULL)
5193                 ereport(ERROR,
5194                                 (errcode(ERRCODE_UNDEFINED_OBJECT),
5195                            errmsg("unrecognized configuration parameter \"%s\"", name)));
5196         if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
5197                 ereport(ERROR,
5198                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
5199                                  errmsg("must be superuser to examine \"%s\"", name)));
5200
5201         switch (record->vartype)
5202         {
5203                 case PGC_BOOL:
5204                         return *((struct config_bool *) record)->variable ? "on" : "off";
5205
5206                 case PGC_INT:
5207                         snprintf(buffer, sizeof(buffer), "%d",
5208                                          *((struct config_int *) record)->variable);
5209                         return buffer;
5210
5211                 case PGC_REAL:
5212                         snprintf(buffer, sizeof(buffer), "%g",
5213                                          *((struct config_real *) record)->variable);
5214                         return buffer;
5215
5216                 case PGC_STRING:
5217                         return *((struct config_string *) record)->variable;
5218
5219                 case PGC_ENUM:
5220                         return config_enum_lookup_by_value((struct config_enum *) record,
5221                                                                  *((struct config_enum *) record)->variable);
5222         }
5223         return NULL;
5224 }
5225
5226 /*
5227  * Get the RESET value associated with the given option.
5228  *
5229  * Note: this is not re-entrant, due to use of static result buffer;
5230  * not to mention that a string variable could have its reset_val changed.
5231  * Beware of assuming the result value is good for very long.
5232  */
5233 const char *
5234 GetConfigOptionResetString(const char *name)
5235 {
5236         struct config_generic *record;
5237         static char buffer[256];
5238
5239         record = find_option(name, false, ERROR);
5240         if (record == NULL)
5241                 ereport(ERROR,
5242                                 (errcode(ERRCODE_UNDEFINED_OBJECT),
5243                            errmsg("unrecognized configuration parameter \"%s\"", name)));
5244         if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
5245                 ereport(ERROR,
5246                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
5247                                  errmsg("must be superuser to examine \"%s\"", name)));
5248
5249         switch (record->vartype)
5250         {
5251                 case PGC_BOOL:
5252                         return ((struct config_bool *) record)->reset_val ? "on" : "off";
5253
5254                 case PGC_INT:
5255                         snprintf(buffer, sizeof(buffer), "%d",
5256                                          ((struct config_int *) record)->reset_val);
5257                         return buffer;
5258
5259                 case PGC_REAL:
5260                         snprintf(buffer, sizeof(buffer), "%g",
5261                                          ((struct config_real *) record)->reset_val);
5262                         return buffer;
5263
5264                 case PGC_STRING:
5265                         return ((struct config_string *) record)->reset_val;
5266
5267                 case PGC_ENUM:
5268                         return config_enum_lookup_by_value((struct config_enum *) record,
5269                                                                  ((struct config_enum *) record)->reset_val);
5270         }
5271         return NULL;
5272 }
5273
5274
5275 /*
5276  * GUC_complaint_elevel
5277  *              Get the ereport error level to use in an assign_hook's error report.
5278  *
5279  * This should be used by assign hooks that want to emit a custom error
5280  * report (in addition to the generic "invalid value for option FOO" that
5281  * guc.c will provide).  Note that the result might be ERROR or a lower
5282  * level, so the caller must be prepared for control to return from ereport,
5283  * or not.      If control does return, return false/NULL from the hook function.
5284  *
5285  * At some point it'd be nice to replace this with a mechanism that allows
5286  * the custom message to become the DETAIL line of guc.c's generic message.
5287  */
5288 int
5289 GUC_complaint_elevel(GucSource source)
5290 {
5291         int                     elevel;
5292
5293         if (source == PGC_S_FILE)
5294         {
5295                 /*
5296                  * To avoid cluttering the log, only the postmaster bleats loudly
5297                  * about problems with the config file.
5298                  */
5299                 elevel = IsUnderPostmaster ? DEBUG3 : LOG;
5300         }
5301         else if (source == PGC_S_OVERRIDE)
5302         {
5303                 /*
5304                  * If we're a postmaster child, this is probably "undo" during
5305                  * transaction abort, so we don't want to clutter the log.  There's a
5306                  * small chance of a real problem with an OVERRIDE setting, though, so
5307                  * suppressing the message entirely wouldn't be desirable.
5308                  */
5309                 elevel = IsUnderPostmaster ? DEBUG5 : LOG;
5310         }
5311         else if (source < PGC_S_INTERACTIVE)
5312                 elevel = LOG;
5313         else
5314                 elevel = ERROR;
5315
5316         return elevel;
5317 }
5318
5319
5320 /*
5321  * flatten_set_variable_args
5322  *              Given a parsenode List as emitted by the grammar for SET,
5323  *              convert to the flat string representation used by GUC.
5324  *
5325  * We need to be told the name of the variable the args are for, because
5326  * the flattening rules vary (ugh).
5327  *
5328  * The result is NULL if args is NIL (ie, SET ... TO DEFAULT), otherwise
5329  * a palloc'd string.
5330  */
5331 static char *
5332 flatten_set_variable_args(const char *name, List *args)
5333 {
5334         struct config_generic *record;
5335         int                     flags;
5336         StringInfoData buf;
5337         ListCell   *l;
5338
5339         /* Fast path if just DEFAULT */
5340         if (args == NIL)
5341                 return NULL;
5342
5343         /* Else get flags for the variable */
5344         record = find_option(name, true, ERROR);
5345         if (record == NULL)
5346                 ereport(ERROR,
5347                                 (errcode(ERRCODE_UNDEFINED_OBJECT),
5348                            errmsg("unrecognized configuration parameter \"%s\"", name)));
5349
5350         flags = record->flags;
5351
5352         /* Complain if list input and non-list variable */
5353         if ((flags & GUC_LIST_INPUT) == 0 &&
5354                 list_length(args) != 1)
5355                 ereport(ERROR,
5356                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
5357                                  errmsg("SET %s takes only one argument", name)));
5358
5359         initStringInfo(&buf);
5360
5361         /*
5362          * Each list member may be a plain A_Const node, or an A_Const within a
5363          * TypeCast; the latter case is supported only for ConstInterval arguments
5364          * (for SET TIME ZONE).
5365          */
5366         foreach(l, args)
5367         {
5368                 Node       *arg = (Node *) lfirst(l);
5369                 char       *val;
5370                 TypeName   *typeName = NULL;
5371                 A_Const    *con;
5372
5373                 if (l != list_head(args))
5374                         appendStringInfo(&buf, ", ");
5375
5376                 if (IsA(arg, TypeCast))
5377                 {
5378                         TypeCast   *tc = (TypeCast *) arg;
5379
5380                         arg = tc->arg;
5381                         typeName = tc->typeName;
5382                 }
5383
5384                 if (!IsA(arg, A_Const))
5385                         elog(ERROR, "unrecognized node type: %d", (int) nodeTag(arg));
5386                 con = (A_Const *) arg;
5387
5388                 switch (nodeTag(&con->val))
5389                 {
5390                         case T_Integer:
5391                                 appendStringInfo(&buf, "%ld", intVal(&con->val));
5392                                 break;
5393                         case T_Float:
5394                                 /* represented as a string, so just copy it */
5395                                 appendStringInfoString(&buf, strVal(&con->val));
5396                                 break;
5397                         case T_String:
5398                                 val = strVal(&con->val);
5399                                 if (typeName != NULL)
5400                                 {
5401                                         /*
5402                                          * Must be a ConstInterval argument for TIME ZONE. Coerce
5403                                          * to interval and back to normalize the value and account
5404                                          * for any typmod.
5405                                          */
5406                                         Oid                     typoid;
5407                                         int32           typmod;
5408                                         Datum           interval;
5409                                         char       *intervalout;
5410
5411                                         typoid = typenameTypeId(NULL, typeName, &typmod);
5412                                         Assert(typoid == INTERVALOID);
5413
5414                                         interval =
5415                                                 DirectFunctionCall3(interval_in,
5416                                                                                         CStringGetDatum(val),
5417                                                                                         ObjectIdGetDatum(InvalidOid),
5418                                                                                         Int32GetDatum(typmod));
5419
5420                                         intervalout =
5421                                                 DatumGetCString(DirectFunctionCall1(interval_out,
5422                                                                                                                         interval));
5423                                         appendStringInfo(&buf, "INTERVAL '%s'", intervalout);
5424                                 }
5425                                 else
5426                                 {
5427                                         /*
5428                                          * Plain string literal or identifier.  For quote mode,
5429                                          * quote it if it's not a vanilla identifier.
5430                                          */
5431                                         if (flags & GUC_LIST_QUOTE)
5432                                                 appendStringInfoString(&buf, quote_identifier(val));
5433                                         else
5434                                                 appendStringInfoString(&buf, val);
5435                                 }
5436                                 break;
5437                         default:
5438                                 elog(ERROR, "unrecognized node type: %d",
5439                                          (int) nodeTag(&con->val));
5440                                 break;
5441                 }
5442         }
5443
5444         return buf.data;
5445 }
5446
5447
5448 /*
5449  * SET command
5450  */
5451 void
5452 ExecSetVariableStmt(VariableSetStmt *stmt)
5453 {
5454         GucAction       action = stmt->is_local ? GUC_ACTION_LOCAL : GUC_ACTION_SET;
5455
5456         switch (stmt->kind)
5457         {
5458                 case VAR_SET_VALUE:
5459                 case VAR_SET_CURRENT:
5460                         set_config_option(stmt->name,
5461                                                           ExtractSetVariableArgs(stmt),
5462                                                           (superuser() ? PGC_SUSET : PGC_USERSET),
5463                                                           PGC_S_SESSION,
5464                                                           action,
5465                                                           true);
5466                         break;
5467                 case VAR_SET_MULTI:
5468
5469                         /*
5470                          * Special case for special SQL syntax that effectively sets more
5471                          * than one variable per statement.
5472                          */
5473                         if (strcmp(stmt->name, "TRANSACTION") == 0)
5474                         {
5475                                 ListCell   *head;
5476
5477                                 foreach(head, stmt->args)
5478                                 {
5479                                         DefElem    *item = (DefElem *) lfirst(head);
5480
5481                                         if (strcmp(item->defname, "transaction_isolation") == 0)
5482                                                 SetPGVariable("transaction_isolation",
5483                                                                           list_make1(item->arg), stmt->is_local);
5484                                         else if (strcmp(item->defname, "transaction_read_only") == 0)
5485                                                 SetPGVariable("transaction_read_only",
5486                                                                           list_make1(item->arg), stmt->is_local);
5487                                         else
5488                                                 elog(ERROR, "unexpected SET TRANSACTION element: %s",
5489                                                          item->defname);
5490                                 }
5491                         }
5492                         else if (strcmp(stmt->name, "SESSION CHARACTERISTICS") == 0)
5493                         {
5494                                 ListCell   *head;
5495
5496                                 foreach(head, stmt->args)
5497                                 {
5498                                         DefElem    *item = (DefElem *) lfirst(head);
5499
5500                                         if (strcmp(item->defname, "transaction_isolation") == 0)
5501                                                 SetPGVariable("default_transaction_isolation",
5502                                                                           list_make1(item->arg), stmt->is_local);
5503                                         else if (strcmp(item->defname, "transaction_read_only") == 0)
5504                                                 SetPGVariable("default_transaction_read_only",
5505                                                                           list_make1(item->arg), stmt->is_local);
5506                                         else
5507                                                 elog(ERROR, "unexpected SET SESSION element: %s",
5508                                                          item->defname);
5509                                 }
5510                         }
5511                         else
5512                                 elog(ERROR, "unexpected SET MULTI element: %s",
5513                                          stmt->name);
5514                         break;
5515                 case VAR_SET_DEFAULT:
5516                 case VAR_RESET:
5517                         set_config_option(stmt->name,
5518                                                           NULL,
5519                                                           (superuser() ? PGC_SUSET : PGC_USERSET),
5520                                                           PGC_S_SESSION,
5521                                                           action,
5522                                                           true);
5523                         break;
5524                 case VAR_RESET_ALL:
5525                         ResetAllOptions();
5526                         break;
5527         }
5528 }
5529
5530 /*
5531  * Get the value to assign for a VariableSetStmt, or NULL if it's RESET.
5532  * The result is palloc'd.
5533  *
5534  * This is exported for use by actions such as ALTER ROLE SET.
5535  */
5536 char *
5537 ExtractSetVariableArgs(VariableSetStmt *stmt)
5538 {
5539         switch (stmt->kind)
5540         {
5541                 case VAR_SET_VALUE:
5542                         return flatten_set_variable_args(stmt->name, stmt->args);
5543                 case VAR_SET_CURRENT:
5544                         return GetConfigOptionByName(stmt->name, NULL);
5545                 default:
5546                         return NULL;
5547         }
5548 }
5549
5550 /*
5551  * SetPGVariable - SET command exported as an easily-C-callable function.
5552  *
5553  * This provides access to SET TO value, as well as SET TO DEFAULT (expressed
5554  * by passing args == NIL), but not SET FROM CURRENT functionality.
5555  */
5556 void
5557 SetPGVariable(const char *name, List *args, bool is_local)
5558 {
5559         char       *argstring = flatten_set_variable_args(name, args);
5560
5561         /* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
5562         set_config_option(name,
5563                                           argstring,
5564                                           (superuser() ? PGC_SUSET : PGC_USERSET),
5565                                           PGC_S_SESSION,
5566                                           is_local ? GUC_ACTION_LOCAL : GUC_ACTION_SET,
5567                                           true);
5568 }
5569
5570 /*
5571  * SET command wrapped as a SQL callable function.
5572  */
5573 Datum
5574 set_config_by_name(PG_FUNCTION_ARGS)
5575 {
5576         char       *name;
5577         char       *value;
5578         char       *new_value;
5579         bool            is_local;
5580
5581         if (PG_ARGISNULL(0))
5582                 ereport(ERROR,
5583                                 (errcode(ERRCODE_NULL_VALUE_NOT_ALLOWED),
5584                                  errmsg("SET requires parameter name")));
5585
5586         /* Get the GUC variable name */
5587         name = TextDatumGetCString(PG_GETARG_DATUM(0));
5588
5589         /* Get the desired value or set to NULL for a reset request */
5590         if (PG_ARGISNULL(1))
5591                 value = NULL;
5592         else
5593                 value = TextDatumGetCString(PG_GETARG_DATUM(1));
5594
5595         /*
5596          * Get the desired state of is_local. Default to false if provided value
5597          * is NULL
5598          */
5599         if (PG_ARGISNULL(2))
5600                 is_local = false;
5601         else
5602                 is_local = PG_GETARG_BOOL(2);
5603
5604         /* Note SET DEFAULT (argstring == NULL) is equivalent to RESET */
5605         set_config_option(name,
5606                                           value,
5607                                           (superuser() ? PGC_SUSET : PGC_USERSET),
5608                                           PGC_S_SESSION,
5609                                           is_local ? GUC_ACTION_LOCAL : GUC_ACTION_SET,
5610                                           true);
5611
5612         /* get the new current value */
5613         new_value = GetConfigOptionByName(name, NULL);
5614
5615         /* Convert return string to text */
5616         PG_RETURN_TEXT_P(cstring_to_text(new_value));
5617 }
5618
5619
5620 /*
5621  * Common code for DefineCustomXXXVariable subroutines: allocate the
5622  * new variable's config struct and fill in generic fields.
5623  */
5624 static struct config_generic *
5625 init_custom_variable(const char *name,
5626                                          const char *short_desc,
5627                                          const char *long_desc,
5628                                          GucContext context,
5629                                          int flags,
5630                                          enum config_type type,
5631                                          size_t sz)
5632 {
5633         struct config_generic *gen;
5634
5635         /*
5636          * Only allow custom PGC_POSTMASTER variables to be created during shared
5637          * library preload; any later than that, we can't ensure that the value
5638          * doesn't change after startup.  This is a fatal elog if it happens; just
5639          * erroring out isn't safe because we don't know what the calling loadable
5640          * module might already have hooked into.
5641          */
5642         if (context == PGC_POSTMASTER &&
5643                 !process_shared_preload_libraries_in_progress)
5644                 elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
5645
5646         gen = (struct config_generic *) guc_malloc(ERROR, sz);
5647         memset(gen, 0, sz);
5648
5649         gen->name = guc_strdup(ERROR, name);
5650         gen->context = context;
5651         gen->group = CUSTOM_OPTIONS;
5652         gen->short_desc = short_desc;
5653         gen->long_desc = long_desc;
5654         gen->flags = flags;
5655         gen->vartype = type;
5656
5657         return gen;
5658 }
5659
5660 /*
5661  * Common code for DefineCustomXXXVariable subroutines: insert the new
5662  * variable into the GUC variable array, replacing any placeholder.
5663  */
5664 static void
5665 define_custom_variable(struct config_generic * variable)
5666 {
5667         const char *name = variable->name;
5668         const char **nameAddr = &name;
5669         const char *value;
5670         struct config_string *pHolder;
5671         GucContext      phcontext;
5672         struct config_generic **res;
5673
5674         /*
5675          * See if there's a placeholder by the same name.
5676          */
5677         res = (struct config_generic **) bsearch((void *) &nameAddr,
5678                                                                                          (void *) guc_variables,
5679                                                                                          num_guc_variables,
5680                                                                                          sizeof(struct config_generic *),
5681                                                                                          guc_var_compare);
5682         if (res == NULL)
5683         {
5684                 /*
5685                  * No placeholder to replace, so we can just add it ... but first,
5686                  * make sure it's initialized to its default value.
5687                  */
5688                 InitializeOneGUCOption(variable);
5689                 add_guc_variable(variable, ERROR);
5690                 return;
5691         }
5692
5693         /*
5694          * This better be a placeholder
5695          */
5696         if (((*res)->flags & GUC_CUSTOM_PLACEHOLDER) == 0)
5697                 ereport(ERROR,
5698                                 (errcode(ERRCODE_INTERNAL_ERROR),
5699                                  errmsg("attempt to redefine parameter \"%s\"", name)));
5700
5701         Assert((*res)->vartype == PGC_STRING);
5702         pHolder = (struct config_string *) (*res);
5703
5704         /*
5705          * First, set the variable to its default value.  We must do this even
5706          * though we intend to immediately apply a new value, since it's possible
5707          * that the new value is invalid.
5708          */
5709         InitializeOneGUCOption(variable);
5710
5711         /*
5712          * Replace the placeholder. We aren't changing the name, so no re-sorting
5713          * is necessary
5714          */
5715         *res = variable;
5716
5717         /*
5718          * Infer context for assignment based on source of existing value. We
5719          * can't tell this with exact accuracy, but we can at least do something
5720          * reasonable in typical cases.
5721          */
5722         switch (pHolder->gen.source)
5723         {
5724                 case PGC_S_DEFAULT:
5725                 case PGC_S_ENV_VAR:
5726                 case PGC_S_FILE:
5727                 case PGC_S_ARGV:
5728
5729                         /*
5730                          * If we got past the check in init_custom_variable, we can safely
5731                          * assume that any existing value for a PGC_POSTMASTER variable
5732                          * was set in postmaster context.
5733                          */
5734                         if (variable->context == PGC_POSTMASTER)
5735                                 phcontext = PGC_POSTMASTER;
5736                         else
5737                                 phcontext = PGC_SIGHUP;
5738                         break;
5739                 case PGC_S_DATABASE:
5740                 case PGC_S_USER:
5741                 case PGC_S_CLIENT:
5742                 case PGC_S_SESSION:
5743                 default:
5744                         phcontext = PGC_USERSET;
5745                         break;
5746         }
5747
5748         /*
5749          * Assign the string value stored in the placeholder to the real variable.
5750          *
5751          * XXX this is not really good enough --- it should be a nontransactional
5752          * assignment, since we don't want it to roll back if the current xact
5753          * fails later.  (Or do we?)
5754          */
5755         value = *pHolder->variable;
5756
5757         if (value)
5758         {
5759                 if (set_config_option(name, value,
5760                                                           phcontext, pHolder->gen.source,
5761                                                           GUC_ACTION_SET, true))
5762                 {
5763                         /* Also copy over any saved source-location information */
5764                         if (pHolder->gen.sourcefile)
5765                                 set_config_sourcefile(name, pHolder->gen.sourcefile,
5766                                                                           pHolder->gen.sourceline);
5767                 }
5768         }
5769
5770         /*
5771          * Free up as much as we conveniently can of the placeholder structure
5772          * (this neglects any stack items...)
5773          */
5774         set_string_field(pHolder, pHolder->variable, NULL);
5775         set_string_field(pHolder, &pHolder->reset_val, NULL);
5776
5777         free(pHolder);
5778 }
5779
5780 void
5781 DefineCustomBoolVariable(const char *name,
5782                                                  const char *short_desc,
5783                                                  const char *long_desc,
5784                                                  bool *valueAddr,
5785                                                  bool bootValue,
5786                                                  GucContext context,
5787                                                  int flags,
5788                                                  GucBoolAssignHook assign_hook,
5789                                                  GucShowHook show_hook)
5790 {
5791         struct config_bool *var;
5792
5793         var = (struct config_bool *)
5794                 init_custom_variable(name, short_desc, long_desc, context, flags,
5795                                                          PGC_BOOL, sizeof(struct config_bool));
5796         var->variable = valueAddr;
5797         var->boot_val = bootValue;
5798         var->reset_val = bootValue;
5799         var->assign_hook = assign_hook;
5800         var->show_hook = show_hook;
5801         define_custom_variable(&var->gen);
5802 }
5803
5804 void
5805 DefineCustomIntVariable(const char *name,
5806                                                 const char *short_desc,
5807                                                 const char *long_desc,
5808                                                 int *valueAddr,
5809                                                 int bootValue,
5810                                                 int minValue,
5811                                                 int maxValue,
5812                                                 GucContext context,
5813                                                 int flags,
5814                                                 GucIntAssignHook assign_hook,
5815                                                 GucShowHook show_hook)
5816 {
5817         struct config_int *var;
5818
5819         var = (struct config_int *)
5820                 init_custom_variable(name, short_desc, long_desc, context, flags,
5821                                                          PGC_INT, sizeof(struct config_int));
5822         var->variable = valueAddr;
5823         var->boot_val = bootValue;
5824         var->reset_val = bootValue;
5825         var->min = minValue;
5826         var->max = maxValue;
5827         var->assign_hook = assign_hook;
5828         var->show_hook = show_hook;
5829         define_custom_variable(&var->gen);
5830 }
5831
5832 void
5833 DefineCustomRealVariable(const char *name,
5834                                                  const char *short_desc,
5835                                                  const char *long_desc,
5836                                                  double *valueAddr,
5837                                                  double bootValue,
5838                                                  double minValue,
5839                                                  double maxValue,
5840                                                  GucContext context,
5841                                                  int flags,
5842                                                  GucRealAssignHook assign_hook,
5843                                                  GucShowHook show_hook)
5844 {
5845         struct config_real *var;
5846
5847         var = (struct config_real *)
5848                 init_custom_variable(name, short_desc, long_desc, context, flags,
5849                                                          PGC_REAL, sizeof(struct config_real));
5850         var->variable = valueAddr;
5851         var->boot_val = bootValue;
5852         var->reset_val = bootValue;
5853         var->min = minValue;
5854         var->max = maxValue;
5855         var->assign_hook = assign_hook;
5856         var->show_hook = show_hook;
5857         define_custom_variable(&var->gen);
5858 }
5859
5860 void
5861 DefineCustomStringVariable(const char *name,
5862                                                    const char *short_desc,
5863                                                    const char *long_desc,
5864                                                    char **valueAddr,
5865                                                    const char *bootValue,
5866                                                    GucContext context,
5867                                                    int flags,
5868                                                    GucStringAssignHook assign_hook,
5869                                                    GucShowHook show_hook)
5870 {
5871         struct config_string *var;
5872
5873         var = (struct config_string *)
5874                 init_custom_variable(name, short_desc, long_desc, context, flags,
5875                                                          PGC_STRING, sizeof(struct config_string));
5876         var->variable = valueAddr;
5877         var->boot_val = bootValue;
5878         /* we could probably do without strdup, but keep it like normal case */
5879         if (var->boot_val)
5880                 var->reset_val = guc_strdup(ERROR, var->boot_val);
5881         var->assign_hook = assign_hook;
5882         var->show_hook = show_hook;
5883         define_custom_variable(&var->gen);
5884 }
5885
5886 void
5887 DefineCustomEnumVariable(const char *name,
5888                                                  const char *short_desc,
5889                                                  const char *long_desc,
5890                                                  int *valueAddr,
5891                                                  int bootValue,
5892                                                  const struct config_enum_entry * options,
5893                                                  GucContext context,
5894                                                  int flags,
5895                                                  GucEnumAssignHook assign_hook,
5896                                                  GucShowHook show_hook)
5897 {
5898         struct config_enum *var;
5899
5900         var = (struct config_enum *)
5901                 init_custom_variable(name, short_desc, long_desc, context, flags,
5902                                                          PGC_ENUM, sizeof(struct config_enum));
5903         var->variable = valueAddr;
5904         var->boot_val = bootValue;
5905         var->reset_val = bootValue;
5906         var->options = options;
5907         var->assign_hook = assign_hook;
5908         var->show_hook = show_hook;
5909         define_custom_variable(&var->gen);
5910 }
5911
5912 void
5913 EmitWarningsOnPlaceholders(const char *className)
5914 {
5915         int                     classLen = strlen(className);
5916         int                     i;
5917
5918         for (i = 0; i < num_guc_variables; i++)
5919         {
5920                 struct config_generic *var = guc_variables[i];
5921
5922                 if ((var->flags & GUC_CUSTOM_PLACEHOLDER) != 0 &&
5923                         strncmp(className, var->name, classLen) == 0 &&
5924                         var->name[classLen] == GUC_QUALIFIER_SEPARATOR)
5925                 {
5926                         ereport(WARNING,
5927                                         (errcode(ERRCODE_UNDEFINED_OBJECT),
5928                                          errmsg("unrecognized configuration parameter \"%s\"",
5929                                                         var->name)));
5930                 }
5931         }
5932 }
5933
5934
5935 /*
5936  * SHOW command
5937  */
5938 void
5939 GetPGVariable(const char *name, DestReceiver *dest)
5940 {
5941         if (guc_name_compare(name, "all") == 0)
5942                 ShowAllGUCConfig(dest);
5943         else
5944                 ShowGUCConfigOption(name, dest);
5945 }
5946
5947 TupleDesc
5948 GetPGVariableResultDesc(const char *name)
5949 {
5950         TupleDesc       tupdesc;
5951
5952         if (guc_name_compare(name, "all") == 0)
5953         {
5954                 /* need a tuple descriptor representing three TEXT columns */
5955                 tupdesc = CreateTemplateTupleDesc(3, false);
5956                 TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
5957                                                    TEXTOID, -1, 0);
5958                 TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
5959                                                    TEXTOID, -1, 0);
5960                 TupleDescInitEntry(tupdesc, (AttrNumber) 3, "description",
5961                                                    TEXTOID, -1, 0);
5962         }
5963         else
5964         {
5965                 const char *varname;
5966
5967                 /* Get the canonical spelling of name */
5968                 (void) GetConfigOptionByName(name, &varname);
5969
5970                 /* need a tuple descriptor representing a single TEXT column */
5971                 tupdesc = CreateTemplateTupleDesc(1, false);
5972                 TupleDescInitEntry(tupdesc, (AttrNumber) 1, varname,
5973                                                    TEXTOID, -1, 0);
5974         }
5975         return tupdesc;
5976 }
5977
5978
5979 /*
5980  * SHOW command
5981  */
5982 static void
5983 ShowGUCConfigOption(const char *name, DestReceiver *dest)
5984 {
5985         TupOutputState *tstate;
5986         TupleDesc       tupdesc;
5987         const char *varname;
5988         char       *value;
5989
5990         /* Get the value and canonical spelling of name */
5991         value = GetConfigOptionByName(name, &varname);
5992
5993         /* need a tuple descriptor representing a single TEXT column */
5994         tupdesc = CreateTemplateTupleDesc(1, false);
5995         TupleDescInitEntry(tupdesc, (AttrNumber) 1, varname,
5996                                            TEXTOID, -1, 0);
5997
5998         /* prepare for projection of tuples */
5999         tstate = begin_tup_output_tupdesc(dest, tupdesc);
6000
6001         /* Send it */
6002         do_text_output_oneline(tstate, value);
6003
6004         end_tup_output(tstate);
6005 }
6006
6007 /*
6008  * SHOW ALL command
6009  */
6010 static void
6011 ShowAllGUCConfig(DestReceiver *dest)
6012 {
6013         bool            am_superuser = superuser();
6014         int                     i;
6015         TupOutputState *tstate;
6016         TupleDesc       tupdesc;
6017         Datum       values[3];
6018         bool            isnull[3] = { false, false, false };
6019
6020         /* need a tuple descriptor representing three TEXT columns */
6021         tupdesc = CreateTemplateTupleDesc(3, false);
6022         TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
6023                                            TEXTOID, -1, 0);
6024         TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
6025                                            TEXTOID, -1, 0);
6026         TupleDescInitEntry(tupdesc, (AttrNumber) 3, "description",
6027                                            TEXTOID, -1, 0);
6028
6029         /* prepare for projection of tuples */
6030         tstate = begin_tup_output_tupdesc(dest, tupdesc);
6031
6032         for (i = 0; i < num_guc_variables; i++)
6033         {
6034                 struct config_generic *conf = guc_variables[i];
6035                 char   *setting;
6036
6037                 if ((conf->flags & GUC_NO_SHOW_ALL) ||
6038                         ((conf->flags & GUC_SUPERUSER_ONLY) && !am_superuser))
6039                         continue;
6040
6041                 /* assign to the values array */
6042                 values[0] = PointerGetDatum(cstring_to_text(conf->name));
6043
6044                 setting = _ShowOption(conf, true);
6045                 if (setting)
6046                 {
6047                         values[1] = PointerGetDatum(cstring_to_text(setting));
6048                         isnull[1] = false;
6049                 }
6050                 else
6051                 {
6052                         values[1] = PointerGetDatum(NULL);
6053                         isnull[1] = true;
6054                 }
6055
6056                 values[2] = PointerGetDatum(cstring_to_text(conf->short_desc));
6057
6058                 /* send it to dest */
6059                 do_tup_output(tstate, values, isnull);
6060
6061                 /* clean up */
6062                 pfree(DatumGetPointer(values[0]));
6063                 if (setting)
6064                 {
6065                         pfree(setting);
6066                         pfree(DatumGetPointer(values[1]));
6067                 }
6068                 pfree(DatumGetPointer(values[2]));
6069         }
6070
6071         end_tup_output(tstate);
6072 }
6073
6074 /*
6075  * Return GUC variable value by name; optionally return canonical
6076  * form of name.  Return value is palloc'd.
6077  */
6078 char *
6079 GetConfigOptionByName(const char *name, const char **varname)
6080 {
6081         struct config_generic *record;
6082
6083         record = find_option(name, false, ERROR);
6084         if (record == NULL)
6085                 ereport(ERROR,
6086                                 (errcode(ERRCODE_UNDEFINED_OBJECT),
6087                            errmsg("unrecognized configuration parameter \"%s\"", name)));
6088         if ((record->flags & GUC_SUPERUSER_ONLY) && !superuser())
6089                 ereport(ERROR,
6090                                 (errcode(ERRCODE_INSUFFICIENT_PRIVILEGE),
6091                                  errmsg("must be superuser to examine \"%s\"", name)));
6092
6093         if (varname)
6094                 *varname = record->name;
6095
6096         return _ShowOption(record, true);
6097 }
6098
6099 /*
6100  * Return GUC variable value by variable number; optionally return canonical
6101  * form of name.  Return value is palloc'd.
6102  */
6103 void
6104 GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
6105 {
6106         char            buffer[256];
6107         struct config_generic *conf;
6108
6109         /* check requested variable number valid */
6110         Assert((varnum >= 0) && (varnum < num_guc_variables));
6111
6112         conf = guc_variables[varnum];
6113
6114         if (noshow)
6115         {
6116                 if ((conf->flags & GUC_NO_SHOW_ALL) ||
6117                         ((conf->flags & GUC_SUPERUSER_ONLY) && !superuser()))
6118                         *noshow = true;
6119                 else
6120                         *noshow = false;
6121         }
6122
6123         /* first get the generic attributes */
6124
6125         /* name */
6126         values[0] = conf->name;
6127
6128         /* setting : use _ShowOption in order to avoid duplicating the logic */
6129         values[1] = _ShowOption(conf, false);
6130
6131         /* unit */
6132         if (conf->vartype == PGC_INT)
6133         {
6134                 static char buf[8];
6135
6136                 switch (conf->flags & (GUC_UNIT_MEMORY | GUC_UNIT_TIME))
6137                 {
6138                         case GUC_UNIT_KB:
6139                                 values[2] = "kB";
6140                                 break;
6141                         case GUC_UNIT_BLOCKS:
6142                                 snprintf(buf, sizeof(buf), "%dkB", BLCKSZ / 1024);
6143                                 values[2] = buf;
6144                                 break;
6145                         case GUC_UNIT_XBLOCKS:
6146                                 snprintf(buf, sizeof(buf), "%dkB", XLOG_BLCKSZ / 1024);
6147                                 values[2] = buf;
6148                                 break;
6149                         case GUC_UNIT_MS:
6150                                 values[2] = "ms";
6151                                 break;
6152                         case GUC_UNIT_S:
6153                                 values[2] = "s";
6154                                 break;
6155                         case GUC_UNIT_MIN:
6156                                 values[2] = "min";
6157                                 break;
6158                         default:
6159                                 values[2] = "";
6160                                 break;
6161                 }
6162         }
6163         else
6164                 values[2] = NULL;
6165
6166         /* group */
6167         values[3] = config_group_names[conf->group];
6168
6169         /* short_desc */
6170         values[4] = conf->short_desc;
6171
6172         /* extra_desc */
6173         values[5] = conf->long_desc;
6174
6175         /* context */
6176         values[6] = GucContext_Names[conf->context];
6177
6178         /* vartype */
6179         values[7] = config_type_names[conf->vartype];
6180
6181         /* source */
6182         values[8] = GucSource_Names[conf->source];
6183
6184         /* now get the type specifc attributes */
6185         switch (conf->vartype)
6186         {
6187                 case PGC_BOOL:
6188                         {
6189                                 struct config_bool *lconf = (struct config_bool *) conf;
6190
6191                                 /* min_val */
6192                                 values[9] = NULL;
6193
6194                                 /* max_val */
6195                                 values[10] = NULL;
6196
6197                                 /* enumvals */
6198                                 values[11] = NULL;
6199
6200                                 /* boot_val */
6201                                 values[12] = pstrdup(lconf->boot_val ? "on" : "off");
6202
6203                                 /* reset_val */
6204                                 values[13] = pstrdup(lconf->reset_val ? "on" : "off");
6205                         }
6206                         break;
6207
6208                 case PGC_INT:
6209                         {
6210                                 struct config_int *lconf = (struct config_int *) conf;
6211
6212                                 /* min_val */
6213                                 snprintf(buffer, sizeof(buffer), "%d", lconf->min);
6214                                 values[9] = pstrdup(buffer);
6215
6216                                 /* max_val */
6217                                 snprintf(buffer, sizeof(buffer), "%d", lconf->max);
6218                                 values[10] = pstrdup(buffer);
6219
6220                                 /* enumvals */
6221                                 values[11] = NULL;
6222
6223                                 /* boot_val */
6224                                 snprintf(buffer, sizeof(buffer), "%d", lconf->boot_val);
6225                                 values[12] = pstrdup(buffer);
6226
6227                                 /* reset_val */
6228                                 snprintf(buffer, sizeof(buffer), "%d", lconf->reset_val);
6229                                 values[13] = pstrdup(buffer);
6230                         }
6231                         break;
6232
6233                 case PGC_REAL:
6234                         {
6235                                 struct config_real *lconf = (struct config_real *) conf;
6236
6237                                 /* min_val */
6238                                 snprintf(buffer, sizeof(buffer), "%g", lconf->min);
6239                                 values[9] = pstrdup(buffer);
6240
6241                                 /* max_val */
6242                                 snprintf(buffer, sizeof(buffer), "%g", lconf->max);
6243                                 values[10] = pstrdup(buffer);
6244
6245                                 /* enumvals */
6246                                 values[11] = NULL;
6247
6248                                 /* boot_val */
6249                                 snprintf(buffer, sizeof(buffer), "%g", lconf->boot_val);
6250                                 values[12] = pstrdup(buffer);
6251
6252                                 /* reset_val */
6253                                 snprintf(buffer, sizeof(buffer), "%g", lconf->reset_val);
6254                                 values[13] = pstrdup(buffer);
6255                         }
6256                         break;
6257
6258                 case PGC_STRING:
6259                         {
6260                                 struct config_string *lconf = (struct config_string *) conf;
6261
6262                                 /* min_val */
6263                                 values[9] = NULL;
6264
6265                                 /* max_val */
6266                                 values[10] = NULL;
6267
6268                                 /* enumvals */
6269                                 values[11] = NULL;
6270
6271                                 /* boot_val */
6272                                 if (lconf->boot_val == NULL)
6273                                         values[12] = NULL;
6274                                 else
6275                                         values[12] = pstrdup(lconf->boot_val);
6276
6277                                 /* reset_val */
6278                                 if (lconf->reset_val == NULL)
6279                                         values[13] = NULL;
6280                                 else
6281                                         values[13] = pstrdup(lconf->reset_val);
6282                         }
6283                         break;
6284
6285                 case PGC_ENUM:
6286                         {
6287                                 struct config_enum *lconf = (struct config_enum *) conf;
6288
6289                                 /* min_val */
6290                                 values[9] = NULL;
6291
6292                                 /* max_val */
6293                                 values[10] = NULL;
6294
6295                                 /* enumvals */
6296
6297                                 /*
6298                                  * NOTE! enumvals with double quotes in them are not
6299                                  * supported!
6300                                  */
6301                                 values[11] = config_enum_get_options((struct config_enum *) conf,
6302                                                                                                          "{\"", "\"}", "\",\"");
6303
6304                                 /* boot_val */
6305                                 values[12] = pstrdup(config_enum_lookup_by_value(lconf,
6306                                                                                                                    lconf->boot_val));
6307
6308                                 /* reset_val */
6309                                 values[13] = pstrdup(config_enum_lookup_by_value(lconf,
6310                                                                                                                   lconf->reset_val));
6311                         }
6312                         break;
6313
6314                 default:
6315                         {
6316                                 /*
6317                                  * should never get here, but in case we do, set 'em to NULL
6318                                  */
6319
6320                                 /* min_val */
6321                                 values[9] = NULL;
6322
6323                                 /* max_val */
6324                                 values[10] = NULL;
6325
6326                                 /* enumvals */
6327                                 values[11] = NULL;
6328
6329                                 /* boot_val */
6330                                 values[12] = NULL;
6331
6332                                 /* reset_val */
6333                                 values[13] = NULL;
6334                         }
6335                         break;
6336         }
6337
6338         /*
6339          * If the setting came from a config file, set the source location. For
6340          * security reasons, we don't show source file/line number for
6341          * non-superusers.
6342          */
6343         if (conf->source == PGC_S_FILE && superuser())
6344         {
6345                 values[14] = conf->sourcefile;
6346                 snprintf(buffer, sizeof(buffer), "%d", conf->sourceline);
6347                 values[15] = pstrdup(buffer);
6348         }
6349         else
6350         {
6351                 values[14] = NULL;
6352                 values[15] = NULL;
6353         }
6354 }
6355
6356 /*
6357  * Return the total number of GUC variables
6358  */
6359 int
6360 GetNumConfigOptions(void)
6361 {
6362         return num_guc_variables;
6363 }
6364
6365 /*
6366  * show_config_by_name - equiv to SHOW X command but implemented as
6367  * a function.
6368  */
6369 Datum
6370 show_config_by_name(PG_FUNCTION_ARGS)
6371 {
6372         char       *varname;
6373         char       *varval;
6374
6375         /* Get the GUC variable name */
6376         varname = TextDatumGetCString(PG_GETARG_DATUM(0));
6377
6378         /* Get the value */
6379         varval = GetConfigOptionByName(varname, NULL);
6380
6381         /* Convert to text */
6382         PG_RETURN_TEXT_P(cstring_to_text(varval));
6383 }
6384
6385 /*
6386  * show_all_settings - equiv to SHOW ALL command but implemented as
6387  * a Table Function.
6388  */
6389 #define NUM_PG_SETTINGS_ATTS    16
6390
6391 Datum
6392 show_all_settings(PG_FUNCTION_ARGS)
6393 {
6394         FuncCallContext *funcctx;
6395         TupleDesc       tupdesc;
6396         int                     call_cntr;
6397         int                     max_calls;
6398         AttInMetadata *attinmeta;
6399         MemoryContext oldcontext;
6400
6401         /* stuff done only on the first call of the function */
6402         if (SRF_IS_FIRSTCALL())
6403         {
6404                 /* create a function context for cross-call persistence */
6405                 funcctx = SRF_FIRSTCALL_INIT();
6406
6407                 /*
6408                  * switch to memory context appropriate for multiple function calls
6409                  */
6410                 oldcontext = MemoryContextSwitchTo(funcctx->multi_call_memory_ctx);
6411
6412                 /*
6413                  * need a tuple descriptor representing NUM_PG_SETTINGS_ATTS columns
6414                  * of the appropriate types
6415                  */
6416                 tupdesc = CreateTemplateTupleDesc(NUM_PG_SETTINGS_ATTS, false);
6417                 TupleDescInitEntry(tupdesc, (AttrNumber) 1, "name",
6418                                                    TEXTOID, -1, 0);
6419                 TupleDescInitEntry(tupdesc, (AttrNumber) 2, "setting",
6420                                                    TEXTOID, -1, 0);
6421                 TupleDescInitEntry(tupdesc, (AttrNumber) 3, "unit",
6422                                                    TEXTOID, -1, 0);
6423                 TupleDescInitEntry(tupdesc, (AttrNumber) 4, "category",
6424                                                    TEXTOID, -1, 0);
6425                 TupleDescInitEntry(tupdesc, (AttrNumber) 5, "short_desc",
6426                                                    TEXTOID, -1, 0);
6427                 TupleDescInitEntry(tupdesc, (AttrNumber) 6, "extra_desc",
6428                                                    TEXTOID, -1, 0);
6429                 TupleDescInitEntry(tupdesc, (AttrNumber) 7, "context",
6430                                                    TEXTOID, -1, 0);
6431                 TupleDescInitEntry(tupdesc, (AttrNumber) 8, "vartype",
6432                                                    TEXTOID, -1, 0);
6433                 TupleDescInitEntry(tupdesc, (AttrNumber) 9, "source",
6434                                                    TEXTOID, -1, 0);
6435                 TupleDescInitEntry(tupdesc, (AttrNumber) 10, "min_val",
6436                                                    TEXTOID, -1, 0);
6437                 TupleDescInitEntry(tupdesc, (AttrNumber) 11, "max_val",
6438                                                    TEXTOID, -1, 0);
6439                 TupleDescInitEntry(tupdesc, (AttrNumber) 12, "enumvals",
6440                                                    TEXTARRAYOID, -1, 0);
6441                 TupleDescInitEntry(tupdesc, (AttrNumber) 13, "boot_val",
6442                                                    TEXTOID, -1, 0);
6443                 TupleDescInitEntry(tupdesc, (AttrNumber) 14, "reset_val",
6444                                                    TEXTOID, -1, 0);
6445                 TupleDescInitEntry(tupdesc, (AttrNumber) 15, "sourcefile",
6446                                                    TEXTOID, -1, 0);
6447                 TupleDescInitEntry(tupdesc, (AttrNumber) 16, "sourceline",
6448                                                    INT4OID, -1, 0);
6449
6450                 /*
6451                  * Generate attribute metadata needed later to produce tuples from raw
6452                  * C strings
6453                  */
6454                 attinmeta = TupleDescGetAttInMetadata(tupdesc);
6455                 funcctx->attinmeta = attinmeta;
6456
6457                 /* total number of tuples to be returned */
6458                 funcctx->max_calls = GetNumConfigOptions();
6459
6460                 MemoryContextSwitchTo(oldcontext);
6461         }
6462
6463         /* stuff done on every call of the function */
6464         funcctx = SRF_PERCALL_SETUP();
6465
6466         call_cntr = funcctx->call_cntr;
6467         max_calls = funcctx->max_calls;
6468         attinmeta = funcctx->attinmeta;
6469
6470         if (call_cntr < max_calls)      /* do when there is more left to send */
6471         {
6472                 char       *values[NUM_PG_SETTINGS_ATTS];
6473                 bool            noshow;
6474                 HeapTuple       tuple;
6475                 Datum           result;
6476
6477                 /*
6478                  * Get the next visible GUC variable name and value
6479                  */
6480                 do
6481                 {
6482                         GetConfigOptionByNum(call_cntr, (const char **) values, &noshow);
6483                         if (noshow)
6484                         {
6485                                 /* bump the counter and get the next config setting */
6486                                 call_cntr = ++funcctx->call_cntr;
6487
6488                                 /* make sure we haven't gone too far now */
6489                                 if (call_cntr >= max_calls)
6490                                         SRF_RETURN_DONE(funcctx);
6491                         }
6492                 } while (noshow);
6493
6494                 /* build a tuple */
6495                 tuple = BuildTupleFromCStrings(attinmeta, values);
6496
6497                 /* make the tuple into a datum */
6498                 result = HeapTupleGetDatum(tuple);
6499
6500                 SRF_RETURN_NEXT(funcctx, result);
6501         }
6502         else
6503         {
6504                 /* do when there is no more left */
6505                 SRF_RETURN_DONE(funcctx);
6506         }
6507 }
6508
6509 static char *
6510 _ShowOption(struct config_generic * record, bool use_units)
6511 {
6512         char            buffer[256];
6513         const char *val;
6514
6515         switch (record->vartype)
6516         {
6517                 case PGC_BOOL:
6518                         {
6519                                 struct config_bool *conf = (struct config_bool *) record;
6520
6521                                 if (conf->show_hook)
6522                                         val = (*conf->show_hook) ();
6523                                 else
6524                                         val = *conf->variable ? "on" : "off";
6525                         }
6526                         break;
6527
6528                 case PGC_INT:
6529                         {
6530                                 struct config_int *conf = (struct config_int *) record;
6531
6532                                 if (conf->show_hook)
6533                                         val = (*conf->show_hook) ();
6534                                 else
6535                                 {
6536                                         /*
6537                                          * Use int64 arithmetic to avoid overflows in units
6538                                          * conversion.  If INT64_IS_BUSTED we might overflow
6539                                          * anyway and print bogus answers, but there are few
6540                                          * enough such machines that it doesn't seem worth trying
6541                                          * harder.
6542                                          */
6543                                         int64           result = *conf->variable;
6544                                         const char *unit;
6545
6546                                         if (use_units && result > 0 &&
6547                                                 (record->flags & GUC_UNIT_MEMORY))
6548                                         {
6549                                                 switch (record->flags & GUC_UNIT_MEMORY)
6550                                                 {
6551                                                         case GUC_UNIT_BLOCKS:
6552                                                                 result *= BLCKSZ / 1024;
6553                                                                 break;
6554                                                         case GUC_UNIT_XBLOCKS:
6555                                                                 result *= XLOG_BLCKSZ / 1024;
6556                                                                 break;
6557                                                 }
6558
6559                                                 if (result % KB_PER_GB == 0)
6560                                                 {
6561                                                         result /= KB_PER_GB;
6562                                                         unit = "GB";
6563                                                 }
6564                                                 else if (result % KB_PER_MB == 0)
6565                                                 {
6566                                                         result /= KB_PER_MB;
6567                                                         unit = "MB";
6568                                                 }
6569                                                 else
6570                                                 {
6571                                                         unit = "kB";
6572                                                 }
6573                                         }
6574                                         else if (use_units && result > 0 &&
6575                                                          (record->flags & GUC_UNIT_TIME))
6576                                         {
6577                                                 switch (record->flags & GUC_UNIT_TIME)
6578                                                 {
6579                                                         case GUC_UNIT_S:
6580                                                                 result *= MS_PER_S;
6581                                                                 break;
6582                                                         case GUC_UNIT_MIN:
6583                                                                 result *= MS_PER_MIN;
6584                                                                 break;
6585                                                 }
6586
6587                                                 if (result % MS_PER_D == 0)
6588                                                 {
6589                                                         result /= MS_PER_D;
6590                                                         unit = "d";
6591                                                 }
6592                                                 else if (result % MS_PER_H == 0)
6593                                                 {
6594                                                         result /= MS_PER_H;
6595                                                         unit = "h";
6596                                                 }
6597                                                 else if (result % MS_PER_MIN == 0)
6598                                                 {
6599                                                         result /= MS_PER_MIN;
6600                                                         unit = "min";
6601                                                 }
6602                                                 else if (result % MS_PER_S == 0)
6603                                                 {
6604                                                         result /= MS_PER_S;
6605                                                         unit = "s";
6606                                                 }
6607                                                 else
6608                                                 {
6609                                                         unit = "ms";
6610                                                 }
6611                                         }
6612                                         else
6613                                                 unit = "";
6614
6615                                         snprintf(buffer, sizeof(buffer), INT64_FORMAT "%s",
6616                                                          result, unit);
6617                                         val = buffer;
6618                                 }
6619                         }
6620                         break;
6621
6622                 case PGC_REAL:
6623                         {
6624                                 struct config_real *conf = (struct config_real *) record;
6625
6626                                 if (conf->show_hook)
6627                                         val = (*conf->show_hook) ();
6628                                 else
6629                                 {
6630                                         snprintf(buffer, sizeof(buffer), "%g",
6631                                                          *conf->variable);
6632                                         val = buffer;
6633                                 }
6634                         }
6635                         break;
6636
6637                 case PGC_STRING:
6638                         {
6639                                 struct config_string *conf = (struct config_string *) record;
6640
6641                                 if (conf->show_hook)
6642                                         val = (*conf->show_hook) ();
6643                                 else if (*conf->variable && **conf->variable)
6644                                         val = *conf->variable;
6645                                 else
6646                                         val = "";
6647                         }
6648                         break;
6649
6650                 case PGC_ENUM:
6651                         {
6652                                 struct config_enum *conf = (struct config_enum *) record;
6653
6654                                 if (conf->show_hook)
6655                                         val = (*conf->show_hook) ();
6656                                 else
6657                                         val = config_enum_lookup_by_value(conf, *conf->variable);
6658                         }
6659                         break;
6660
6661                 default:
6662                         /* just to keep compiler quiet */
6663                         val = "???";
6664                         break;
6665         }
6666
6667         return pstrdup(val);
6668 }
6669
6670
6671 /*
6672  * Attempt (badly) to detect if a proposed new GUC setting is the same
6673  * as the current value.
6674  *
6675  * XXX this does not really work because it doesn't account for the
6676  * effects of canonicalization of string values by assign_hooks.
6677  */
6678 static bool
6679 is_newvalue_equal(struct config_generic * record, const char *newvalue)
6680 {
6681         /* newvalue == NULL isn't supported */
6682         Assert(newvalue != NULL);
6683
6684         switch (record->vartype)
6685         {
6686                 case PGC_BOOL:
6687                         {
6688                                 struct config_bool *conf = (struct config_bool *) record;
6689                                 bool            newval;
6690
6691                                 return parse_bool(newvalue, &newval)
6692                                         && *conf->variable == newval;
6693                         }
6694                 case PGC_INT:
6695                         {
6696                                 struct config_int *conf = (struct config_int *) record;
6697                                 int                     newval;
6698
6699                                 return parse_int(newvalue, &newval, record->flags, NULL)
6700                                         && *conf->variable == newval;
6701                         }
6702                 case PGC_REAL:
6703                         {
6704                                 struct config_real *conf = (struct config_real *) record;
6705                                 double          newval;
6706
6707                                 return parse_real(newvalue, &newval)
6708                                         && *conf->variable == newval;
6709                         }
6710                 case PGC_STRING:
6711                         {
6712                                 struct config_string *conf = (struct config_string *) record;
6713
6714                                 return *conf->variable != NULL &&
6715                                         strcmp(*conf->variable, newvalue) == 0;
6716                         }
6717
6718                 case PGC_ENUM:
6719                         {
6720                                 struct config_enum *conf = (struct config_enum *) record;
6721                                 int                     newval;
6722
6723                                 return config_enum_lookup_by_name(conf, newvalue, &newval) &&
6724                                         *conf->variable == newval;
6725                         }
6726         }
6727
6728         return false;
6729 }
6730
6731
6732 #ifdef EXEC_BACKEND
6733
6734 /*
6735  *      These routines dump out all non-default GUC options into a binary
6736  *      file that is read by all exec'ed backends.  The format is:
6737  *
6738  *              variable name, string, null terminated
6739  *              variable value, string, null terminated
6740  *              variable source, integer
6741  */
6742 static void
6743 write_one_nondefault_variable(FILE *fp, struct config_generic * gconf)
6744 {
6745         if (gconf->source == PGC_S_DEFAULT)
6746                 return;
6747
6748         fprintf(fp, "%s", gconf->name);
6749         fputc(0, fp);
6750
6751         switch (gconf->vartype)
6752         {
6753                 case PGC_BOOL:
6754                         {
6755                                 struct config_bool *conf = (struct config_bool *) gconf;
6756
6757                                 if (*conf->variable)
6758                                         fprintf(fp, "true");
6759                                 else
6760                                         fprintf(fp, "false");
6761                         }
6762                         break;
6763
6764                 case PGC_INT:
6765                         {
6766                                 struct config_int *conf = (struct config_int *) gconf;
6767
6768                                 fprintf(fp, "%d", *conf->variable);
6769                         }
6770                         break;
6771
6772                 case PGC_REAL:
6773                         {
6774                                 struct config_real *conf = (struct config_real *) gconf;
6775
6776                                 /* Could lose precision here? */
6777                                 fprintf(fp, "%f", *conf->variable);
6778                         }
6779                         break;
6780
6781                 case PGC_STRING:
6782                         {
6783                                 struct config_string *conf = (struct config_string *) gconf;
6784
6785                                 fprintf(fp, "%s", *conf->variable);
6786                         }
6787                         break;
6788
6789                 case PGC_ENUM:
6790                         {
6791                                 struct config_enum *conf = (struct config_enum *) gconf;
6792
6793                                 fprintf(fp, "%s",
6794                                                 config_enum_lookup_by_value(conf, *conf->variable));
6795                         }
6796                         break;
6797         }
6798
6799         fputc(0, fp);
6800
6801         fwrite(&gconf->source, sizeof(gconf->source), 1, fp);
6802 }
6803
6804 void
6805 write_nondefault_variables(GucContext context)
6806 {
6807         int                     elevel;
6808         FILE       *fp;
6809         struct config_generic *cvc_conf;
6810         int                     i;
6811
6812         Assert(context == PGC_POSTMASTER || context == PGC_SIGHUP);
6813
6814         elevel = (context == PGC_SIGHUP) ? LOG : ERROR;
6815
6816         /*
6817          * Open file
6818          */
6819         fp = AllocateFile(CONFIG_EXEC_PARAMS_NEW, "w");
6820         if (!fp)
6821         {
6822                 ereport(elevel,
6823                                 (errcode_for_file_access(),
6824                                  errmsg("could not write to file \"%s\": %m",
6825                                                 CONFIG_EXEC_PARAMS_NEW)));
6826                 return;
6827         }
6828
6829         /*
6830          * custom_variable_classes must be written out first; otherwise we might
6831          * reject custom variable values while reading the file.
6832          */
6833         cvc_conf = find_option("custom_variable_classes", false, ERROR);
6834         if (cvc_conf)
6835                 write_one_nondefault_variable(fp, cvc_conf);
6836
6837         for (i = 0; i < num_guc_variables; i++)
6838         {
6839                 struct config_generic *gconf = guc_variables[i];
6840
6841                 if (gconf != cvc_conf)
6842                         write_one_nondefault_variable(fp, gconf);
6843         }
6844
6845         if (FreeFile(fp))
6846         {
6847                 ereport(elevel,
6848                                 (errcode_for_file_access(),
6849                                  errmsg("could not write to file \"%s\": %m",
6850                                                 CONFIG_EXEC_PARAMS_NEW)));
6851                 return;
6852         }
6853
6854         /*
6855          * Put new file in place.  This could delay on Win32, but we don't hold
6856          * any exclusive locks.
6857          */
6858         rename(CONFIG_EXEC_PARAMS_NEW, CONFIG_EXEC_PARAMS);
6859 }
6860
6861
6862 /*
6863  *      Read string, including null byte from file
6864  *
6865  *      Return NULL on EOF and nothing read
6866  */
6867 static char *
6868 read_string_with_null(FILE *fp)
6869 {
6870         int                     i = 0,
6871                                 ch,
6872                                 maxlen = 256;
6873         char       *str = NULL;
6874
6875         do
6876         {
6877                 if ((ch = fgetc(fp)) == EOF)
6878                 {
6879                         if (i == 0)
6880                                 return NULL;
6881                         else
6882                                 elog(FATAL, "invalid format of exec config params file");
6883                 }
6884                 if (i == 0)
6885                         str = guc_malloc(FATAL, maxlen);
6886                 else if (i == maxlen)
6887                         str = guc_realloc(FATAL, str, maxlen *= 2);
6888                 str[i++] = ch;
6889         } while (ch != 0);
6890
6891         return str;
6892 }
6893
6894
6895 /*
6896  *      This routine loads a previous postmaster dump of its non-default
6897  *      settings.
6898  */
6899 void
6900 read_nondefault_variables(void)
6901 {
6902         FILE       *fp;
6903         char       *varname,
6904                            *varvalue;
6905         int                     varsource;
6906
6907         /*
6908          * Open file
6909          */
6910         fp = AllocateFile(CONFIG_EXEC_PARAMS, "r");
6911         if (!fp)
6912         {
6913                 /* File not found is fine */
6914                 if (errno != ENOENT)
6915                         ereport(FATAL,
6916                                         (errcode_for_file_access(),
6917                                          errmsg("could not read from file \"%s\": %m",
6918                                                         CONFIG_EXEC_PARAMS)));
6919                 return;
6920         }
6921
6922         for (;;)
6923         {
6924                 struct config_generic *record;
6925
6926                 if ((varname = read_string_with_null(fp)) == NULL)
6927                         break;
6928
6929                 if ((record = find_option(varname, true, FATAL)) == NULL)
6930                         elog(FATAL, "failed to locate variable %s in exec config params file", varname);
6931                 if ((varvalue = read_string_with_null(fp)) == NULL)
6932                         elog(FATAL, "invalid format of exec config params file");
6933                 if (fread(&varsource, sizeof(varsource), 1, fp) == 0)
6934                         elog(FATAL, "invalid format of exec config params file");
6935
6936                 (void) set_config_option(varname, varvalue, record->context,
6937                                                                  varsource, GUC_ACTION_SET, true);
6938                 free(varname);
6939                 free(varvalue);
6940         }
6941
6942         FreeFile(fp);
6943 }
6944 #endif   /* EXEC_BACKEND */
6945
6946
6947 /*
6948  * A little "long argument" simulation, although not quite GNU
6949  * compliant. Takes a string of the form "some-option=some value" and
6950  * returns name = "some_option" and value = "some value" in malloc'ed
6951  * storage. Note that '-' is converted to '_' in the option name. If
6952  * there is no '=' in the input string then value will be NULL.
6953  */
6954 void
6955 ParseLongOption(const char *string, char **name, char **value)
6956 {
6957         size_t          equal_pos;
6958         char       *cp;
6959
6960         AssertArg(string);
6961         AssertArg(name);
6962         AssertArg(value);
6963
6964         equal_pos = strcspn(string, "=");
6965
6966         if (string[equal_pos] == '=')
6967         {
6968                 *name = guc_malloc(FATAL, equal_pos + 1);
6969                 strlcpy(*name, string, equal_pos + 1);
6970
6971                 *value = guc_strdup(FATAL, &string[equal_pos + 1]);
6972         }
6973         else
6974         {
6975                 /* no equal sign in string */
6976                 *name = guc_strdup(FATAL, string);
6977                 *value = NULL;
6978         }
6979
6980         for (cp = *name; *cp; cp++)
6981                 if (*cp == '-')
6982                         *cp = '_';
6983 }
6984
6985
6986 /*
6987  * Handle options fetched from pg_database.datconfig, pg_authid.rolconfig,
6988  * pg_proc.proconfig, etc.      Caller must specify proper context/source/action.
6989  *
6990  * The array parameter must be an array of TEXT (it must not be NULL).
6991  */
6992 void
6993 ProcessGUCArray(ArrayType *array,
6994                                 GucContext context, GucSource source, GucAction action)
6995 {
6996         int                     i;
6997
6998         Assert(array != NULL);
6999         Assert(ARR_ELEMTYPE(array) == TEXTOID);
7000         Assert(ARR_NDIM(array) == 1);
7001         Assert(ARR_LBOUND(array)[0] == 1);
7002
7003         for (i = 1; i <= ARR_DIMS(array)[0]; i++)
7004         {
7005                 Datum           d;
7006                 bool            isnull;
7007                 char       *s;
7008                 char       *name;
7009                 char       *value;
7010
7011                 d = array_ref(array, 1, &i,
7012                                           -1 /* varlenarray */ ,
7013                                           -1 /* TEXT's typlen */ ,
7014                                           false /* TEXT's typbyval */ ,
7015                                           'i' /* TEXT's typalign */ ,
7016                                           &isnull);
7017
7018                 if (isnull)
7019                         continue;
7020
7021                 s = TextDatumGetCString(d);
7022
7023                 ParseLongOption(s, &name, &value);
7024                 if (!value)
7025                 {
7026                         ereport(WARNING,
7027                                         (errcode(ERRCODE_SYNTAX_ERROR),
7028                                          errmsg("could not parse setting for parameter \"%s\"",
7029                                                         name)));
7030                         free(name);
7031                         continue;
7032                 }
7033
7034                 (void) set_config_option(name, value, context, source, action, true);
7035
7036                 free(name);
7037                 if (value)
7038                         free(value);
7039         }
7040 }
7041
7042
7043 /*
7044  * Add an entry to an option array.  The array parameter may be NULL
7045  * to indicate the current table entry is NULL.
7046  */
7047 ArrayType *
7048 GUCArrayAdd(ArrayType *array, const char *name, const char *value)
7049 {
7050         const char *varname;
7051         Datum           datum;
7052         char       *newval;
7053         ArrayType  *a;
7054
7055         Assert(name);
7056         Assert(value);
7057
7058         /* test if the option is valid */
7059         set_config_option(name, value,
7060                                           superuser() ? PGC_SUSET : PGC_USERSET,
7061                                           PGC_S_TEST, GUC_ACTION_SET, false);
7062
7063         /* convert name to canonical spelling, so we can use plain strcmp */
7064         (void) GetConfigOptionByName(name, &varname);
7065         name = varname;
7066
7067         newval = palloc(strlen(name) + 1 + strlen(value) + 1);
7068         sprintf(newval, "%s=%s", name, value);
7069         datum = CStringGetTextDatum(newval);
7070
7071         if (array)
7072         {
7073                 int                     index;
7074                 bool            isnull;
7075                 int                     i;
7076
7077                 Assert(ARR_ELEMTYPE(array) == TEXTOID);
7078                 Assert(ARR_NDIM(array) == 1);
7079                 Assert(ARR_LBOUND(array)[0] == 1);
7080
7081                 index = ARR_DIMS(array)[0] + 1; /* add after end */
7082
7083                 for (i = 1; i <= ARR_DIMS(array)[0]; i++)
7084                 {
7085                         Datum           d;
7086                         char       *current;
7087
7088                         d = array_ref(array, 1, &i,
7089                                                   -1 /* varlenarray */ ,
7090                                                   -1 /* TEXT's typlen */ ,
7091                                                   false /* TEXT's typbyval */ ,
7092                                                   'i' /* TEXT's typalign */ ,
7093                                                   &isnull);
7094                         if (isnull)
7095                                 continue;
7096                         current = TextDatumGetCString(d);
7097                         if (strncmp(current, newval, strlen(name) + 1) == 0)
7098                         {
7099                                 index = i;
7100                                 break;
7101                         }
7102                 }
7103
7104                 a = array_set(array, 1, &index,
7105                                           datum,
7106                                           false,
7107                                           -1 /* varlena array */ ,
7108                                           -1 /* TEXT's typlen */ ,
7109                                           false /* TEXT's typbyval */ ,
7110                                           'i' /* TEXT's typalign */ );
7111         }
7112         else
7113                 a = construct_array(&datum, 1,
7114                                                         TEXTOID,
7115                                                         -1, false, 'i');
7116
7117         return a;
7118 }
7119
7120
7121 /*
7122  * Delete an entry from an option array.  The array parameter may be NULL
7123  * to indicate the current table entry is NULL.  Also, if the return value
7124  * is NULL then a null should be stored.
7125  */
7126 ArrayType *
7127 GUCArrayDelete(ArrayType *array, const char *name)
7128 {
7129         const char *varname;
7130         ArrayType  *newarray;
7131         int                     i;
7132         int                     index;
7133
7134         Assert(name);
7135
7136         /* test if the option is valid */
7137         set_config_option(name, NULL,
7138                                           superuser() ? PGC_SUSET : PGC_USERSET,
7139                                           PGC_S_TEST, GUC_ACTION_SET, false);
7140
7141         /* convert name to canonical spelling, so we can use plain strcmp */
7142         (void) GetConfigOptionByName(name, &varname);
7143         name = varname;
7144
7145         /* if array is currently null, then surely nothing to delete */
7146         if (!array)
7147                 return NULL;
7148
7149         newarray = NULL;
7150         index = 1;
7151
7152         for (i = 1; i <= ARR_DIMS(array)[0]; i++)
7153         {
7154                 Datum           d;
7155                 char       *val;
7156                 bool            isnull;
7157
7158                 d = array_ref(array, 1, &i,
7159                                           -1 /* varlenarray */ ,
7160                                           -1 /* TEXT's typlen */ ,
7161                                           false /* TEXT's typbyval */ ,
7162                                           'i' /* TEXT's typalign */ ,
7163                                           &isnull);
7164                 if (isnull)
7165                         continue;
7166                 val = TextDatumGetCString(d);
7167
7168                 /* ignore entry if it's what we want to delete */
7169                 if (strncmp(val, name, strlen(name)) == 0
7170                         && val[strlen(name)] == '=')
7171                         continue;
7172
7173                 /* else add it to the output array */
7174                 if (newarray)
7175                 {
7176                         newarray = array_set(newarray, 1, &index,
7177                                                                  d,
7178                                                                  false,
7179                                                                  -1 /* varlenarray */ ,
7180                                                                  -1 /* TEXT's typlen */ ,
7181                                                                  false /* TEXT's typbyval */ ,
7182                                                                  'i' /* TEXT's typalign */ );
7183                 }
7184                 else
7185                         newarray = construct_array(&d, 1,
7186                                                                            TEXTOID,
7187                                                                            -1, false, 'i');
7188
7189                 index++;
7190         }
7191
7192         return newarray;
7193 }
7194
7195
7196 /*
7197  * assign_hook and show_hook subroutines
7198  */
7199
7200 static const char *
7201 assign_log_destination(const char *value, bool doit, GucSource source)
7202 {
7203         char       *rawstring;
7204         List       *elemlist;
7205         ListCell   *l;
7206         int                     newlogdest = 0;
7207
7208         /* Need a modifiable copy of string */
7209         rawstring = pstrdup(value);
7210
7211         /* Parse string into list of identifiers */
7212         if (!SplitIdentifierString(rawstring, ',', &elemlist))
7213         {
7214                 /* syntax error in list */
7215                 pfree(rawstring);
7216                 list_free(elemlist);
7217                 ereport(GUC_complaint_elevel(source),
7218                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7219                    errmsg("invalid list syntax for parameter \"log_destination\"")));
7220                 return NULL;
7221         }
7222
7223         foreach(l, elemlist)
7224         {
7225                 char       *tok = (char *) lfirst(l);
7226
7227                 if (pg_strcasecmp(tok, "stderr") == 0)
7228                         newlogdest |= LOG_DESTINATION_STDERR;
7229                 else if (pg_strcasecmp(tok, "csvlog") == 0)
7230                         newlogdest |= LOG_DESTINATION_CSVLOG;
7231 #ifdef HAVE_SYSLOG
7232                 else if (pg_strcasecmp(tok, "syslog") == 0)
7233                         newlogdest |= LOG_DESTINATION_SYSLOG;
7234 #endif
7235 #ifdef WIN32
7236                 else if (pg_strcasecmp(tok, "eventlog") == 0)
7237                         newlogdest |= LOG_DESTINATION_EVENTLOG;
7238 #endif
7239                 else
7240                 {
7241                         ereport(GUC_complaint_elevel(source),
7242                                         (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7243                                   errmsg("unrecognized \"log_destination\" key word: \"%s\"",
7244                                                  tok)));
7245                         pfree(rawstring);
7246                         list_free(elemlist);
7247                         return NULL;
7248                 }
7249         }
7250
7251         if (doit)
7252                 Log_destination = newlogdest;
7253
7254         pfree(rawstring);
7255         list_free(elemlist);
7256
7257         return value;
7258 }
7259
7260 #ifdef HAVE_SYSLOG
7261
7262 static bool
7263 assign_syslog_facility(int newval, bool doit, GucSource source)
7264 {
7265         if (doit)
7266                 set_syslog_parameters(syslog_ident_str ? syslog_ident_str : "postgres",
7267                                                           newval);
7268
7269         return true;
7270 }
7271
7272 static const char *
7273 assign_syslog_ident(const char *ident, bool doit, GucSource source)
7274 {
7275         if (doit)
7276                 set_syslog_parameters(ident, syslog_facility);
7277
7278         return ident;
7279 }
7280 #endif   /* HAVE_SYSLOG */
7281
7282
7283 static bool
7284 assign_session_replication_role(int newval, bool doit, GucSource source)
7285 {
7286         /*
7287          * Must flush the plan cache when changing replication role; but don't
7288          * flush unnecessarily.
7289          */
7290         if (doit && SessionReplicationRole != newval)
7291         {
7292                 ResetPlanCache();
7293         }
7294
7295         return true;
7296 }
7297
7298 static const char *
7299 show_num_temp_buffers(void)
7300 {
7301         /*
7302          * We show the GUC var until local buffers have been initialized, and
7303          * NLocBuffer afterwards.
7304          */
7305         static char nbuf[32];
7306
7307         sprintf(nbuf, "%d", NLocBuffer ? NLocBuffer : num_temp_buffers);
7308         return nbuf;
7309 }
7310
7311 static bool
7312 assign_phony_autocommit(bool newval, bool doit, GucSource source)
7313 {
7314         if (!newval)
7315         {
7316                 ereport(GUC_complaint_elevel(source),
7317                                 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
7318                                  errmsg("SET AUTOCOMMIT TO OFF is no longer supported")));
7319                 return false;
7320         }
7321         return true;
7322 }
7323
7324 static const char *
7325 assign_custom_variable_classes(const char *newval, bool doit, GucSource source)
7326 {
7327         /*
7328          * Check syntax. newval must be a comma separated list of identifiers.
7329          * Whitespace is allowed but removed from the result.
7330          */
7331         bool            hasSpaceAfterToken = false;
7332         const char *cp = newval;
7333         int                     symLen = 0;
7334         char            c;
7335         StringInfoData buf;
7336
7337         initStringInfo(&buf);
7338         while ((c = *cp++) != '\0')
7339         {
7340                 if (isspace((unsigned char) c))
7341                 {
7342                         if (symLen > 0)
7343                                 hasSpaceAfterToken = true;
7344                         continue;
7345                 }
7346
7347                 if (c == ',')
7348                 {
7349                         if (symLen > 0)         /* terminate identifier */
7350                         {
7351                                 appendStringInfoChar(&buf, ',');
7352                                 symLen = 0;
7353                         }
7354                         hasSpaceAfterToken = false;
7355                         continue;
7356                 }
7357
7358                 if (hasSpaceAfterToken || !(isalnum((unsigned char) c) || c == '_'))
7359                 {
7360                         /*
7361                          * Syntax error due to token following space after token or
7362                          * non-identifier character
7363                          */
7364                         pfree(buf.data);
7365                         return NULL;
7366                 }
7367                 appendStringInfoChar(&buf, c);
7368                 symLen++;
7369         }
7370
7371         /* Remove stray ',' at end */
7372         if (symLen == 0 && buf.len > 0)
7373                 buf.data[--buf.len] = '\0';
7374
7375         /* GUC wants the result malloc'd */
7376         newval = guc_strdup(LOG, buf.data);
7377
7378         pfree(buf.data);
7379         return newval;
7380 }
7381
7382 static bool
7383 assign_debug_assertions(bool newval, bool doit, GucSource source)
7384 {
7385 #ifndef USE_ASSERT_CHECKING
7386         if (newval)
7387         {
7388                 ereport(GUC_complaint_elevel(source),
7389                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7390                            errmsg("assertion checking is not supported by this build")));
7391                 return false;
7392         }
7393 #endif
7394         return true;
7395 }
7396
7397 static bool
7398 assign_ssl(bool newval, bool doit, GucSource source)
7399 {
7400 #ifndef USE_SSL
7401         if (newval)
7402         {
7403                 ereport(GUC_complaint_elevel(source),
7404                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7405                                  errmsg("SSL is not supported by this build")));
7406                 return false;
7407         }
7408 #endif
7409         return true;
7410 }
7411
7412 static bool
7413 assign_stage_log_stats(bool newval, bool doit, GucSource source)
7414 {
7415         if (newval && log_statement_stats)
7416         {
7417                 ereport(GUC_complaint_elevel(source),
7418                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7419                                  errmsg("cannot enable parameter when \"log_statement_stats\" is true")));
7420                 /* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
7421                 if (source != PGC_S_OVERRIDE)
7422                         return false;
7423         }
7424         return true;
7425 }
7426
7427 static bool
7428 assign_log_stats(bool newval, bool doit, GucSource source)
7429 {
7430         if (newval &&
7431                 (log_parser_stats || log_planner_stats || log_executor_stats))
7432         {
7433                 ereport(GUC_complaint_elevel(source),
7434                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7435                                  errmsg("cannot enable \"log_statement_stats\" when "
7436                                                 "\"log_parser_stats\", \"log_planner_stats\", "
7437                                                 "or \"log_executor_stats\" is true")));
7438                 /* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
7439                 if (source != PGC_S_OVERRIDE)
7440                         return false;
7441         }
7442         return true;
7443 }
7444
7445 static bool
7446 assign_transaction_read_only(bool newval, bool doit, GucSource source)
7447 {
7448         /* Can't go to r/w mode inside a r/o transaction */
7449         if (newval == false && XactReadOnly && IsSubTransaction())
7450         {
7451                 ereport(GUC_complaint_elevel(source),
7452                                 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
7453                                  errmsg("cannot set transaction read-write mode inside a read-only transaction")));
7454                 /* source == PGC_S_OVERRIDE means do it anyway, eg at xact abort */
7455                 if (source != PGC_S_OVERRIDE)
7456                         return false;
7457         }
7458         return true;
7459 }
7460
7461 static const char *
7462 assign_canonical_path(const char *newval, bool doit, GucSource source)
7463 {
7464         if (doit)
7465         {
7466                 char       *canon_val = guc_strdup(ERROR, newval);
7467
7468                 canonicalize_path(canon_val);
7469                 return canon_val;
7470         }
7471         else
7472                 return newval;
7473 }
7474
7475 static const char *
7476 assign_timezone_abbreviations(const char *newval, bool doit, GucSource source)
7477 {
7478         /*
7479          * The powerup value shown above for timezone_abbreviations is "UNKNOWN".
7480          * When we see this we just do nothing.  If this value isn't overridden
7481          * from the config file then pg_timezone_abbrev_initialize() will
7482          * eventually replace it with "Default".  This hack has two purposes: to
7483          * avoid wasting cycles loading values that might soon be overridden from
7484          * the config file, and to avoid trying to read the timezone abbrev files
7485          * during InitializeGUCOptions().  The latter doesn't work in an
7486          * EXEC_BACKEND subprocess because my_exec_path hasn't been set yet and so
7487          * we can't locate PGSHAREDIR.  (Essentially the same hack is used to
7488          * delay initializing TimeZone ... if we have any more, we should try to
7489          * clean up and centralize this mechanism ...)
7490          */
7491         if (strcmp(newval, "UNKNOWN") == 0)
7492         {
7493                 return newval;
7494         }
7495
7496         /* Loading abbrev file is expensive, so only do it when value changes */
7497         if (timezone_abbreviations_string == NULL ||
7498                 strcmp(timezone_abbreviations_string, newval) != 0)
7499         {
7500                 int                     elevel;
7501
7502                 /*
7503                  * If reading config file, only the postmaster should bleat loudly
7504                  * about problems.      Otherwise, it's just this one process doing it,
7505                  * and we use WARNING message level.
7506                  */
7507                 if (source == PGC_S_FILE)
7508                         elevel = IsUnderPostmaster ? DEBUG3 : LOG;
7509                 else
7510                         elevel = WARNING;
7511                 if (!load_tzoffsets(newval, doit, elevel))
7512                         return NULL;
7513         }
7514         return newval;
7515 }
7516
7517 /*
7518  * pg_timezone_abbrev_initialize --- set default value if not done already
7519  *
7520  * This is called after initial loading of postgresql.conf.  If no
7521  * timezone_abbreviations setting was found therein, select default.
7522  */
7523 void
7524 pg_timezone_abbrev_initialize(void)
7525 {
7526         if (strcmp(timezone_abbreviations_string, "UNKNOWN") == 0)
7527         {
7528                 SetConfigOption("timezone_abbreviations", "Default",
7529                                                 PGC_POSTMASTER, PGC_S_ARGV);
7530         }
7531 }
7532
7533 static const char *
7534 show_archive_command(void)
7535 {
7536         if (XLogArchiveMode)
7537                 return XLogArchiveCommand;
7538         else
7539                 return "(disabled)";
7540 }
7541
7542 static bool
7543 assign_tcp_keepalives_idle(int newval, bool doit, GucSource source)
7544 {
7545         if (doit)
7546                 return (pq_setkeepalivesidle(newval, MyProcPort) == STATUS_OK);
7547
7548         return true;
7549 }
7550
7551 static const char *
7552 show_tcp_keepalives_idle(void)
7553 {
7554         static char nbuf[16];
7555
7556         snprintf(nbuf, sizeof(nbuf), "%d", pq_getkeepalivesidle(MyProcPort));
7557         return nbuf;
7558 }
7559
7560 static bool
7561 assign_tcp_keepalives_interval(int newval, bool doit, GucSource source)
7562 {
7563         if (doit)
7564                 return (pq_setkeepalivesinterval(newval, MyProcPort) == STATUS_OK);
7565
7566         return true;
7567 }
7568
7569 static const char *
7570 show_tcp_keepalives_interval(void)
7571 {
7572         static char nbuf[16];
7573
7574         snprintf(nbuf, sizeof(nbuf), "%d", pq_getkeepalivesinterval(MyProcPort));
7575         return nbuf;
7576 }
7577
7578 static bool
7579 assign_tcp_keepalives_count(int newval, bool doit, GucSource source)
7580 {
7581         if (doit)
7582                 return (pq_setkeepalivescount(newval, MyProcPort) == STATUS_OK);
7583
7584         return true;
7585 }
7586
7587 static const char *
7588 show_tcp_keepalives_count(void)
7589 {
7590         static char nbuf[16];
7591
7592         snprintf(nbuf, sizeof(nbuf), "%d", pq_getkeepalivescount(MyProcPort));
7593         return nbuf;
7594 }
7595
7596 static bool
7597 assign_maxconnections(int newval, bool doit, GucSource source)
7598 {
7599         if (newval + autovacuum_max_workers + 1 > INT_MAX / 4)
7600                 return false;
7601
7602         if (doit)
7603                 MaxBackends = newval + autovacuum_max_workers + 1;
7604
7605         return true;
7606 }
7607
7608 static bool
7609 assign_autovacuum_max_workers(int newval, bool doit, GucSource source)
7610 {
7611         if (MaxConnections + newval + 1 > INT_MAX / 4)
7612                 return false;
7613
7614         if (doit)
7615                 MaxBackends = MaxConnections + newval + 1;
7616
7617         return true;
7618 }
7619
7620 static bool
7621 assign_effective_io_concurrency(int newval, bool doit, GucSource source)
7622 {
7623 #ifdef USE_PREFETCH
7624         double          new_prefetch_pages = 0.0;
7625         int                     i;
7626
7627         /*----------
7628          * The user-visible GUC parameter is the number of drives (spindles),
7629          * which we need to translate to a number-of-pages-to-prefetch target.
7630          *
7631          * The expected number of prefetch pages needed to keep N drives busy is:
7632          *
7633          * drives |   I/O requests
7634          * -------+----------------
7635          *              1 |   1
7636          *              2 |   2/1 + 2/2 = 3
7637          *              3 |   3/1 + 3/2 + 3/3 = 5 1/2
7638          *              4 |   4/1 + 4/2 + 4/3 + 4/4 = 8 1/3
7639          *              n |   n * H(n)
7640          *
7641          * This is called the "coupon collector problem" and H(n) is called the
7642          * harmonic series.  This could be approximated by n * ln(n), but for
7643          * reasonable numbers of drives we might as well just compute the series.
7644          *
7645          * Alternatively we could set the target to the number of pages necessary
7646          * so that the expected number of active spindles is some arbitrary
7647          * percentage of the total.  This sounds the same but is actually slightly
7648          * different.  The result ends up being ln(1-P)/ln((n-1)/n) where P is
7649          * that desired fraction.
7650          *
7651          * Experimental results show that both of these formulas aren't aggressive
7652          * enough, but we don't really have any better proposals.
7653          *
7654          * Note that if newval = 0 (disabled), we must set target = 0.
7655          *----------
7656          */
7657
7658         for (i = 1; i <= newval; i++)
7659                 new_prefetch_pages += (double) newval / (double) i;
7660
7661         /* This range check shouldn't fail, but let's be paranoid */
7662         if (new_prefetch_pages >= 0.0 && new_prefetch_pages < (double) INT_MAX)
7663         {
7664                 if (doit)
7665                         target_prefetch_pages = (int) rint(new_prefetch_pages);
7666                 return true;
7667         }
7668         else
7669                 return false;
7670 #else
7671         return true;
7672 #endif   /* USE_PREFETCH */
7673 }
7674
7675 static const char *
7676 assign_pgstat_temp_directory(const char *newval, bool doit, GucSource source)
7677 {
7678         if (doit)
7679         {
7680                 char       *canon_val = guc_strdup(ERROR, newval);
7681                 char       *tname;
7682                 char       *fname;
7683
7684                 canonicalize_path(canon_val);
7685
7686                 tname = guc_malloc(ERROR, strlen(canon_val) + 12);              /* /pgstat.tmp */
7687                 sprintf(tname, "%s/pgstat.tmp", canon_val);
7688                 fname = guc_malloc(ERROR, strlen(canon_val) + 13);              /* /pgstat.stat */
7689                 sprintf(fname, "%s/pgstat.stat", canon_val);
7690
7691                 if (pgstat_stat_tmpname)
7692                         free(pgstat_stat_tmpname);
7693                 pgstat_stat_tmpname = tname;
7694                 if (pgstat_stat_filename)
7695                         free(pgstat_stat_filename);
7696                 pgstat_stat_filename = fname;
7697
7698                 return canon_val;
7699         }
7700         else
7701                 return newval;
7702 }
7703
7704 #include "guc-file.c"