mirror of
https://github.com/postgres/postgres.git
synced 2025-06-05 00:02:04 -04:00
initial values and runtime changes in selected parameters. This gets rid of the need for an initial 'select pg_client_encoding()' query in libpq, bringing us back to one message transmitted in each direction for a standard connection startup. To allow server version to be sent using the same GUC mechanism that handles other parameters, invent the concept of a never-settable GUC parameter: you can 'show server_version' but it's not settable by any GUC input source. Create 'lc_collate' and 'lc_ctype' never-settable parameters so that people can find out these settings without need for pg_controldata. (These side ideas were all discussed some time ago in pgsql-hackers, but not yet implemented.)
576 lines
12 KiB
C
576 lines
12 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* variable.c
|
|
* Routines for handling specialized SET variables.
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.74 2003/04/25 19:45:08 tgl Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "postgres.h"
|
|
|
|
#include <ctype.h>
|
|
#include <time.h>
|
|
|
|
#include "access/xact.h"
|
|
#include "catalog/pg_shadow.h"
|
|
#include "commands/variable.h"
|
|
#include "miscadmin.h"
|
|
#include "utils/builtins.h"
|
|
#include "utils/guc.h"
|
|
#include "utils/syscache.h"
|
|
#include "utils/tqual.h"
|
|
#include "mb/pg_wchar.h"
|
|
|
|
/*
|
|
* DATESTYLE
|
|
*/
|
|
|
|
/*
|
|
* assign_datestyle: GUC assign_hook for datestyle
|
|
*/
|
|
const char *
|
|
assign_datestyle(const char *value, bool doit, bool interactive)
|
|
{
|
|
int newDateStyle = DateStyle;
|
|
bool newEuroDates = EuroDates;
|
|
bool ok = true;
|
|
int dcnt = 0,
|
|
ecnt = 0;
|
|
char *rawstring;
|
|
char *result;
|
|
List *elemlist;
|
|
List *l;
|
|
|
|
/* Need a modifiable copy of string */
|
|
rawstring = pstrdup(value);
|
|
|
|
/* Parse string into list of identifiers */
|
|
if (!SplitIdentifierString(rawstring, ',', &elemlist))
|
|
{
|
|
/* syntax error in list */
|
|
pfree(rawstring);
|
|
freeList(elemlist);
|
|
if (interactive)
|
|
elog(ERROR, "SET DATESTYLE: invalid list syntax");
|
|
return NULL;
|
|
}
|
|
|
|
foreach(l, elemlist)
|
|
{
|
|
char *tok = (char *) lfirst(l);
|
|
|
|
/* Ugh. Somebody ought to write a table driven version -- mjl */
|
|
|
|
if (strcasecmp(tok, "ISO") == 0)
|
|
{
|
|
newDateStyle = USE_ISO_DATES;
|
|
dcnt++;
|
|
}
|
|
else if (strcasecmp(tok, "SQL") == 0)
|
|
{
|
|
newDateStyle = USE_SQL_DATES;
|
|
dcnt++;
|
|
}
|
|
else if (strncasecmp(tok, "POSTGRESQL", 8) == 0)
|
|
{
|
|
newDateStyle = USE_POSTGRES_DATES;
|
|
dcnt++;
|
|
}
|
|
else if (strcasecmp(tok, "GERMAN") == 0)
|
|
{
|
|
newDateStyle = USE_GERMAN_DATES;
|
|
dcnt++;
|
|
if ((ecnt > 0) && (!newEuroDates))
|
|
ok = false;
|
|
newEuroDates = TRUE;
|
|
}
|
|
else if (strncasecmp(tok, "EURO", 4) == 0)
|
|
{
|
|
newEuroDates = TRUE;
|
|
ecnt++;
|
|
}
|
|
else if (strcasecmp(tok, "US") == 0
|
|
|| strncasecmp(tok, "NONEURO", 7) == 0)
|
|
{
|
|
newEuroDates = FALSE;
|
|
ecnt++;
|
|
if ((dcnt > 0) && (newDateStyle == USE_GERMAN_DATES))
|
|
ok = false;
|
|
}
|
|
else if (strcasecmp(tok, "DEFAULT") == 0)
|
|
{
|
|
/*
|
|
* Easiest way to get the current DEFAULT state is to fetch
|
|
* the DEFAULT string from guc.c and recursively parse it.
|
|
*
|
|
* We can't simply "return assign_datestyle(...)" because we need
|
|
* to handle constructs like "DEFAULT, ISO".
|
|
*/
|
|
int saveDateStyle = DateStyle;
|
|
bool saveEuroDates = EuroDates;
|
|
const char *subval;
|
|
|
|
subval = assign_datestyle(GetConfigOptionResetString("datestyle"),
|
|
true, interactive);
|
|
newDateStyle = DateStyle;
|
|
newEuroDates = EuroDates;
|
|
DateStyle = saveDateStyle;
|
|
EuroDates = saveEuroDates;
|
|
if (!subval)
|
|
{
|
|
ok = false;
|
|
break;
|
|
}
|
|
/* Here we know that our own return value is always malloc'd */
|
|
/* when doit is true */
|
|
free((char *) subval);
|
|
dcnt++;
|
|
ecnt++;
|
|
}
|
|
else
|
|
{
|
|
if (interactive)
|
|
elog(ERROR, "SET DATESTYLE: unrecognized keyword %s", tok);
|
|
ok = false;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (dcnt > 1 || ecnt > 1)
|
|
ok = false;
|
|
|
|
pfree(rawstring);
|
|
freeList(elemlist);
|
|
|
|
if (!ok)
|
|
{
|
|
if (interactive)
|
|
elog(ERROR, "SET DATESTYLE: conflicting specifications");
|
|
return NULL;
|
|
}
|
|
|
|
/*
|
|
* If we aren't going to do the assignment, just return OK indicator.
|
|
*/
|
|
if (!doit)
|
|
return value;
|
|
|
|
/*
|
|
* Prepare the canonical string to return. GUC wants it malloc'd.
|
|
*/
|
|
result = (char *) malloc(32);
|
|
if (!result)
|
|
return NULL;
|
|
|
|
switch (newDateStyle)
|
|
{
|
|
case USE_ISO_DATES:
|
|
strcpy(result, "ISO");
|
|
break;
|
|
case USE_SQL_DATES:
|
|
strcpy(result, "SQL");
|
|
break;
|
|
case USE_GERMAN_DATES:
|
|
strcpy(result, "GERMAN");
|
|
break;
|
|
default:
|
|
strcpy(result, "POSTGRESQL");
|
|
break;
|
|
}
|
|
strcat(result, newEuroDates ? ", EURO" : ", US");
|
|
|
|
/*
|
|
* Finally, it's safe to assign to the global variables; the
|
|
* assignment cannot fail now.
|
|
*/
|
|
DateStyle = newDateStyle;
|
|
EuroDates = newEuroDates;
|
|
|
|
return result;
|
|
}
|
|
|
|
/*
|
|
* show_datestyle: GUC show_hook for datestyle
|
|
*/
|
|
const char *
|
|
show_datestyle(void)
|
|
{
|
|
static char buf[64];
|
|
|
|
switch (DateStyle)
|
|
{
|
|
case USE_ISO_DATES:
|
|
strcpy(buf, "ISO");
|
|
break;
|
|
case USE_SQL_DATES:
|
|
strcpy(buf, "SQL");
|
|
break;
|
|
case USE_GERMAN_DATES:
|
|
strcpy(buf, "German");
|
|
break;
|
|
default:
|
|
strcpy(buf, "Postgres");
|
|
break;
|
|
};
|
|
strcat(buf, " with ");
|
|
strcat(buf, ((EuroDates) ? "European" : "US (NonEuropean)"));
|
|
strcat(buf, " conventions");
|
|
|
|
return buf;
|
|
}
|
|
|
|
|
|
/*
|
|
* TIMEZONE
|
|
*/
|
|
|
|
/*
|
|
* Storage for TZ env var is allocated with an arbitrary size of 64 bytes.
|
|
*/
|
|
static char tzbuf[64];
|
|
|
|
/*
|
|
* assign_timezone: GUC assign_hook for timezone
|
|
*/
|
|
const char *
|
|
assign_timezone(const char *value, bool doit, bool interactive)
|
|
{
|
|
char *result;
|
|
char *endptr;
|
|
double hours;
|
|
|
|
/*
|
|
* Check for INTERVAL 'foo'
|
|
*/
|
|
if (strncasecmp(value, "interval", 8) == 0)
|
|
{
|
|
const char *valueptr = value;
|
|
char *val;
|
|
Interval *interval;
|
|
|
|
valueptr += 8;
|
|
while (isspace((unsigned char) *valueptr))
|
|
valueptr++;
|
|
if (*valueptr++ != '\'')
|
|
return NULL;
|
|
val = pstrdup(valueptr);
|
|
/* Check and remove trailing quote */
|
|
endptr = strchr(val, '\'');
|
|
if (!endptr || endptr[1] != '\0')
|
|
{
|
|
pfree(val);
|
|
return NULL;
|
|
}
|
|
*endptr = '\0';
|
|
|
|
/*
|
|
* Try to parse it. XXX an invalid interval format will result in
|
|
* elog, which is not desirable for GUC. We did what we could to
|
|
* guard against this in flatten_set_variable_args, but a string
|
|
* coming in from postgresql.conf might contain anything.
|
|
*/
|
|
interval = DatumGetIntervalP(DirectFunctionCall3(interval_in,
|
|
CStringGetDatum(val),
|
|
ObjectIdGetDatum(InvalidOid),
|
|
Int32GetDatum(-1)));
|
|
pfree(val);
|
|
if (interval->month != 0)
|
|
{
|
|
if (interactive)
|
|
elog(ERROR, "SET TIME ZONE: illegal INTERVAL; month not allowed");
|
|
pfree(interval);
|
|
return NULL;
|
|
}
|
|
if (doit)
|
|
{
|
|
CTimeZone = interval->time;
|
|
HasCTZSet = true;
|
|
}
|
|
pfree(interval);
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Try it as a numeric number of hours (possibly fractional).
|
|
*/
|
|
hours = strtod(value, &endptr);
|
|
if (endptr != value && *endptr == '\0')
|
|
{
|
|
if (doit)
|
|
{
|
|
CTimeZone = hours * 3600;
|
|
HasCTZSet = true;
|
|
}
|
|
}
|
|
else if (strcasecmp(value, "UNKNOWN") == 0)
|
|
{
|
|
/*
|
|
* Clear any TZ value we may have established.
|
|
*
|
|
* unsetenv() works fine, but is BSD, not POSIX, and is not
|
|
* available under Solaris, among others. Apparently putenv()
|
|
* called as below clears the process-specific environment
|
|
* variables. Other reasonable arguments to putenv() (e.g.
|
|
* "TZ=", "TZ", "") result in a core dump (under Linux
|
|
* anyway). - thomas 1998-01-26
|
|
*/
|
|
if (doit)
|
|
{
|
|
if (tzbuf[0] == 'T')
|
|
{
|
|
strcpy(tzbuf, "=");
|
|
if (putenv(tzbuf) != 0)
|
|
elog(ERROR, "Unable to clear TZ environment variable");
|
|
tzset();
|
|
}
|
|
HasCTZSet = false;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/*
|
|
* Otherwise assume it is a timezone name.
|
|
*
|
|
* XXX unfortunately we have no reasonable way to check whether a
|
|
* timezone name is good, so we have to just assume that it
|
|
* is.
|
|
*/
|
|
if (doit)
|
|
{
|
|
strcpy(tzbuf, "TZ=");
|
|
strncat(tzbuf, value, sizeof(tzbuf) - 4);
|
|
if (putenv(tzbuf) != 0) /* shouldn't happen? */
|
|
elog(LOG, "assign_timezone: putenv failed");
|
|
tzset();
|
|
HasCTZSet = false;
|
|
}
|
|
}
|
|
}
|
|
|
|
/*
|
|
* If we aren't going to do the assignment, just return OK indicator.
|
|
*/
|
|
if (!doit)
|
|
return value;
|
|
|
|
/*
|
|
* Prepare the canonical string to return. GUC wants it malloc'd.
|
|
*/
|
|
result = (char *) malloc(sizeof(tzbuf));
|
|
if (!result)
|
|
return NULL;
|
|
|
|
if (HasCTZSet)
|
|
{
|
|
snprintf(result, sizeof(tzbuf), "%.5f",
|
|
(double) CTimeZone / 3600.0);
|
|
}
|
|
else if (tzbuf[0] == 'T')
|
|
strcpy(result, tzbuf + 3);
|
|
else
|
|
strcpy(result, "UNKNOWN");
|
|
|
|
return result;
|
|
}
|
|
|
|
/*
|
|
* show_timezone: GUC show_hook for timezone
|
|
*/
|
|
const char *
|
|
show_timezone(void)
|
|
{
|
|
char *tzn;
|
|
|
|
if (HasCTZSet)
|
|
{
|
|
Interval interval;
|
|
|
|
interval.month = 0;
|
|
interval.time = CTimeZone;
|
|
|
|
tzn = DatumGetCString(DirectFunctionCall1(interval_out,
|
|
IntervalPGetDatum(&interval)));
|
|
}
|
|
else
|
|
tzn = getenv("TZ");
|
|
|
|
if (tzn != NULL)
|
|
return tzn;
|
|
|
|
return "unknown";
|
|
}
|
|
|
|
|
|
/*
|
|
* SET TRANSACTION ISOLATION LEVEL
|
|
*/
|
|
|
|
const char *
|
|
assign_XactIsoLevel(const char *value, bool doit, bool interactive)
|
|
{
|
|
if (doit && interactive && SerializableSnapshot != NULL)
|
|
elog(ERROR, "SET TRANSACTION ISOLATION LEVEL must be called before any query");
|
|
|
|
if (strcmp(value, "serializable") == 0)
|
|
{
|
|
if (doit)
|
|
XactIsoLevel = XACT_SERIALIZABLE;
|
|
}
|
|
else if (strcmp(value, "read committed") == 0)
|
|
{
|
|
if (doit)
|
|
XactIsoLevel = XACT_READ_COMMITTED;
|
|
}
|
|
else if (strcmp(value, "default") == 0)
|
|
{
|
|
if (doit)
|
|
XactIsoLevel = DefaultXactIsoLevel;
|
|
}
|
|
else
|
|
return NULL;
|
|
|
|
return value;
|
|
}
|
|
|
|
const char *
|
|
show_XactIsoLevel(void)
|
|
{
|
|
if (XactIsoLevel == XACT_SERIALIZABLE)
|
|
return "SERIALIZABLE";
|
|
else
|
|
return "READ COMMITTED";
|
|
}
|
|
|
|
|
|
/*
|
|
* Random number seed
|
|
*/
|
|
|
|
bool
|
|
assign_random_seed(double value, bool doit, bool interactive)
|
|
{
|
|
/* Can't really roll back on error, so ignore non-interactive setting */
|
|
if (doit && interactive)
|
|
DirectFunctionCall1(setseed, Float8GetDatum(value));
|
|
return true;
|
|
}
|
|
|
|
const char *
|
|
show_random_seed(void)
|
|
{
|
|
return "unavailable";
|
|
}
|
|
|
|
|
|
/*
|
|
* encoding handling functions
|
|
*/
|
|
|
|
const char *
|
|
assign_client_encoding(const char *value, bool doit, bool interactive)
|
|
{
|
|
int encoding;
|
|
|
|
encoding = pg_valid_client_encoding(value);
|
|
if (encoding < 0)
|
|
return NULL;
|
|
|
|
/*
|
|
* XXX SetClientEncoding depends on namespace functions which are not
|
|
* available at startup time. So we accept requested client encoding
|
|
* anyway which might not be valid (e.g. no conversion procs
|
|
* available).
|
|
*/
|
|
if (SetClientEncoding(encoding, doit) < 0)
|
|
{
|
|
if (interactive)
|
|
elog(ERROR, "Conversion between %s and %s is not supported",
|
|
value, GetDatabaseEncodingName());
|
|
return NULL;
|
|
}
|
|
return value;
|
|
}
|
|
|
|
|
|
/*
|
|
* SET SESSION AUTHORIZATION
|
|
*
|
|
* When resetting session auth after an error, we can't expect to do catalog
|
|
* lookups. Hence, the stored form of the value must provide a numeric userid
|
|
* that can be re-used directly. We store the string in the form of
|
|
* NAMEDATALEN 'x's followed by the numeric userid --- this cannot conflict
|
|
* with any valid user name, because of the NAMEDATALEN limit on names.
|
|
*/
|
|
const char *
|
|
assign_session_authorization(const char *value, bool doit, bool interactive)
|
|
{
|
|
AclId usesysid = 0;
|
|
char *result;
|
|
|
|
if (strspn(value, "x") == NAMEDATALEN)
|
|
{
|
|
/* might be a saved numeric userid */
|
|
char *endptr;
|
|
|
|
usesysid = (AclId) strtoul(value + NAMEDATALEN, &endptr, 10);
|
|
|
|
if (endptr != value + NAMEDATALEN && *endptr == '\0')
|
|
{
|
|
/* syntactically valid, so use the numeric user ID */
|
|
}
|
|
else
|
|
usesysid = 0;
|
|
}
|
|
|
|
if (usesysid == 0)
|
|
{
|
|
/* not a saved ID, so look it up */
|
|
HeapTuple userTup;
|
|
|
|
userTup = SearchSysCache(SHADOWNAME,
|
|
PointerGetDatum(value),
|
|
0, 0, 0);
|
|
if (!HeapTupleIsValid(userTup))
|
|
{
|
|
if (interactive)
|
|
elog(ERROR, "user \"%s\" does not exist", value);
|
|
return NULL;
|
|
}
|
|
|
|
usesysid = ((Form_pg_shadow) GETSTRUCT(userTup))->usesysid;
|
|
|
|
ReleaseSysCache(userTup);
|
|
}
|
|
|
|
if (doit)
|
|
SetSessionAuthorization(usesysid);
|
|
|
|
result = (char *) malloc(NAMEDATALEN + 32);
|
|
if (!result)
|
|
return NULL;
|
|
|
|
memset(result, 'x', NAMEDATALEN);
|
|
|
|
snprintf(result + NAMEDATALEN, 32, "%lu", (unsigned long) usesysid);
|
|
|
|
return result;
|
|
}
|
|
|
|
const char *
|
|
show_session_authorization(void)
|
|
{
|
|
/*
|
|
* We can't use the stored string; see comments for
|
|
* assign_session_authorization
|
|
*/
|
|
return GetUserNameFromId(GetSessionUserId());
|
|
}
|