postgresql/src/bin/psql/common.c

727 lines
14 KiB
C
Raw Normal View History

2000-01-19 00:30:24 +01:00
/*
* psql - the PostgreSQL interactive terminal
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
2000-01-19 00:30:24 +01:00
*
* $Header: /cvsroot/pgsql/src/bin/psql/common.c,v 1.72 2003/08/14 18:48:35 tgl Exp $
2000-01-19 00:30:24 +01:00
*/
#include "postgres_fe.h"
#include "common.h"
#include <ctype.h>
#ifndef HAVE_STRDUP
#include <strdup.h>
#endif
#include <signal.h>
#ifndef WIN32
#include <sys/time.h>
1999-11-05 00:14:30 +01:00
#include <unistd.h> /* for write() */
#include <setjmp.h>
#else
#include <io.h> /* for _write() */
#include <win32.h>
#include <sys/timeb.h> /* for _ftime() */
#endif
2000-02-16 14:15:26 +01:00
#include "libpq-fe.h"
#include "pqsignal.h"
#include "settings.h"
#include "variables.h"
#include "command.h"
#include "copy.h"
#include "prompt.h"
#include "print.h"
#include "mainloop.h"
/* Workarounds for Windows */
/* Probably to be moved up the source tree in the future, perhaps to be replaced by
* more specific checks like configure-style HAVE_GETTIMEOFDAY macros.
*/
#ifndef WIN32
typedef struct timeval TimevalStruct;
2003-08-04 02:43:34 +02:00
#define GETTIMEOFDAY(T) gettimeofday(T, NULL)
#define DIFF_MSEC(T, U) ((((T)->tv_sec - (U)->tv_sec) * 1000000.0 + (T)->tv_usec - (U)->tv_usec) / 1000.0)
#else
typedef struct _timeb TimevalStruct;
2003-08-04 02:43:34 +02:00
#define GETTIMEOFDAY(T) _ftime(T)
#define DIFF_MSEC(T, U) ((((T)->time - (U)->time) * 1000.0 + (T)->millitm - (U)->millitm))
#endif
extern bool prompt_state;
static bool is_transact_command(const char *query);
/*
* "Safe" wrapper around strdup()
*/
1999-11-05 00:14:30 +01:00
char *
xstrdup(const char *string)
{
1999-11-05 00:14:30 +01:00
char *tmp;
if (!string)
{
fprintf(stderr, gettext("%s: xstrdup: cannot duplicate null pointer (internal error)\n"),
pset.progname);
1999-11-05 00:14:30 +01:00
exit(EXIT_FAILURE);
}
tmp = strdup(string);
if (!tmp)
{
psql_error("out of memory\n");
1999-11-05 00:14:30 +01:00
exit(EXIT_FAILURE);
}
return tmp;
}
/*
* setQFout
* -- handler for -o command line option and \o command
*
* Tries to open file fname (or pipe if fname starts with '|')
* and stores the file handle in pset)
* Upon failure, sets stdout and returns false.
*/
bool
setQFout(const char *fname)
{
1999-11-05 00:14:30 +01:00
bool status = true;
1999-11-05 00:14:30 +01:00
/* Close old file/pipe */
if (pset.queryFout && pset.queryFout != stdout && pset.queryFout != stderr)
1999-11-05 00:14:30 +01:00
{
if (pset.queryFoutPipe)
pclose(pset.queryFout);
1999-11-05 00:14:30 +01:00
else
fclose(pset.queryFout);
1999-11-05 00:14:30 +01:00
}
1999-11-05 00:14:30 +01:00
/* If no filename, set stdout */
if (!fname || fname[0] == '\0')
{
pset.queryFout = stdout;
pset.queryFoutPipe = false;
1999-11-05 00:14:30 +01:00
}
else if (*fname == '|')
{
pset.queryFout = popen(fname + 1, "w");
pset.queryFoutPipe = true;
1999-11-05 00:14:30 +01:00
}
else
{
pset.queryFout = fopen(fname, "w");
pset.queryFoutPipe = false;
1999-11-05 00:14:30 +01:00
}
if (!(pset.queryFout))
1999-11-05 00:14:30 +01:00
{
2000-01-19 00:30:24 +01:00
psql_error("%s: %s\n", fname, strerror(errno));
pset.queryFout = stdout;
pset.queryFoutPipe = false;
1999-11-05 00:14:30 +01:00
status = false;
}
/* Direct signals */
#ifndef WIN32
pqsignal(SIGPIPE, pset.queryFoutPipe ? SIG_IGN : SIG_DFL);
#endif
1999-11-05 00:14:30 +01:00
return status;
}
2000-01-19 00:30:24 +01:00
/*
* Error reporting for scripts. Errors should look like
* psql:filename:lineno: message
2000-01-19 00:30:24 +01:00
*
*/
void
psql_error(const char *fmt,...)
2000-01-19 00:30:24 +01:00
{
va_list ap;
2000-01-19 00:30:24 +01:00
fflush(stdout);
if (pset.queryFout != stdout)
fflush(pset.queryFout);
2000-01-19 00:30:24 +01:00
if (pset.inputfile)
fprintf(stderr, "%s:%s:%u: ", pset.progname, pset.inputfile, pset.lineno);
va_start(ap, fmt);
vfprintf(stderr, gettext(fmt), ap);
va_end(ap);
2000-01-19 00:30:24 +01:00
}
/*
* for backend Notice messages (INFO, WARNING, etc)
*/
2000-01-19 00:30:24 +01:00
void
NoticeProcessor(void *arg, const char *message)
2000-01-19 00:30:24 +01:00
{
(void) arg; /* not used */
psql_error("%s", message);
2000-01-19 00:30:24 +01:00
}
/*
* Code to support query cancellation
*
* Before we start a query, we enable a SIGINT signal catcher that sends a
* cancel request to the backend. Note that sending the cancel directly from
* the signal handler is safe because PQrequestCancel() is written to make it
* so. We use write() to print to stdout because it's better to use simple
* facilities in a signal handler.
*/
2003-08-04 02:43:34 +02:00
static PGconn *volatile cancelConn = NULL;
volatile bool cancel_pressed = false;
#ifndef WIN32
#define write_stderr(String) write(fileno(stderr), String, strlen(String))
void
handle_sigint(SIGNAL_ARGS)
{
int save_errno = errno;
/* Don't muck around if prompting for a password. */
if (prompt_state)
return;
1999-11-05 00:14:30 +01:00
if (cancelConn == NULL)
siglongjmp(main_loop_jmp, 1);
cancel_pressed = true;
1999-11-05 00:14:30 +01:00
if (PQrequestCancel(cancelConn))
write_stderr("Cancel request sent\n");
1999-11-05 00:14:30 +01:00
else
{
write_stderr("Could not send cancel request: ");
write_stderr(PQerrorMessage(cancelConn));
1999-11-05 00:14:30 +01:00
}
errno = save_errno; /* just in case the write changed it */
}
#endif /* not WIN32 */
/* ConnectionUp
*
* Returns whether our backend connection is still there.
*/
2003-08-04 02:43:34 +02:00
static bool
ConnectionUp()
{
return PQstatus(pset.db) != CONNECTION_BAD;
}
/* CheckConnection
*
* Verify that we still have a good connection to the backend, and if not,
* see if it can be restored.
*
* Returns true if either the connection was still there, or it could be
2003-08-04 02:43:34 +02:00
* restored successfully; false otherwise. If, however, there was no
* connection and the session is non-interactive, this will exit the program
* with a code of EXIT_BADCONN.
*/
static bool
CheckConnection(void)
{
2003-08-04 02:43:34 +02:00
bool OK;
OK = ConnectionUp();
if (!OK)
{
if (!pset.cur_cmd_interactive)
{
psql_error("connection to server was lost\n");
exit(EXIT_BADCONN);
}
fputs(gettext("The connection to the server was lost. Attempting reset: "), stderr);
PQreset(pset.db);
OK = ConnectionUp();
if (!OK)
{
fputs(gettext("Failed.\n"), stderr);
PQfinish(pset.db);
pset.db = NULL;
ResetCancelConn();
UnsyncVariables();
}
else
fputs(gettext("Succeeded.\n"), stderr);
}
return OK;
}
/*
* SetCancelConn
*
* Set cancelConn to point to the current database connection.
*/
2003-08-04 02:43:34 +02:00
static void
SetCancelConn(void)
{
2003-08-04 02:43:34 +02:00
cancelConn = pset.db;
}
/*
* ResetCancelConn
*
2003-08-04 02:43:34 +02:00
* Set cancelConn to NULL. I don't know what this means exactly, but it saves
* having to export the variable.
*/
2003-08-04 02:43:34 +02:00
void
ResetCancelConn(void)
{
2003-08-04 02:43:34 +02:00
cancelConn = NULL;
}
/*
* AcceptResult
*
* Checks whether a result is valid, giving an error message if necessary;
* resets cancelConn as needed, and ensures that the connection to the backend
* is still up.
*
* Returns true for valid result, false for error state.
*/
static bool
AcceptResult(const PGresult *result)
{
2003-08-04 02:43:34 +02:00
bool OK = true;
ResetCancelConn();
if (!result)
2003-08-04 02:43:34 +02:00
OK = false;
else
switch (PQresultStatus(result))
{
case PGRES_COMMAND_OK:
case PGRES_TUPLES_OK:
case PGRES_COPY_IN:
/* Fine, do nothing */
break;
case PGRES_COPY_OUT:
/* keep cancel connection for copy out state */
SetCancelConn();
break;
default:
OK = false;
break;
}
2003-08-04 02:43:34 +02:00
if (!OK)
{
psql_error("%s", PQerrorMessage(pset.db));
CheckConnection();
}
return OK;
}
1999-11-05 00:14:30 +01:00
/*
* PSQLexec
*
* This is the way to send "backdoor" queries (those not directly entered
* by the user). It is subject to -E but not -e.
*
* In autocommit-off mode, a new transaction block is started if start_xact
* is true; nothing special is done when start_xact is false. Typically,
* start_xact = false is used for SELECTs and explicit BEGIN/COMMIT commands.
*/
PGresult *
PSQLexec(const char *query, bool start_xact)
{
PGresult *res;
2003-08-04 02:43:34 +02:00
int echo_hidden;
1999-11-05 00:14:30 +01:00
if (!pset.db)
1999-11-05 00:14:30 +01:00
{
psql_error("You are currently not connected to a database.\n");
1999-11-05 00:14:30 +01:00
return NULL;
}
echo_hidden = SwitchVariable(pset.vars, "ECHO_HIDDEN", "noexec", NULL);
if (echo_hidden != VAR_NOTSET)
1999-11-05 00:14:30 +01:00
{
printf("********* QUERY **********\n"
"%s\n"
"**************************\n\n", query);
1999-11-05 00:14:30 +01:00
fflush(stdout);
if (echo_hidden == 1) /* noexec? */
return NULL;
}
1999-11-05 00:14:30 +01:00
SetCancelConn();
if (start_xact && PQtransactionStatus(pset.db) == PQTRANS_IDLE &&
!GetVariableBool(pset.vars, "AUTOCOMMIT"))
{
res = PQexec(pset.db, "BEGIN");
if (PQresultStatus(res) != PGRES_COMMAND_OK)
{
psql_error("%s", PQerrorMessage(pset.db));
PQclear(res);
ResetCancelConn();
return NULL;
}
PQclear(res);
}
res = PQexec(pset.db, query);
if (!AcceptResult(res) && res)
{
PQclear(res);
res = NULL;
}
return res;
}
/*
* PrintNotifications: check for asynchronous notifications, and print them out
*
*/
static void
PrintNotifications(void)
{
PGnotify *notify;
1999-11-05 00:14:30 +01:00
while ((notify = PQnotifies(pset.db)))
{
fprintf(pset.queryFout, gettext("Asynchronous notification \"%s\" received from server process with PID %d.\n"),
notify->relname, notify->be_pid);
PQfreemem(notify);
fflush(pset.queryFout);
}
}
1999-11-05 00:14:30 +01:00
/*
* PrintQueryTuples: assuming query result is OK, print its tuples
*
* Returns true if successful, false otherwise.
*/
2003-08-04 02:43:34 +02:00
static bool
PrintQueryTuples(const PGresult *results)
{
2003-08-04 02:43:34 +02:00
/* write output to \g argument, if any */
if (pset.gfname)
{
FILE *queryFout_copy = pset.queryFout;
bool queryFoutPipe_copy = pset.queryFoutPipe;
2003-08-04 02:43:34 +02:00
pset.queryFout = stdout; /* so it doesn't get closed */
2003-08-04 02:43:34 +02:00
/* open file/pipe */
if (!setQFout(pset.gfname))
{
pset.queryFout = queryFout_copy;
pset.queryFoutPipe = queryFoutPipe_copy;
return false;
2003-08-04 02:43:34 +02:00
}
2003-08-04 02:43:34 +02:00
printQuery(results, &pset.popt, pset.queryFout);
2003-08-04 02:43:34 +02:00
/* close file/pipe, restore old setting */
setQFout(NULL);
2003-08-04 02:43:34 +02:00
pset.queryFout = queryFout_copy;
pset.queryFoutPipe = queryFoutPipe_copy;
2003-08-04 02:43:34 +02:00
free(pset.gfname);
pset.gfname = NULL;
}
else
printQuery(results, &pset.popt, pset.queryFout);
return true;
}
/*
* PrintQueryResults: analyze query results and print them out
*
* Note: Utility function for use by SendQuery() only.
*
* Returns true if the query executed successfully, false otherwise.
*/
static bool
2003-08-04 02:43:34 +02:00
PrintQueryResults(PGresult *results,
const TimevalStruct *before,
const TimevalStruct *after)
{
2003-08-04 02:43:34 +02:00
bool success = false;
2003-08-04 02:43:34 +02:00
if (!results)
return false;
switch (PQresultStatus(results))
{
case PGRES_TUPLES_OK:
success = PrintQueryTuples(results);
2003-08-04 02:43:34 +02:00
break;
case PGRES_EMPTY_QUERY:
success = true;
break;
case PGRES_COMMAND_OK:
{
char buf[10];
success = true;
2003-08-04 02:43:34 +02:00
sprintf(buf, "%u", (unsigned int) PQoidValue(results));
if (!QUIET())
{
2003-08-04 02:43:34 +02:00
if (pset.popt.topt.format == PRINT_HTML)
{
fputs("<p>", pset.queryFout);
html_escaped_print(PQcmdStatus(results),
pset.queryFout);
2003-08-04 02:43:34 +02:00
fputs("</p>\n", pset.queryFout);
}
else
fprintf(pset.queryFout, "%s\n", PQcmdStatus(results));
}
2003-08-04 02:43:34 +02:00
SetVariable(pset.vars, "LASTOID", buf);
break;
2003-08-04 02:43:34 +02:00
}
case PGRES_COPY_OUT:
success = handleCopyOut(pset.db, pset.queryFout);
break;
2003-08-04 02:43:34 +02:00
case PGRES_COPY_IN:
if (pset.cur_cmd_interactive && !QUIET())
puts(gettext("Enter data to be copied followed by a newline.\n"
"End with a backslash and a period on a line by itself."));
2003-08-04 02:43:34 +02:00
success = handleCopyIn(pset.db, pset.cur_cmd_source,
pset.cur_cmd_interactive ? get_prompt(PROMPT_COPY) : NULL);
break;
default:
2003-08-04 02:43:34 +02:00
break;
}
2003-08-04 02:43:34 +02:00
fflush(pset.queryFout);
/* may need this to recover from conn loss during COPY */
2003-08-04 02:43:34 +02:00
if (!CheckConnection())
return false;
/* Possible microtiming output */
if (pset.timing && success)
printf(gettext("Time: %.2f ms\n"), DIFF_MSEC(after, before));
return success;
}
/*
* SendQuery: send the query string to the backend
* (and print out results)
*
* Note: This is the "front door" way to send a query. That is, use it to
* send queries actually entered by the user. These queries will be subject to
* single step mode.
* To send "back door" queries (generated by slash commands, etc.) in a
* controlled way, use PSQLexec().
*
* Returns true if the query executed successfully, false otherwise.
*/
bool
SendQuery(const char *query)
{
PGresult *results;
2003-08-04 02:43:34 +02:00
TimevalStruct before,
after;
bool OK;
if (!pset.db)
{
psql_error("You are currently not connected to a database.\n");
return false;
}
if (GetVariableBool(pset.vars, "SINGLESTEP"))
{
char buf[3];
printf(gettext("***(Single step mode: verify command)*******************************************\n"
"%s\n"
"***(press return to proceed or enter x and return to cancel)********************\n"),
query);
fflush(stdout);
if (fgets(buf, sizeof(buf), stdin) != NULL)
if (buf[0] == 'x')
return false;
}
else if (VariableEquals(pset.vars, "ECHO", "queries"))
{
puts(query);
fflush(stdout);
}
2003-08-04 02:43:34 +02:00
SetCancelConn();
if (PQtransactionStatus(pset.db) == PQTRANS_IDLE &&
!GetVariableBool(pset.vars, "AUTOCOMMIT") &&
!is_transact_command(query))
{
results = PQexec(pset.db, "BEGIN");
if (PQresultStatus(results) != PGRES_COMMAND_OK)
{
psql_error("%s", PQerrorMessage(pset.db));
PQclear(results);
ResetCancelConn();
return false;
}
PQclear(results);
}
if (pset.timing)
GETTIMEOFDAY(&before);
results = PQexec(pset.db, query);
if (pset.timing)
GETTIMEOFDAY(&after);
OK = (AcceptResult(results) && PrintQueryResults(results, &before, &after));
PQclear(results);
PrintNotifications();
return OK;
}
/*
* check whether a query string begins with BEGIN/COMMIT/ROLLBACK/START XACT
*/
static bool
is_transact_command(const char *query)
{
2003-08-04 02:43:34 +02:00
int wordlen;
/*
* First we must advance over any whitespace and comments.
*/
while (*query)
{
if (isspace((unsigned char) *query))
query++;
else if (query[0] == '-' && query[1] == '-')
{
query += 2;
while (*query && *query != '\n')
query++;
}
else if (query[0] == '/' && query[1] == '*')
{
query += 2;
while (*query)
{
if (query[0] == '*' && query[1] == '/')
{
query += 2;
break;
}
else
query++;
}
}
else
break; /* found first token */
}
/*
* Check word length ("beginx" is not "begin").
*/
wordlen = 0;
while (isalpha((unsigned char) query[wordlen]))
wordlen++;
if (wordlen == 5 && strncasecmp(query, "begin", 5) == 0)
return true;
if (wordlen == 6 && strncasecmp(query, "commit", 6) == 0)
return true;
if (wordlen == 8 && strncasecmp(query, "rollback", 8) == 0)
return true;
if (wordlen == 5 && strncasecmp(query, "abort", 5) == 0)
return true;
if (wordlen == 3 && strncasecmp(query, "end", 3) == 0)
return true;
if (wordlen == 5 && strncasecmp(query, "start", 5) == 0)
return true;
return false;
}
2003-08-04 02:43:34 +02:00
char
parse_char(char **buf)
{
2003-08-04 02:43:34 +02:00
long l;
2003-08-04 02:43:34 +02:00
l = strtol(*buf, buf, 0);
--*buf;
return (char) l;
}
/*
* Test if the current user is a database superuser.
*
* Note: this will correctly detect superuserness only with a protocol-3.0
* or newer backend; otherwise it will always say "false".
*/
bool
is_superuser(void)
{
const char *val;
if (!pset.db)
return false;
val = PQparameterStatus(pset.db, "is_superuser");
if (val && strcmp(val, "on") == 0)
return true;
return false;
}