2000-02-15 20:49:31 +00:00
|
|
|
/*-------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* variable.c
|
2002-05-17 01:19:19 +00:00
|
|
|
* Routines for handling specialized SET variables.
|
|
|
|
*
|
2000-02-15 20:49:31 +00:00
|
|
|
*
|
2002-06-20 20:29:54 +00:00
|
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
2000-02-15 20:49:31 +00:00
|
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
|
|
*
|
1997-04-17 13:50:57 +00:00
|
|
|
*
|
2000-02-15 20:49:31 +00:00
|
|
|
* IDENTIFICATION
|
2003-06-06 16:25:35 +00:00
|
|
|
* $Header: /cvsroot/pgsql/src/backend/commands/variable.c,v 1.78 2003/06/06 16:25:35 tgl Exp $
|
1997-04-17 13:50:57 +00:00
|
|
|
*
|
2000-02-15 20:49:31 +00:00
|
|
|
*-------------------------------------------------------------------------
|
1997-04-17 13:50:57 +00:00
|
|
|
*/
|
|
|
|
|
2000-10-25 19:44:44 +00:00
|
|
|
#include "postgres.h"
|
|
|
|
|
1997-06-20 17:17:03 +00:00
|
|
|
#include <ctype.h>
|
1997-11-21 18:12:58 +00:00
|
|
|
#include <time.h>
|
1999-07-16 05:00:38 +00:00
|
|
|
|
|
|
|
#include "access/xact.h"
|
1999-09-27 20:27:32 +00:00
|
|
|
#include "catalog/pg_shadow.h"
|
1998-01-05 18:43:18 +00:00
|
|
|
#include "commands/variable.h"
|
1999-07-16 05:00:38 +00:00
|
|
|
#include "miscadmin.h"
|
|
|
|
#include "utils/builtins.h"
|
2000-05-31 00:28:42 +00:00
|
|
|
#include "utils/guc.h"
|
2002-05-17 01:19:19 +00:00
|
|
|
#include "utils/syscache.h"
|
1999-06-17 15:16:09 +00:00
|
|
|
#include "utils/tqual.h"
|
1998-07-26 04:31:41 +00:00
|
|
|
#include "mb/pg_wchar.h"
|
2000-02-15 20:49:31 +00:00
|
|
|
|
2003-05-22 17:13:08 +00:00
|
|
|
/*
|
|
|
|
* Some systems have tzname[] but don't declare it in <time.h>. Use this
|
|
|
|
* to duplicate the test in AC_STRUCT_TIMEZONE.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_TZNAME
|
|
|
|
#ifndef tzname /* For SGI. */
|
|
|
|
extern char *tzname[];
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1998-10-14 05:10:12 +00:00
|
|
|
/*
|
2002-05-17 01:19:19 +00:00
|
|
|
* DATESTYLE
|
1998-10-14 05:10:12 +00:00
|
|
|
*/
|
1997-04-24 15:41:37 +00:00
|
|
|
|
1998-10-14 05:10:12 +00:00
|
|
|
/*
|
2002-05-17 01:19:19 +00:00
|
|
|
* assign_datestyle: GUC assign_hook for datestyle
|
1998-10-14 05:10:12 +00:00
|
|
|
*/
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
assign_datestyle(const char *value, bool doit, bool interactive)
|
1997-06-02 11:00:57 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
int newDateStyle = DateStyle;
|
|
|
|
bool newEuroDates = EuroDates;
|
|
|
|
bool ok = true;
|
1997-09-08 02:41:22 +00:00
|
|
|
int dcnt = 0,
|
|
|
|
ecnt = 0;
|
2002-05-17 01:19:19 +00:00
|
|
|
char *rawstring;
|
|
|
|
char *result;
|
|
|
|
List *elemlist;
|
|
|
|
List *l;
|
1997-06-20 17:17:03 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/* Need a modifiable copy of string */
|
|
|
|
rawstring = pstrdup(value);
|
1997-11-07 06:43:16 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/* Parse string into list of identifiers */
|
|
|
|
if (!SplitIdentifierString(rawstring, ',', &elemlist))
|
1997-06-02 11:00:57 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
/* 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);
|
|
|
|
|
1997-04-17 13:50:57 +00:00
|
|
|
/* Ugh. Somebody ought to write a table driven version -- mjl */
|
1997-06-20 17:17:03 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
if (strcasecmp(tok, "ISO") == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newDateStyle = USE_ISO_DATES;
|
1997-04-17 13:50:57 +00:00
|
|
|
dcnt++;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strcasecmp(tok, "SQL") == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newDateStyle = USE_SQL_DATES;
|
1997-04-17 13:50:57 +00:00
|
|
|
dcnt++;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strncasecmp(tok, "POSTGRESQL", 8) == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newDateStyle = USE_POSTGRES_DATES;
|
1997-04-17 13:50:57 +00:00
|
|
|
dcnt++;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strcasecmp(tok, "GERMAN") == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newDateStyle = USE_GERMAN_DATES;
|
1997-12-04 23:17:13 +00:00
|
|
|
dcnt++;
|
2002-05-17 01:19:19 +00:00
|
|
|
if ((ecnt > 0) && (!newEuroDates))
|
|
|
|
ok = false;
|
|
|
|
newEuroDates = TRUE;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strncasecmp(tok, "EURO", 4) == 0)
|
1997-12-04 23:17:13 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newEuroDates = TRUE;
|
|
|
|
ecnt++;
|
1997-12-04 23:17:13 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strcasecmp(tok, "US") == 0
|
|
|
|
|| strncasecmp(tok, "NONEURO", 7) == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
newEuroDates = FALSE;
|
|
|
|
ecnt++;
|
|
|
|
if ((dcnt > 0) && (newDateStyle == USE_GERMAN_DATES))
|
|
|
|
ok = false;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strcasecmp(tok, "DEFAULT") == 0)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* Easiest way to get the current DEFAULT state is to fetch
|
|
|
|
* the DEFAULT string from guc.c and recursively parse it.
|
|
|
|
*
|
2002-09-04 20:31:48 +00:00
|
|
|
* We can't simply "return assign_datestyle(...)" because we need
|
|
|
|
* to handle constructs like "DEFAULT, ISO".
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
|
|
|
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++;
|
1997-04-17 13:50:57 +00:00
|
|
|
ecnt++;
|
1997-09-07 05:04:48 +00:00
|
|
|
}
|
1997-04-17 13:50:57 +00:00
|
|
|
else
|
2002-05-17 01:19:19 +00:00
|
|
|
{
|
|
|
|
if (interactive)
|
|
|
|
elog(ERROR, "SET DATESTYLE: unrecognized keyword %s", tok);
|
|
|
|
ok = false;
|
|
|
|
break;
|
|
|
|
}
|
1997-06-02 11:00:57 +00:00
|
|
|
}
|
1997-06-20 17:17:03 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
if (dcnt > 1 || ecnt > 1)
|
2002-05-17 01:19:19 +00:00
|
|
|
ok = false;
|
2001-10-18 17:30:21 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
pfree(rawstring);
|
|
|
|
freeList(elemlist);
|
2001-10-18 17:30:21 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
if (!ok)
|
2002-04-21 19:12:46 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
if (interactive)
|
|
|
|
elog(ERROR, "SET DATESTYLE: conflicting specifications");
|
|
|
|
return NULL;
|
|
|
|
}
|
2002-04-21 19:12:46 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* If we aren't going to do the assignment, just return OK indicator.
|
|
|
|
*/
|
|
|
|
if (!doit)
|
|
|
|
return value;
|
2002-04-21 19:12:46 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
2002-09-04 20:31:48 +00:00
|
|
|
* Prepare the canonical string to return. GUC wants it malloc'd.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
|
|
|
result = (char *) malloc(32);
|
|
|
|
if (!result)
|
|
|
|
return NULL;
|
2002-04-21 19:12:46 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
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;
|
2002-04-21 19:12:46 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
strcat(result, newEuroDates ? ", EURO" : ", US");
|
|
|
|
|
|
|
|
/*
|
2002-09-04 20:31:48 +00:00
|
|
|
* Finally, it's safe to assign to the global variables; the
|
|
|
|
* assignment cannot fail now.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
|
|
|
DateStyle = newDateStyle;
|
|
|
|
EuroDates = newEuroDates;
|
2001-10-18 17:30:21 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
return result;
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* show_datestyle: GUC show_hook for datestyle
|
|
|
|
*/
|
|
|
|
const char *
|
2001-06-07 04:50:57 +00:00
|
|
|
show_datestyle(void)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2002-09-04 20:31:48 +00:00
|
|
|
static char buf[64];
|
To: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Subject: Re: [PATCHES] SET DateStyle patches
On Tue, 22 Apr 1997, Thomas Lockhart wrote:
> Some more patches! These (try to) finish implementing SET variable TO value
> for "DateStyle" (changed the name from simply "date" to be more descriptive).
> This is based on code from Martin and Bruce (?), which was easy to modify.
> The syntax is
>
> SET DateStyle TO 'iso'
> SET DateStyle TO 'postgres'
> SET DateStyle TO 'sql'
> SET DateStyle TO 'european'
> SET DateStyle TO 'noneuropean'
> SET DateStyle TO 'us' (same as "noneuropean")
> SET DateStyle TO 'default' (current same as "postgres,us")
>
> ("european" is just compared for the first 4 characters, and "noneuropean"
> is compared for the first 7 to allow less typing).
>
> Multiple arguments are allowed, so SET datestyle TO 'sql,euro' is valid.
>
> My mods also try to implement "SHOW variable" and "RESET variable", but
> that part just core dumps at the moment. I would guess that my errors
> are obvious to someone who knows what they are doing with the parser stuff,
> so if someone (Bruce and/or Martin??) could have it do the right thing
> we will have a more complete set of what we need.
>
> Also, I would like to have a floating point precision global variable to
> implement "SET precision TO 10" and perhaps "SET precision TO 10,2" for
> float8 and float4, but I don't know how to do that for integer types rather
> than strings. If someone is fixing the SHOW and RESET code, perhaps they can
> add some hooks for me to do the floats while they are at it.
>
> I've left some remnants of variable structures in the source code which
> I did not use in the interests of getting something working for v6.1.
> We'll have time to clean things up for the next release...
1997-04-23 03:18:27 +00:00
|
|
|
|
1997-09-07 05:04:48 +00:00
|
|
|
switch (DateStyle)
|
|
|
|
{
|
1997-09-08 02:41:22 +00:00
|
|
|
case USE_ISO_DATES:
|
2002-05-17 01:19:19 +00:00
|
|
|
strcpy(buf, "ISO");
|
1997-09-08 02:41:22 +00:00
|
|
|
break;
|
|
|
|
case USE_SQL_DATES:
|
2002-05-17 01:19:19 +00:00
|
|
|
strcpy(buf, "SQL");
|
1997-09-08 02:41:22 +00:00
|
|
|
break;
|
1997-12-04 23:17:13 +00:00
|
|
|
case USE_GERMAN_DATES:
|
2002-05-17 01:19:19 +00:00
|
|
|
strcpy(buf, "German");
|
1997-12-04 23:17:13 +00:00
|
|
|
break;
|
1997-09-08 02:41:22 +00:00
|
|
|
default:
|
2002-05-17 01:19:19 +00:00
|
|
|
strcpy(buf, "Postgres");
|
1997-09-08 02:41:22 +00:00
|
|
|
break;
|
1997-05-16 07:24:13 +00:00
|
|
|
};
|
1997-09-07 05:04:48 +00:00
|
|
|
strcat(buf, " with ");
|
|
|
|
strcat(buf, ((EuroDates) ? "European" : "US (NonEuropean)"));
|
|
|
|
strcat(buf, " conventions");
|
To: Thomas Lockhart <Thomas.G.Lockhart@jpl.nasa.gov>
Subject: Re: [PATCHES] SET DateStyle patches
On Tue, 22 Apr 1997, Thomas Lockhart wrote:
> Some more patches! These (try to) finish implementing SET variable TO value
> for "DateStyle" (changed the name from simply "date" to be more descriptive).
> This is based on code from Martin and Bruce (?), which was easy to modify.
> The syntax is
>
> SET DateStyle TO 'iso'
> SET DateStyle TO 'postgres'
> SET DateStyle TO 'sql'
> SET DateStyle TO 'european'
> SET DateStyle TO 'noneuropean'
> SET DateStyle TO 'us' (same as "noneuropean")
> SET DateStyle TO 'default' (current same as "postgres,us")
>
> ("european" is just compared for the first 4 characters, and "noneuropean"
> is compared for the first 7 to allow less typing).
>
> Multiple arguments are allowed, so SET datestyle TO 'sql,euro' is valid.
>
> My mods also try to implement "SHOW variable" and "RESET variable", but
> that part just core dumps at the moment. I would guess that my errors
> are obvious to someone who knows what they are doing with the parser stuff,
> so if someone (Bruce and/or Martin??) could have it do the right thing
> we will have a more complete set of what we need.
>
> Also, I would like to have a floating point precision global variable to
> implement "SET precision TO 10" and perhaps "SET precision TO 10,2" for
> float8 and float4, but I don't know how to do that for integer types rather
> than strings. If someone is fixing the SHOW and RESET code, perhaps they can
> add some hooks for me to do the floats while they are at it.
>
> I've left some remnants of variable structures in the source code which
> I did not use in the interests of getting something working for v6.1.
> We'll have time to clean things up for the next release...
1997-04-23 03:18:27 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
return buf;
|
2000-02-19 22:10:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* TIMEZONE
|
1997-11-10 15:24:56 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* Storage for TZ env var is allocated with an arbitrary size of 64 bytes.
|
|
|
|
*/
|
2003-05-18 01:06:26 +00:00
|
|
|
#define TZBUF_LEN 64
|
|
|
|
|
|
|
|
static char tzbuf[TZBUF_LEN];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First time through, we remember the original environment TZ value, if any.
|
|
|
|
*/
|
|
|
|
static bool have_saved_tz = false;
|
|
|
|
static char orig_tzbuf[TZBUF_LEN];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convenience subroutine for assigning the value of TZ
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
set_tz(const char *tz)
|
|
|
|
{
|
|
|
|
strcpy(tzbuf, "TZ=");
|
|
|
|
strncpy(tzbuf + 3, tz, sizeof(tzbuf) - 4);
|
|
|
|
if (putenv(tzbuf) != 0) /* shouldn't happen? */
|
|
|
|
elog(LOG, "Unable to set TZ environment variable");
|
|
|
|
tzset();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Remove any value of TZ we have established
|
|
|
|
*
|
|
|
|
* Note: this leaves us with *no* value of TZ in the environment, and
|
|
|
|
* is therefore only appropriate for reverting to that state, not for
|
|
|
|
* reverting to a state where TZ was set to something else.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
clear_tz(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* 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 (tzbuf[0] == 'T')
|
|
|
|
{
|
|
|
|
strcpy(tzbuf, "=");
|
|
|
|
if (putenv(tzbuf) != 0)
|
|
|
|
elog(LOG, "Unable to clear TZ environment variable");
|
|
|
|
tzset();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether tzset() succeeded
|
|
|
|
*
|
|
|
|
* Unfortunately, tzset doesn't offer any well-defined way to detect that the
|
|
|
|
* value of TZ was bad. Often it will just select UTC (GMT) as the effective
|
|
|
|
* timezone. We use the following heuristics:
|
|
|
|
*
|
|
|
|
* If tzname[1] is a nonempty string, *or* the global timezone variable is
|
|
|
|
* not zero, then tzset must have recognized the TZ value as something
|
|
|
|
* different from UTC. Return true.
|
|
|
|
*
|
|
|
|
* Otherwise, check to see if the TZ name is a known spelling of "UTC"
|
|
|
|
* (ie, appears in our internal tables as a timezone equivalent to UTC).
|
|
|
|
* If so, accept it.
|
|
|
|
*
|
|
|
|
* This will reject nonstandard spellings of UTC unless tzset() chose to
|
|
|
|
* set tzname[1] as well as tzname[0]. The glibc version of tzset() will
|
|
|
|
* do so, but on other systems we may be tightening the spec a little.
|
|
|
|
*
|
|
|
|
* Another problem is that on some platforms (eg HPUX), if tzset thinks the
|
|
|
|
* input is bogus then it will adopt the system default timezone, which we
|
|
|
|
* really can't tell is not the intended translation of the input.
|
|
|
|
*
|
|
|
|
* Still, it beats failing to detect bad TZ names at all, and a silent
|
|
|
|
* failure mode of adopting the system-wide default is much better than
|
|
|
|
* a silent failure mode of adopting UTC.
|
|
|
|
*
|
|
|
|
* NB: this must NOT elog(ERROR). The caller must get control back so that
|
|
|
|
* it can restore the old value of TZ if we don't like the new one.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
tzset_succeeded(const char *tz)
|
|
|
|
{
|
|
|
|
char tztmp[TZBUF_LEN];
|
|
|
|
char *cp;
|
|
|
|
int tzval;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check first set of heuristics to say that tzset definitely worked.
|
|
|
|
*/
|
2003-05-22 17:13:08 +00:00
|
|
|
#ifdef HAVE_TZNAME
|
2003-05-18 01:06:26 +00:00
|
|
|
if (tzname[1] && tzname[1][0] != '\0')
|
|
|
|
return true;
|
2003-05-22 17:13:08 +00:00
|
|
|
#endif
|
2003-05-18 01:06:26 +00:00
|
|
|
if (TIMEZONE_GLOBAL != 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check for known spellings of "UTC". Note we must downcase the input
|
|
|
|
* before passing it to DecodePosixTimezone().
|
|
|
|
*/
|
|
|
|
StrNCpy(tztmp, tz, sizeof(tztmp));
|
|
|
|
for (cp = tztmp; *cp; cp++)
|
|
|
|
*cp = tolower((unsigned char) *cp);
|
|
|
|
if (DecodePosixTimezone(tztmp, &tzval) == 0)
|
|
|
|
if (tzval == 0)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check whether timezone is acceptable.
|
|
|
|
*
|
|
|
|
* What we are doing here is checking for leap-second-aware timekeeping.
|
|
|
|
* We need to reject such TZ settings because they'll wreak havoc with our
|
|
|
|
* date/time arithmetic.
|
|
|
|
*
|
|
|
|
* NB: this must NOT elog(ERROR). The caller must get control back so that
|
|
|
|
* it can restore the old value of TZ if we don't like the new one.
|
|
|
|
*/
|
|
|
|
static bool
|
|
|
|
tz_acceptable(void)
|
|
|
|
{
|
|
|
|
struct tm tt;
|
|
|
|
time_t time2000;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To detect leap-second timekeeping, compute the time_t value for
|
|
|
|
* local midnight, 2000-01-01. Insist that this be a multiple of 60;
|
|
|
|
* any partial-minute offset has to be due to leap seconds.
|
|
|
|
*/
|
|
|
|
MemSet(&tt, 0, sizeof(tt));
|
|
|
|
tt.tm_year = 100;
|
|
|
|
tt.tm_mon = 0;
|
|
|
|
tt.tm_mday = 1;
|
|
|
|
tt.tm_isdst = -1;
|
|
|
|
time2000 = mktime(&tt);
|
|
|
|
if ((time2000 % 60) != 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
1997-11-07 06:43:16 +00:00
|
|
|
|
1998-10-14 05:10:12 +00:00
|
|
|
/*
|
2002-05-17 01:19:19 +00:00
|
|
|
* assign_timezone: GUC assign_hook for timezone
|
1997-11-10 15:37:15 +00:00
|
|
|
*/
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
assign_timezone(const char *value, bool doit, bool interactive)
|
1997-10-30 16:52:11 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
char *result;
|
|
|
|
char *endptr;
|
|
|
|
double hours;
|
1997-10-30 16:52:11 +00:00
|
|
|
|
2003-05-18 01:06:26 +00:00
|
|
|
/*
|
|
|
|
* On first call, see if there is a TZ in the original environment.
|
|
|
|
* Save that value permanently.
|
|
|
|
*/
|
|
|
|
if (!have_saved_tz)
|
|
|
|
{
|
|
|
|
char *orig_tz = getenv("TZ");
|
|
|
|
|
|
|
|
if (orig_tz)
|
|
|
|
StrNCpy(orig_tzbuf, orig_tz, sizeof(orig_tzbuf));
|
|
|
|
else
|
|
|
|
orig_tzbuf[0] = '\0';
|
|
|
|
have_saved_tz = true;
|
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* Check for INTERVAL 'foo'
|
|
|
|
*/
|
|
|
|
if (strncasecmp(value, "interval", 8) == 0)
|
1997-10-30 16:52:11 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
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')
|
2001-10-18 17:30:21 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
pfree(val);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*endptr = '\0';
|
2002-09-04 20:31:48 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* 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,
|
2002-09-04 20:31:48 +00:00
|
|
|
CStringGetDatum(val),
|
|
|
|
ObjectIdGetDatum(InvalidOid),
|
|
|
|
Int32GetDatum(-1)));
|
2002-05-17 01:19:19 +00:00
|
|
|
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)
|
2001-10-18 17:30:21 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
CTimeZone = hours * 3600;
|
|
|
|
HasCTZSet = true;
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
}
|
|
|
|
else if (strcasecmp(value, "UNKNOWN") == 0)
|
|
|
|
{
|
2001-10-25 05:50:21 +00:00
|
|
|
/*
|
2003-05-18 01:06:26 +00:00
|
|
|
* UNKNOWN is the value shown as the "default" for TimeZone
|
|
|
|
* in guc.c. We interpret it as meaning the original TZ
|
|
|
|
* inherited from the environment. Note that if there is an
|
|
|
|
* original TZ setting, we will return that rather than UNKNOWN
|
|
|
|
* as the canonical spelling.
|
2001-10-25 05:50:21 +00:00
|
|
|
*/
|
2002-05-17 01:19:19 +00:00
|
|
|
if (doit)
|
2001-10-18 17:30:21 +00:00
|
|
|
{
|
2003-05-18 01:06:26 +00:00
|
|
|
bool ok;
|
|
|
|
|
|
|
|
/* Revert to original setting of TZ, whatever it was */
|
|
|
|
if (orig_tzbuf[0])
|
2002-05-17 01:19:19 +00:00
|
|
|
{
|
2003-05-18 01:06:26 +00:00
|
|
|
set_tz(orig_tzbuf);
|
|
|
|
ok = tzset_succeeded(orig_tzbuf) && tz_acceptable();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clear_tz();
|
|
|
|
ok = tz_acceptable();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ok)
|
|
|
|
HasCTZSet = false;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Bogus, so force UTC (equivalent to INTERVAL 0) */
|
|
|
|
CTimeZone = 0;
|
|
|
|
HasCTZSet = true;
|
2002-05-17 01:19:19 +00:00
|
|
|
}
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* Otherwise assume it is a timezone name.
|
|
|
|
*
|
2003-05-18 01:06:26 +00:00
|
|
|
* We have to actually apply the change before we can have any
|
|
|
|
* hope of checking it. So, save the old value in case we have
|
|
|
|
* to back out. Note that it's possible the old setting is in
|
|
|
|
* tzbuf, so we'd better copy it.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
2003-05-18 01:06:26 +00:00
|
|
|
char save_tzbuf[TZBUF_LEN];
|
|
|
|
char *save_tz;
|
|
|
|
bool known,
|
|
|
|
acceptable;
|
|
|
|
|
|
|
|
save_tz = getenv("TZ");
|
|
|
|
if (save_tz)
|
|
|
|
StrNCpy(save_tzbuf, save_tz, sizeof(save_tzbuf));
|
|
|
|
|
|
|
|
set_tz(value);
|
|
|
|
|
|
|
|
known = tzset_succeeded(value);
|
|
|
|
acceptable = tz_acceptable();
|
|
|
|
|
|
|
|
if (doit && known && acceptable)
|
2001-10-18 17:30:21 +00:00
|
|
|
{
|
2003-05-18 01:06:26 +00:00
|
|
|
/* Keep the changed TZ */
|
2002-05-17 01:19:19 +00:00
|
|
|
HasCTZSet = false;
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
2003-05-18 01:06:26 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Revert to prior TZ setting; note we haven't changed
|
|
|
|
* HasCTZSet in this path, so if we were previously using
|
|
|
|
* a fixed offset, we still are.
|
|
|
|
*/
|
|
|
|
if (save_tz)
|
|
|
|
set_tz(save_tzbuf);
|
|
|
|
else
|
|
|
|
clear_tz();
|
|
|
|
/* Complain if it was bad */
|
|
|
|
if (!known)
|
|
|
|
{
|
|
|
|
elog(interactive ? ERROR : LOG,
|
|
|
|
"unrecognized timezone name \"%s\"",
|
|
|
|
value);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
if (!acceptable)
|
|
|
|
{
|
|
|
|
elog(interactive ? ERROR : LOG,
|
|
|
|
"timezone \"%s\" appears to use leap seconds"
|
|
|
|
"\n\tPostgreSQL does not support leap seconds",
|
|
|
|
value);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
1997-10-30 16:52:11 +00:00
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* If we aren't going to do the assignment, just return OK indicator.
|
|
|
|
*/
|
|
|
|
if (!doit)
|
|
|
|
return value;
|
|
|
|
|
|
|
|
/*
|
2002-09-04 20:31:48 +00:00
|
|
|
* Prepare the canonical string to return. GUC wants it malloc'd.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
|
|
|
result = (char *) malloc(sizeof(tzbuf));
|
|
|
|
if (!result)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (HasCTZSet)
|
2003-05-18 01:06:26 +00:00
|
|
|
snprintf(result, sizeof(tzbuf), "%.5f", (double) CTimeZone / 3600.0);
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (tzbuf[0] == 'T')
|
|
|
|
strcpy(result, tzbuf + 3);
|
|
|
|
else
|
|
|
|
strcpy(result, "UNKNOWN");
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
1997-10-30 16:52:11 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* show_timezone: GUC show_hook for timezone
|
|
|
|
*/
|
|
|
|
const char *
|
2000-10-25 19:44:44 +00:00
|
|
|
show_timezone(void)
|
1997-10-30 16:52:11 +00:00
|
|
|
{
|
2001-10-25 05:50:21 +00:00
|
|
|
char *tzn;
|
2001-10-18 17:30:21 +00:00
|
|
|
|
|
|
|
if (HasCTZSet)
|
|
|
|
{
|
2001-10-25 05:50:21 +00:00
|
|
|
Interval interval;
|
1997-10-30 16:52:11 +00:00
|
|
|
|
2001-10-18 17:30:21 +00:00
|
|
|
interval.month = 0;
|
|
|
|
interval.time = CTimeZone;
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
tzn = DatumGetCString(DirectFunctionCall1(interval_out,
|
2002-09-04 20:31:48 +00:00
|
|
|
IntervalPGetDatum(&interval)));
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
tzn = getenv("TZ");
|
1997-10-30 16:52:11 +00:00
|
|
|
|
2001-10-18 17:30:21 +00:00
|
|
|
if (tzn != NULL)
|
2002-05-17 01:19:19 +00:00
|
|
|
return tzn;
|
1997-10-30 16:52:11 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
return "unknown";
|
|
|
|
}
|
2000-02-15 20:49:31 +00:00
|
|
|
|
2000-03-17 05:29:07 +00:00
|
|
|
|
2001-10-18 17:30:21 +00:00
|
|
|
/*
|
2002-05-17 01:19:19 +00:00
|
|
|
* SET TRANSACTION ISOLATION LEVEL
|
2001-10-18 17:30:21 +00:00
|
|
|
*/
|
2000-02-15 20:49:31 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
assign_XactIsoLevel(const char *value, bool doit, bool interactive)
|
2000-02-15 20:49:31 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
if (doit && interactive && SerializableSnapshot != NULL)
|
2000-02-15 20:49:31 +00:00
|
|
|
elog(ERROR, "SET TRANSACTION ISOLATION LEVEL must be called before any query");
|
|
|
|
|
2001-09-19 15:19:12 +00:00
|
|
|
if (strcmp(value, "serializable") == 0)
|
2002-09-04 20:31:48 +00:00
|
|
|
{
|
|
|
|
if (doit)
|
|
|
|
XactIsoLevel = XACT_SERIALIZABLE;
|
|
|
|
}
|
2001-09-19 15:19:12 +00:00
|
|
|
else if (strcmp(value, "read committed") == 0)
|
2002-09-04 20:31:48 +00:00
|
|
|
{
|
|
|
|
if (doit)
|
|
|
|
XactIsoLevel = XACT_READ_COMMITTED;
|
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
else if (strcmp(value, "default") == 0)
|
2002-09-04 20:31:48 +00:00
|
|
|
{
|
|
|
|
if (doit)
|
|
|
|
XactIsoLevel = DefaultXactIsoLevel;
|
|
|
|
}
|
2000-02-15 20:49:31 +00:00
|
|
|
else
|
2002-05-17 01:19:19 +00:00
|
|
|
return NULL;
|
2000-02-15 20:49:31 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
return value;
|
2000-02-15 20:49:31 +00:00
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
2000-10-25 19:44:44 +00:00
|
|
|
show_XactIsoLevel(void)
|
2000-02-15 20:49:31 +00:00
|
|
|
{
|
|
|
|
if (XactIsoLevel == XACT_SERIALIZABLE)
|
2002-05-17 01:19:19 +00:00
|
|
|
return "SERIALIZABLE";
|
2000-02-15 20:49:31 +00:00
|
|
|
else
|
2002-05-17 01:19:19 +00:00
|
|
|
return "READ COMMITTED";
|
2000-02-15 20:49:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-04-07 13:40:45 +00:00
|
|
|
/*
|
|
|
|
* Random number seed
|
|
|
|
*/
|
2002-04-21 19:12:46 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
bool
|
|
|
|
assign_random_seed(double value, bool doit, bool interactive)
|
2000-04-07 13:40:45 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
/* Can't really roll back on error, so ignore non-interactive setting */
|
|
|
|
if (doit && interactive)
|
|
|
|
DirectFunctionCall1(setseed, Float8GetDatum(value));
|
|
|
|
return true;
|
2000-04-07 13:40:45 +00:00
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
show_random_seed(void)
|
2000-04-07 13:40:45 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
return "unavailable";
|
2000-04-07 13:40:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-10-25 19:44:44 +00:00
|
|
|
/*
|
I have committed many support files for CREATE CONVERSION. Default
conversion procs and conversions are added in initdb. Currently
supported conversions are:
UTF-8(UNICODE) <--> SQL_ASCII, ISO-8859-1 to 16, EUC_JP, EUC_KR,
EUC_CN, EUC_TW, SJIS, BIG5, GBK, GB18030, UHC,
JOHAB, TCVN
EUC_JP <--> SJIS
EUC_TW <--> BIG5
MULE_INTERNAL <--> EUC_JP, SJIS, EUC_TW, BIG5
Note that initial contents of pg_conversion system catalog are created
in the initdb process. So doing initdb required is ideal, it's
possible to add them to your databases by hand, however. To accomplish
this:
psql -f your_postgresql_install_path/share/conversion_create.sql your_database
So I did not bump up the version in cataversion.h.
TODO:
Add more conversion procs
Add [CASCADE|RESTRICT] to DROP CONVERSION
Add tuples to pg_depend
Add regression tests
Write docs
Add SQL99 CONVERT command?
--
Tatsuo Ishii
2002-07-18 02:02:30 +00:00
|
|
|
* encoding handling functions
|
2000-10-25 19:44:44 +00:00
|
|
|
*/
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
assign_client_encoding(const char *value, bool doit, bool interactive)
|
2000-10-25 19:44:44 +00:00
|
|
|
{
|
2001-10-25 05:50:21 +00:00
|
|
|
int encoding;
|
2001-10-18 17:30:21 +00:00
|
|
|
|
2000-10-25 19:44:44 +00:00
|
|
|
encoding = pg_valid_client_encoding(value);
|
|
|
|
if (encoding < 0)
|
2002-05-17 01:19:19 +00:00
|
|
|
return NULL;
|
2002-09-04 20:31:48 +00:00
|
|
|
|
|
|
|
/*
|
2003-04-27 17:31:25 +00:00
|
|
|
* Note: if we are in startup phase then SetClientEncoding may not be
|
|
|
|
* able to really set the encoding. In this case we will assume that
|
|
|
|
* the encoding is okay, and InitializeClientEncoding() will fix things
|
|
|
|
* once initialization is complete.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
I have committed many support files for CREATE CONVERSION. Default
conversion procs and conversions are added in initdb. Currently
supported conversions are:
UTF-8(UNICODE) <--> SQL_ASCII, ISO-8859-1 to 16, EUC_JP, EUC_KR,
EUC_CN, EUC_TW, SJIS, BIG5, GBK, GB18030, UHC,
JOHAB, TCVN
EUC_JP <--> SJIS
EUC_TW <--> BIG5
MULE_INTERNAL <--> EUC_JP, SJIS, EUC_TW, BIG5
Note that initial contents of pg_conversion system catalog are created
in the initdb process. So doing initdb required is ideal, it's
possible to add them to your databases by hand, however. To accomplish
this:
psql -f your_postgresql_install_path/share/conversion_create.sql your_database
So I did not bump up the version in cataversion.h.
TODO:
Add more conversion procs
Add [CASCADE|RESTRICT] to DROP CONVERSION
Add tuples to pg_depend
Add regression tests
Write docs
Add SQL99 CONVERT command?
--
Tatsuo Ishii
2002-07-18 02:02:30 +00:00
|
|
|
if (SetClientEncoding(encoding, doit) < 0)
|
2000-10-25 19:44:44 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
if (interactive)
|
2000-10-25 19:44:44 +00:00
|
|
|
elog(ERROR, "Conversion between %s and %s is not supported",
|
Commit Karel's patch.
-------------------------------------------------------------------
Subject: Re: [PATCHES] encoding names
From: Karel Zak <zakkr@zf.jcu.cz>
To: Peter Eisentraut <peter_e@gmx.net>
Cc: pgsql-patches <pgsql-patches@postgresql.org>
Date: Fri, 31 Aug 2001 17:24:38 +0200
On Thu, Aug 30, 2001 at 01:30:40AM +0200, Peter Eisentraut wrote:
> > - convert encoding 'name' to 'id'
>
> I thought we decided not to add functions returning "new" names until we
> know exactly what the new names should be, and pending schema
Ok, the patch not to add functions.
> better
>
> ...(): encoding name too long
Fixed.
I found new bug in command/variable.c in parse_client_encoding(), nobody
probably never see this error:
if (pg_set_client_encoding(encoding))
{
elog(ERROR, "Conversion between %s and %s is not supported",
value, GetDatabaseEncodingName());
}
because pg_set_client_encoding() returns -1 for error and 0 as true.
It's fixed too.
IMHO it can be apply.
Karel
PS:
* following files are renamed:
src/utils/mb/Unicode/KOI8_to_utf8.map -->
src/utils/mb/Unicode/koi8r_to_utf8.map
src/utils/mb/Unicode/WIN_to_utf8.map -->
src/utils/mb/Unicode/win1251_to_utf8.map
src/utils/mb/Unicode/utf8_to_KOI8.map -->
src/utils/mb/Unicode/utf8_to_koi8r.map
src/utils/mb/Unicode/utf8_to_WIN.map -->
src/utils/mb/Unicode/utf8_to_win1251.map
* new file:
src/utils/mb/encname.c
* removed file:
src/utils/mb/common.c
--
Karel Zak <zakkr@zf.jcu.cz>
http://home.zf.jcu.cz/~zakkr/
C, PostgreSQL, PHP, WWW, http://docs.linux.cz, http://mape.jcu.cz
2001-09-06 04:57:30 +00:00
|
|
|
value, GetDatabaseEncodingName());
|
2002-05-17 01:19:19 +00:00
|
|
|
return NULL;
|
2000-10-25 19:44:44 +00:00
|
|
|
}
|
2002-05-17 01:19:19 +00:00
|
|
|
return value;
|
2000-10-26 17:31:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
/*
|
|
|
|
* SET SESSION AUTHORIZATION
|
|
|
|
*
|
2003-02-01 18:31:28 +00:00
|
|
|
* 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.
|
2002-05-17 01:19:19 +00:00
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
assign_session_authorization(const char *value, bool doit, bool interactive)
|
2002-05-06 19:47:30 +00:00
|
|
|
{
|
2003-02-01 18:31:28 +00:00
|
|
|
AclId usesysid = 0;
|
2002-05-17 01:19:19 +00:00
|
|
|
char *result;
|
2002-05-06 19:47:30 +00:00
|
|
|
|
2003-02-01 18:31:28 +00:00
|
|
|
if (strspn(value, "x") == NAMEDATALEN)
|
2002-05-17 01:19:19 +00:00
|
|
|
{
|
2003-02-01 18:31:28 +00:00
|
|
|
/* 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;
|
2002-05-17 01:19:19 +00:00
|
|
|
}
|
2003-02-01 18:31:28 +00:00
|
|
|
|
|
|
|
if (usesysid == 0)
|
2001-10-18 17:30:21 +00:00
|
|
|
{
|
2003-02-01 18:31:28 +00:00
|
|
|
/* not a saved ID, so look it up */
|
2002-05-17 01:19:19 +00:00
|
|
|
HeapTuple userTup;
|
2000-09-22 15:34:31 +00:00
|
|
|
|
2003-06-06 16:25:35 +00:00
|
|
|
if (! IsTransactionState())
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Can't do catalog lookups, so fail. The upshot of this is
|
|
|
|
* that session_authorization cannot be set in postgresql.conf,
|
|
|
|
* which seems like a good thing anyway.
|
|
|
|
*/
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
userTup = SearchSysCache(SHADOWNAME,
|
|
|
|
PointerGetDatum(value),
|
|
|
|
0, 0, 0);
|
|
|
|
if (!HeapTupleIsValid(userTup))
|
2002-04-21 19:12:46 +00:00
|
|
|
{
|
2002-05-17 01:19:19 +00:00
|
|
|
if (interactive)
|
|
|
|
elog(ERROR, "user \"%s\" does not exist", value);
|
|
|
|
return NULL;
|
2002-04-21 19:12:46 +00:00
|
|
|
}
|
2001-10-18 17:30:21 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
usesysid = ((Form_pg_shadow) GETSTRUCT(userTup))->usesysid;
|
1997-03-25 09:44:00 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
ReleaseSysCache(userTup);
|
2001-10-18 17:30:21 +00:00
|
|
|
}
|
2001-03-22 04:01:46 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
if (doit)
|
|
|
|
SetSessionAuthorization(usesysid);
|
|
|
|
|
2003-02-01 18:31:28 +00:00
|
|
|
result = (char *) malloc(NAMEDATALEN + 32);
|
2002-05-17 01:19:19 +00:00
|
|
|
if (!result)
|
|
|
|
return NULL;
|
|
|
|
|
2003-02-01 18:31:28 +00:00
|
|
|
memset(result, 'x', NAMEDATALEN);
|
|
|
|
|
|
|
|
snprintf(result + NAMEDATALEN, 32, "%lu", (unsigned long) usesysid);
|
2002-05-17 01:19:19 +00:00
|
|
|
|
|
|
|
return result;
|
2001-03-22 04:01:46 +00:00
|
|
|
}
|
1997-06-20 17:17:03 +00:00
|
|
|
|
2002-05-17 01:19:19 +00:00
|
|
|
const char *
|
|
|
|
show_session_authorization(void)
|
1997-09-07 05:04:48 +00:00
|
|
|
{
|
2003-02-01 18:31:28 +00:00
|
|
|
/*
|
|
|
|
* We can't use the stored string; see comments for
|
|
|
|
* assign_session_authorization
|
|
|
|
*/
|
2002-06-11 13:40:53 +00:00
|
|
|
return GetUserNameFromId(GetSessionUserId());
|
2001-03-22 04:01:46 +00:00
|
|
|
}
|