char *shared_preload_libraries_string = NULL;
char *local_preload_libraries_string = NULL;
+/* Flag telling that we are loading shared_preload_libraries */
+bool process_shared_preload_libraries_in_progress = false;
+
/*
* load the shared libraries listed in 'libraries'
*
void
process_shared_preload_libraries(void)
{
+ process_shared_preload_libraries_in_progress = true;
load_libraries(shared_preload_libraries_string,
"shared_preload_libraries",
false);
+ process_shared_preload_libraries_in_progress = false;
}
/*
{
struct config_generic *gen;
+ /*
+ * Only allow custom PGC_POSTMASTER variables to be created during
+ * shared library preload; any later than that, we can't ensure that
+ * the value doesn't change after startup. This is a fatal elog if it
+ * happens; just erroring out isn't safe because we don't know what
+ * the calling loadable module might already have hooked into.
+ */
+ if (context == PGC_POSTMASTER &&
+ !process_shared_preload_libraries_in_progress)
+ elog(FATAL, "cannot create PGC_POSTMASTER variables after startup");
+
gen = (struct config_generic *) guc_malloc(ERROR, sz);
memset(gen, 0, sz);
case PGC_S_ENV_VAR:
case PGC_S_FILE:
case PGC_S_ARGV:
- phcontext = PGC_SIGHUP;
+ /*
+ * If we got past the check in init_custom_variable, we can
+ * safely assume that any existing value for a PGC_POSTMASTER
+ * variable was set in postmaster context.
+ */
+ if (variable->context == PGC_POSTMASTER)
+ phcontext = PGC_POSTMASTER;
+ else
+ phcontext = PGC_SIGHUP;
break;
case PGC_S_DATABASE:
case PGC_S_USER:
/* in utils/init/miscinit.c */
extern bool IgnoreSystemIndexes;
+extern PGDLLIMPORT bool process_shared_preload_libraries_in_progress;
extern char *shared_preload_libraries_string;
extern char *local_preload_libraries_string;