postgresql/contrib/vacuumlo/vacuumlo.c

420 lines
9.5 KiB
C
Raw Normal View History

/*-------------------------------------------------------------------------
*
* vacuumlo.c
* This removes orphaned large objects from a database.
*
2010-01-02 17:58:17 +01:00
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
2010-01-02 17:58:17 +01:00
* $PostgreSQL: pgsql/contrib/vacuumlo/vacuumlo.c,v 1.44 2010/01/02 16:57:33 momjian Exp $
*
*-------------------------------------------------------------------------
*/
2002-09-05 23:19:13 +02:00
#include "postgres_fe.h"
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
2002-09-05 23:19:13 +02:00
#ifdef HAVE_TERMIOS_H
#include <termios.h>
#endif
#include "libpq-fe.h"
#include "libpq/libpq-fs.h"
2000-11-21 18:54:21 +01:00
#define atooid(x) ((Oid) strtoul((x), NULL, 10))
#define BUFSIZE 1024
extern char *optarg;
2002-09-04 22:31:48 +02:00
extern int optind,
opterr,
optopt;
enum trivalue
{
TRI_DEFAULT,
TRI_NO,
TRI_YES
};
2002-09-04 22:31:48 +02:00
struct _param
{
char *pg_user;
enum trivalue pg_prompt;
2002-09-04 22:31:48 +02:00
char *pg_port;
char *pg_host;
int verbose;
int dry_run;
};
2002-09-04 22:31:48 +02:00
int vacuumlo(char *, struct _param *);
void usage(const char *progname);
/*
2000-11-21 18:54:21 +01:00
* This vacuums LOs of one database. It returns 0 on success, -1 on failure.
*/
1999-05-25 18:15:34 +02:00
int
2002-09-04 22:31:48 +02:00
vacuumlo(char *database, struct _param * param)
{
1999-05-25 18:15:34 +02:00
PGconn *conn;
PGresult *res,
2002-09-04 22:31:48 +02:00
*res2;
1999-05-25 18:15:34 +02:00
char buf[BUFSIZE];
2002-09-04 22:31:48 +02:00
int matched;
int deleted;
int i;
static char *password = NULL;
bool new_pass;
2002-09-04 22:31:48 +02:00
if (param->pg_prompt == TRI_YES && password == NULL)
password = simple_prompt("Password: ", 100, false);
/*
* Start the connection. Loop until we have a password if requested by
* backend.
*/
do
2002-09-04 22:31:48 +02:00
{
new_pass = false;
conn = PQsetdbLogin(param->pg_host,
param->pg_port,
NULL,
NULL,
database,
param->pg_user,
password);
if (!conn)
2002-09-04 22:31:48 +02:00
{
fprintf(stderr, "Connection to database \"%s\" failed\n",
database);
return -1;
}
if (PQstatus(conn) == CONNECTION_BAD &&
PQconnectionNeedsPassword(conn) &&
password == NULL &&
param->pg_prompt != TRI_NO)
{
PQfinish(conn);
password = simple_prompt("Password: ", 100, false);
new_pass = true;
}
} while (new_pass);
1999-05-25 18:15:34 +02:00
/* check to see that the backend connection was successfully made */
if (PQstatus(conn) == CONNECTION_BAD)
{
fprintf(stderr, "Connection to database \"%s\" failed:\n%s",
database, PQerrorMessage(conn));
2000-11-21 18:54:21 +01:00
PQfinish(conn);
1999-05-25 18:15:34 +02:00
return -1;
}
1999-05-25 18:15:34 +02:00
2002-09-04 22:31:48 +02:00
if (param->verbose)
{
1999-05-25 18:15:34 +02:00
fprintf(stdout, "Connected to %s\n", database);
2002-09-04 22:31:48 +02:00
if (param->dry_run)
fprintf(stdout, "Test run: no large objects will be removed!\n");
}
1999-05-25 18:15:34 +02:00
/*
* Don't get fooled by any non-system catalogs
*/
res = PQexec(conn, "SET search_path = pg_catalog");
if (PQresultStatus(res) != PGRES_COMMAND_OK)
{
fprintf(stderr, "Failed to set search_path:\n");
fprintf(stderr, "%s", PQerrorMessage(conn));
PQclear(res);
PQfinish(conn);
return -1;
}
PQclear(res);
1999-05-25 18:15:34 +02:00
/*
2000-11-21 18:54:21 +01:00
* First we create and populate the LO temp table
1999-05-25 18:15:34 +02:00
*/
buf[0] = '\0';
strcat(buf, "CREATE TEMP TABLE vacuum_l AS ");
if (PQserverVersion(conn) >= 80500)
strcat(buf, "SELECT oid AS lo FROM pg_largeobject_metadata");
else
strcat(buf, "SELECT DISTINCT loid AS lo FROM pg_largeobject");
2000-11-21 18:54:21 +01:00
res = PQexec(conn, buf);
if (PQresultStatus(res) != PGRES_COMMAND_OK)
{
fprintf(stderr, "Failed to create temp table:\n");
fprintf(stderr, "%s", PQerrorMessage(conn));
PQclear(res);
PQfinish(conn);
return -1;
}
PQclear(res);
2001-03-22 05:01:46 +01:00
2000-11-21 18:54:21 +01:00
/*
* Analyze the temp table so that planner will generate decent plans for
2005-10-15 04:49:52 +02:00
* the DELETEs below.
2000-11-21 18:54:21 +01:00
*/
buf[0] = '\0';
strcat(buf, "ANALYZE vacuum_l");
2000-11-21 18:54:21 +01:00
res = PQexec(conn, buf);
if (PQresultStatus(res) != PGRES_COMMAND_OK)
{
2000-11-21 18:54:21 +01:00
fprintf(stderr, "Failed to vacuum temp table:\n");
fprintf(stderr, "%s", PQerrorMessage(conn));
PQclear(res);
PQfinish(conn);
return -1;
1999-05-25 18:15:34 +02:00
}
PQclear(res);
/*
* Now find any candidate tables that have columns of type oid.
2000-11-21 18:54:21 +01:00
*
* NOTE: we ignore system tables and temp tables by the expedient of
* rejecting tables in schemas named 'pg_*'. In particular, the temp
* table formed above is ignored, and pg_largeobject will be too. If
* either of these were scanned, obviously we'd end up with nothing to
* delete...
2000-11-21 18:54:21 +01:00
*
2001-03-22 05:01:46 +01:00
* NOTE: the system oid column is ignored, as it has attnum < 1. This
* shouldn't matter for correctness, but it saves time.
1999-05-25 18:15:34 +02:00
*/
buf[0] = '\0';
strcat(buf, "SELECT s.nspname, c.relname, a.attname ");
strcat(buf, "FROM pg_class c, pg_attribute a, pg_namespace s, pg_type t ");
strcat(buf, "WHERE a.attnum > 0 AND NOT a.attisdropped ");
1999-05-25 18:15:34 +02:00
strcat(buf, " AND a.attrelid = c.oid ");
strcat(buf, " AND a.atttypid = t.oid ");
strcat(buf, " AND c.relnamespace = s.oid ");
strcat(buf, " AND t.typname in ('oid', 'lo') ");
2000-11-21 18:54:21 +01:00
strcat(buf, " AND c.relkind = 'r'");
strcat(buf, " AND s.nspname !~ '^pg_'");
2000-11-21 18:54:21 +01:00
res = PQexec(conn, buf);
if (PQresultStatus(res) != PGRES_TUPLES_OK)
1999-05-25 18:15:34 +02:00
{
2000-11-21 18:54:21 +01:00
fprintf(stderr, "Failed to find OID columns:\n");
fprintf(stderr, "%s", PQerrorMessage(conn));
PQclear(res);
PQfinish(conn);
return -1;
1999-05-25 18:15:34 +02:00
}
2000-11-21 18:54:21 +01:00
1999-05-25 18:15:34 +02:00
for (i = 0; i < PQntuples(res); i++)
{
char *schema,
*table,
1999-05-25 18:15:34 +02:00
*field;
schema = PQgetvalue(res, i, 0);
table = PQgetvalue(res, i, 1);
field = PQgetvalue(res, i, 2);
1999-05-25 18:15:34 +02:00
if (param->verbose)
fprintf(stdout, "Checking %s in %s.%s\n", field, schema, table);
2000-11-21 18:54:21 +01:00
snprintf(buf, BUFSIZE,
"DELETE FROM vacuum_l "
"WHERE lo IN (SELECT \"%s\" FROM \"%s\".\"%s\")",
field, schema, table);
2000-11-21 18:54:21 +01:00
res2 = PQexec(conn, buf);
1999-05-25 18:15:34 +02:00
if (PQresultStatus(res2) != PGRES_COMMAND_OK)
{
fprintf(stderr, "Failed to check %s in table %s.%s:\n",
field, schema, table);
2000-11-21 18:54:21 +01:00
fprintf(stderr, "%s", PQerrorMessage(conn));
1999-05-25 18:15:34 +02:00
PQclear(res2);
PQclear(res);
PQfinish(conn);
return -1;
}
PQclear(res2);
}
1999-05-25 18:15:34 +02:00
PQclear(res);
2000-11-21 18:54:21 +01:00
/*
2005-10-15 04:49:52 +02:00
* Run the actual deletes in a single transaction. Note that this would
* be a bad idea in pre-7.1 Postgres releases (since rolling back a table
* delete used to cause problems), but it should be safe now.
2000-11-21 18:54:21 +01:00
*/
1999-05-25 18:15:34 +02:00
res = PQexec(conn, "begin");
PQclear(res);
/*
* Finally, those entries remaining in vacuum_l are orphans.
*/
buf[0] = '\0';
strcat(buf, "SELECT lo ");
strcat(buf, "FROM vacuum_l");
2000-11-21 18:54:21 +01:00
res = PQexec(conn, buf);
if (PQresultStatus(res) != PGRES_TUPLES_OK)
{
2000-11-21 18:54:21 +01:00
fprintf(stderr, "Failed to read temp table:\n");
fprintf(stderr, "%s", PQerrorMessage(conn));
PQclear(res);
1999-05-25 18:15:34 +02:00
PQfinish(conn);
return -1;
}
2000-11-21 18:54:21 +01:00
1999-05-25 18:15:34 +02:00
matched = PQntuples(res);
2000-11-21 18:54:21 +01:00
deleted = 0;
1999-05-25 18:15:34 +02:00
for (i = 0; i < matched; i++)
{
2000-11-21 18:54:21 +01:00
Oid lo = atooid(PQgetvalue(res, i, 0));
1999-05-25 18:15:34 +02:00
if (param->verbose)
1999-05-25 18:15:34 +02:00
{
2000-11-21 18:54:21 +01:00
fprintf(stdout, "\rRemoving lo %6u ", lo);
1999-05-25 18:15:34 +02:00
fflush(stdout);
}
2002-09-04 22:31:48 +02:00
if (param->dry_run == 0)
{
if (lo_unlink(conn, lo) < 0)
{
fprintf(stderr, "\nFailed to remove lo %u: ", lo);
fprintf(stderr, "%s", PQerrorMessage(conn));
}
else
deleted++;
}
else
deleted++;
}
1999-05-25 18:15:34 +02:00
PQclear(res);
/*
* That's all folks!
*/
res = PQexec(conn, "end");
PQclear(res);
2000-11-21 18:54:21 +01:00
1999-05-25 18:15:34 +02:00
PQfinish(conn);
if (param->verbose)
fprintf(stdout, "\r%s %d large objects from %s.\n",
2005-10-15 04:49:52 +02:00
(param->dry_run ? "Would remove" : "Removed"), deleted, database);
1999-05-25 18:15:34 +02:00
return 0;
}
void
usage(const char *progname)
2002-09-04 22:31:48 +02:00
{
printf("%s removes unreferenced large objects from databases.\n\n", progname);
printf("Usage:\n %s [OPTION]... DBNAME...\n\n", progname);
2009-02-25 14:34:32 +01:00
printf("Options:\n");
printf(" -h HOSTNAME database server host or socket directory\n");
printf(" -n don't remove large objects, just show what would be done\n");
printf(" -p PORT database server port\n");
printf(" -U USERNAME user name to connect as\n");
printf(" -w never prompt for password\n");
2009-02-25 14:34:32 +01:00
printf(" -W force password prompt\n");
printf(" -v write a lot of progress messages\n");
printf(" --help show this help, then exit\n");
printf(" --version output version information, then exit\n");
2009-02-25 14:34:32 +01:00
printf("\n");
printf("Report bugs to <pgsql-bugs@postgresql.org>.\n");
}
int
main(int argc, char **argv)
{
1999-05-25 18:15:34 +02:00
int rc = 0;
2002-09-04 22:31:48 +02:00
struct _param param;
int c;
int port;
const char *progname;
progname = get_progname(argv[0]);
1999-05-25 18:15:34 +02:00
/* Parameter handling */
2002-09-04 22:31:48 +02:00
param.pg_user = NULL;
param.pg_prompt = TRI_DEFAULT;
param.pg_host = NULL;
param.pg_port = NULL;
2002-09-04 22:31:48 +02:00
param.verbose = 0;
param.dry_run = 0;
if (argc > 1)
{
if (strcmp(argv[1], "--help") == 0 || strcmp(argv[1], "-?") == 0)
{
usage(progname);
exit(0);
}
if (strcmp(argv[1], "--version") == 0 || strcmp(argv[1], "-V") == 0)
{
puts("vacuumlo (PostgreSQL) " PG_VERSION);
exit(0);
}
}
2002-09-04 22:31:48 +02:00
while (1)
{
c = getopt(argc, argv, "h:U:p:vnwW");
2002-09-04 22:31:48 +02:00
if (c == -1)
break;
switch (c)
{
case '?':
fprintf(stderr, _("Try \"%s --help\" for more information.\n"), progname);
2002-09-04 22:31:48 +02:00
exit(1);
case ':':
exit(1);
case 'v':
param.verbose = 1;
break;
case 'n':
param.dry_run = 1;
param.verbose = 1;
break;
case 'U':
param.pg_user = strdup(optarg);
break;
case 'w':
param.pg_prompt = TRI_NO;
break;
2002-09-04 22:31:48 +02:00
case 'W':
param.pg_prompt = TRI_YES;
2002-09-04 22:31:48 +02:00
break;
case 'p':
port = strtol(optarg, NULL, 10);
if ((port < 1) || (port > 65535))
{
fprintf(stderr, "%s: invalid port number: %s\n", progname, optarg);
2002-09-04 22:31:48 +02:00
exit(1);
}
param.pg_port = strdup(optarg);
break;
case 'h':
param.pg_host = strdup(optarg);
break;
}
}
2002-09-04 22:31:48 +02:00
/* No database given? Show usage */
2002-12-03 08:12:18 +01:00
if (optind >= argc)
2002-09-04 22:31:48 +02:00
{
fprintf(stderr, "vacuumlo: missing required argument: database name\n");
fprintf(stderr, "Try 'vacuumlo -?' for help.\n");
exit(1);
}
1999-05-25 18:15:34 +02:00
2002-09-04 22:31:48 +02:00
for (c = optind; c < argc; c++)
{
/* Work on selected database */
rc += (vacuumlo(argv[c], &param) != 0);
1999-05-25 18:15:34 +02:00
}
return rc;
}