oid2name.c 13 KB
Newer Older
1
/*
2 3 4 5 6
 * oid2name, a PostgreSQL app to map OIDs on the filesystem
 * to table and database names.
 *
 * Originally by
 * B. Palmer, bpalmer@crimelabs.net 1-17-2001
7
 */
8
#include "postgres_fe.h"
9

Bruce Momjian's avatar
Bruce Momjian committed
10
#include <unistd.h>
11
#ifdef HAVE_GETOPT_H
12
#include <getopt.h>
13
#endif
14 15 16

#include "libpq-fe.h"

17 18 19 20 21 22 23 24
/* an extensible array to keep track of elements to show */
typedef struct
{
	char  **array;
	int		num;
	int		alloc;
} eary;

25
/* these are the opts structures for command line params */
26 27
struct options
{
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
	eary	   *tables;
	eary	   *oids;
	eary	   *filenodes;

	bool		quiet;
	bool		systables;
	bool		indexes;
	bool		nodb;
	bool		extended;
	bool		tablespaces;

	char		*dbname;
	char		*hostname;
	char		*port;
	char		*username;
	char		*password;
44 45 46
};

/* function prototypes */
47
void		get_opts(int, char **, struct options *);
48 49 50 51 52 53 54 55 56
void	   *myalloc(size_t size);
void		add_one_elt(char *eltname, eary *eary);
char	   *get_comma_elts(eary *eary);
PGconn	   *sql_conn(struct options *);
int			sql_exec(PGconn *, const char *sql, bool quiet);
void		sql_exec_dumpalldbs(PGconn *, struct options *);
void		sql_exec_dumpalltables(PGconn *, struct options *);
void		sql_exec_searchtables(PGconn *, struct options *);
void		sql_exec_dumpalltbspc(PGconn *, struct options *);
57

58
/* function to parse command line options and check for some usage errors. */
59 60
void
get_opts(int argc, char **argv, struct options * my_opts)
61
{
62
	int			c;
63

64
	/* set the defaults */
65 66 67 68 69 70
	my_opts->quiet = false;
	my_opts->systables = false;
	my_opts->indexes = false;
	my_opts->nodb = false;
	my_opts->extended = false;
	my_opts->tablespaces = false;
71

72
	/* get opts */
73
	while ((c = getopt(argc, argv, "H:p:U:P:d:t:o:f:qSxish?")) != -1)
74
	{
75 76 77 78
		switch (c)
		{
				/* specify the database */
			case 'd':
79 80
				my_opts->dbname = (char *) myalloc(strlen(optarg));
				sscanf(optarg, "%s", my_opts->dbname);
81 82
				break;

83
				/* specify one tablename to show */
84
			case 't':
85
				add_one_elt(optarg, my_opts->tables);
86 87
				break;

88
				/* specify one Oid to show */
89
			case 'o':
90 91
				add_one_elt(optarg, my_opts->oids);
				break;
92

93 94 95
				/* specify one filenode to show*/
			case 'f':
				add_one_elt(optarg, my_opts->filenodes);
96 97
				break;

98
				/* don't show headers */
99
			case 'q':
100
				my_opts->quiet = true;
101 102
				break;

103 104
				/* host to connect to */
			case 'H':
105 106
				my_opts->hostname = (char *) myalloc(strlen(optarg));
				sscanf(optarg, "%s", my_opts->hostname);
107 108 109 110
				break;

				/* port to connect to on remote host */
			case 'p':
111 112
				my_opts->port = (char *) myalloc(strlen(optarg));
				sscanf(optarg, "%s", my_opts->port);
113 114 115 116
				break;

				/* username */
			case 'U':
117 118
				my_opts->username = (char *) myalloc(strlen(optarg));
				sscanf(optarg, "%s", my_opts->username);
119 120 121 122
				break;

				/* password */
			case 'P':
123 124
				my_opts->password = (char *) myalloc(strlen(optarg));
				sscanf(optarg, "%s", my_opts->password);
125 126 127
				break;

				/* display system tables */
128 129 130 131 132 133 134 135 136 137
			case 'S':
				my_opts->systables = true;
				break;

				/* also display indexes */
			case 'i':
				my_opts->indexes = true;
				break;

				/* display extra columns */
138
			case 'x':
139 140 141 142 143 144
				my_opts->extended = true;
				break;

				/* dump tablespaces only */
			case 's':
				my_opts->tablespaces = true;
145 146 147 148 149
				break;

				/* help! (ugly in code for easier editing) */
			case '?':
			case 'h':
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
				fprintf(stderr,
"Usage: oid2name [-s|-d database] [-S][-i][-q][-x] [-t table|-o oid|-f file] ...\n"
"        default action        show all database Oids\n"
"        -d database           database to connect to\n"
"        -s                    show all tablespaces\n"
"        -S                    show system objects too\n"
"        -i                    show indexes and sequences too\n"
"        -x                    extended (show additional columns)\n"
"        -q                    quiet (don't show headers)\n"
"        -t <table>            show info for table named <table>\n"
"        -o <oid>              show info for table with Oid <oid>\n"
"        -f <filenode>         show info for table with filenode <filenode>\n"
"        -H host               connect to remote host\n"
"        -p port               host port to connect to\n"
"        -U username           username to connect with\n"
"        -P password           password for username\n"
"                              (see also $PGPASSWORD and ~/.pgpass)\n"
);
168 169 170
				exit(1);
				break;
		}
171 172 173
	}
}

174 175
void *
myalloc(size_t size)
176
{
177 178
	void *ptr = malloc(size);
	if (!ptr)
179
	{
180 181
		fprintf(stderr, "out of memory");
		exit(1);
182
	}
183 184
	return ptr;
}
185

186 187 188 189 190 191 192 193 194
/*
 * add_one_elt
 *
 * Add one element to a (possibly empty) eary struct.
 */
void
add_one_elt(char *eltname, eary *eary)
{
	if (eary->alloc == 0)
195
	{
196 197
		eary->alloc = 8;
		eary->array = (char **) myalloc(8 * sizeof(char *));
198
	}
199
	else if (eary->num >= eary->alloc)
200
	{
201 202 203 204 205 206 207 208
		eary->alloc *= 2;
		eary->array = (char **)
			realloc(eary->array, eary->alloc * sizeof(char *));
		if (!eary->array)
		{
			fprintf(stderr, "out of memory");
			exit(1);
		}
209 210
	}

211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	eary->array[eary->num] = strdup(eltname);
	eary->num++;
}

/*
 * get_comma_elts
 *
 * Return the elements of an eary as a (freshly allocated) single string, in
 * single quotes, separated by commas and properly escaped for insertion in an
 * SQL statement.
 */
char *
get_comma_elts(eary *eary)
{
	char *ret,
		 *ptr;
	int i, length = 0;

	if (eary->num == 0)
		return "";

	/*
	 * PQescapeString wants 2 * length + 1 bytes of breath space.  Add two
	 * chars per element for the single quotes and one for the comma.
	 */
	for (i = 0; i < eary->num; i++)
		length += strlen(eary->array[i]);

	ret = (char *) myalloc(length * 2 + 4 * eary->num);
	ptr = ret;

	for (i = 0; i < eary->num; i++)
243
	{
244 245 246 247 248
		if (i != 0)
			sprintf(ptr++, ",");
		sprintf(ptr++, "'");
		ptr += PQescapeString(ptr, eary->array[i], strlen(eary->array[i]));
		sprintf(ptr++, "'");
249 250
	}

251 252 253 254 255 256 257 258 259
	return ret;
}

/* establish connection with database. */
PGconn *
sql_conn(struct options * my_opts)
{
	PGconn	   *conn;

260
	/* login */
261 262 263 264 265 266 267
	conn = PQsetdbLogin(my_opts->hostname,
			            my_opts->port,
						NULL,  /* options */
						NULL,  /* tty */
						my_opts->dbname,
						my_opts->username,
						my_opts->password);
268 269

	/* deal with errors */
270
	if (PQstatus(conn) != CONNECTION_OK)
271
	{
272
		fprintf(stderr, "%s: connection to database '%s' failed.\n", "oid2name", my_opts->dbname);
273 274 275 276 277 278 279 280
		fprintf(stderr, "%s", PQerrorMessage(conn));

		PQfinish(conn);
		exit(1);
	}

	/* return the conn if good */
	return conn;
281 282
}

283 284 285
/*
 * Actual code to make call to the database and print the output data.
 */
286
int
287
sql_exec(PGconn *conn, const char *todo, bool quiet)
288
{
289 290
	PGresult   *res;

291 292 293 294 295
	int			nfields;
	int			nrows;
	int			i, j, l;
	int		   *length;
	char	   *pad;
296 297 298 299 300 301 302

	/* make the call */
	res = PQexec(conn, todo);

	/* check and deal with errors */
	if (!res || PQresultStatus(res) > 2)
	{
303 304
		fprintf(stderr, "oid2name: query failed: %s\n", PQerrorMessage(conn));
		fprintf(stderr, "oid2name: query was: %s\n", todo);
305 306 307 308 309 310 311

		PQclear(res);
		PQfinish(conn);
		exit(-1);
	}

	/* get the number of fields */
312 313
	nrows = PQntuples(res);
	nfields = PQnfields(res);
314

315 316 317 318
	/* for each field, get the needed width */
	length = (int *) myalloc(sizeof(int) * nfields);
	for (j = 0; j < nfields; j++)
		length[j] = strlen(PQfname(res, j));
319

320 321 322 323 324 325 326 327 328
	for (i = 0; i < nrows; i++)
	{
		for (j = 0; j < nfields; j++)
		{
		   	l = strlen(PQgetvalue(res, i, j));
			if (l > length[j])
				length[j] = strlen(PQgetvalue(res, i, j));
		}
	}
329

330 331
	/* print a header */
	if (!quiet)
332
	{
333 334 335 336 337 338 339 340 341 342 343 344
		for (j = 0, l = 0; j < nfields; j++)
		{
			fprintf(stdout, "%*s", length[j] + 2, PQfname(res, j));
			l += length[j] + 2;
		}
		fprintf(stdout, "\n");
		pad = (char *) myalloc(l + 1);
		MemSet(pad, '-', l);
		pad[l] = '\0';
		fprintf(stdout, "%s\n", pad);
		free(pad);
	}
345

346 347 348 349 350 351
	/* for each row, dump the information */
	for (i = 0; i < nrows; i++)
	{
		for (j = 0; j < nfields; j++)
			fprintf(stdout, "%*s", length[j] + 2, PQgetvalue(res, i, j));
		fprintf(stdout, "\n");
352 353
	}

354
	/* cleanup */
355
	PQclear(res);
356
	free(length);
357 358

	return 0;
359 360
}

361 362 363
/*
 * Dump all databases.  There are no system objects to worry about.
 */
364
void
365
sql_exec_dumpalldbs(PGconn *conn, struct options *opts)
366
{
367
	char		todo[1024];
368

369
	/* get the oid and database name from the system pg_database table */
370 371 372
	snprintf(todo, 1024, "SELECT d.oid AS \"Oid\", datname AS \"Database Name\", "
			 "spcname AS \"Tablespace\" FROM pg_database d JOIN pg_tablespace t ON "
			 "(dattablespace = t.oid) ORDER BY 2");
373

374
	sql_exec(conn, todo, opts->quiet);
375 376
}

377 378 379
/* 
 * Dump all tables, indexes and sequences in the current database.
 */
380
void
381
sql_exec_dumpalltables(PGconn *conn, struct options *opts)
382
{
383
	char		todo[1024];
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
	char	   *addfields = ",c.oid AS \"Oid\", nspname AS \"Schema\", spcname as \"Tablespace\" ";

	snprintf(todo, 1024,
			 "SELECT relfilenode as \"Filenode\", relname as \"Table Name\" %s "
			 "FROM pg_class c "
			 "	LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace "
			 "	LEFT JOIN pg_catalog.pg_database d ON d.datname = current_database(),"
			 "	pg_catalog.pg_tablespace t "
			 "WHERE relkind IN ('r'%s) AND "
			 "	%s"
			 "		t.oid = CASE"
			 "			WHEN reltablespace <> 0 THEN reltablespace"
			 "			WHEN n.nsptablespace <> 0 THEN nsptablespace"
			 "			WHEN d.dattablespace <> 0 THEN dattablespace"
			 "		END "
			 "ORDER BY relname",
			 opts->extended ? addfields : "",
			 opts->indexes ? ", 'i', 'S', 't'" : "",
 			 opts->systables ? "" : "n.nspname NOT IN ('pg_catalog', 'pg_toast', 'information_schema') AND");

	sql_exec(conn, todo, opts->quiet);
405 406
}

407 408 409 410
/*
 * Show oid, relfilenode, name, schema and tablespace for each of the
 * given objects in the current database.
 */
411
void
412
sql_exec_searchtables(PGconn *conn, struct options *opts)
413
{
414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473
	char	   *todo;
	char	   *qualifiers, *ptr;
	char	   *comma_oids, *comma_filenodes, *comma_tables;
	bool		written = false;
	char	   *addfields = ",c.oid AS \"Oid\", nspname AS \"Schema\", spcname as \"Tablespace\" ";

	/* get tables qualifiers, whether names, relfilenodes, or OIDs */
	comma_oids = get_comma_elts(opts->oids);
	comma_tables = get_comma_elts(opts->tables);
	comma_filenodes = get_comma_elts(opts->filenodes);

	/* 80 extra chars for SQL expression */
	qualifiers = (char *) myalloc(strlen(comma_oids) + strlen(comma_tables) +
								  strlen(comma_filenodes) + 80);
	ptr = qualifiers;

	if (opts->oids->num > 0)
	{
		ptr += sprintf(ptr, "c.oid IN (%s)", comma_oids);
		written = true;
	}
	if (opts->filenodes->num > 0)
	{
		if (written)
			ptr += sprintf(ptr, " OR ");
		ptr += sprintf(ptr, "c.relfilenode IN (%s)", comma_filenodes);
		written = true;
	}
	if (opts->tables->num > 0)
	{
		if (written)
			ptr += sprintf(ptr, " OR ");
		sprintf(ptr, "c.relname ~~ ANY (ARRAY[%s])", comma_tables);
	}
	free(comma_oids);
	free(comma_tables);
	free(comma_filenodes);

	/* now build the query */
	todo = (char *) myalloc(650 + strlen(qualifiers));
	snprintf(todo, 1024,
			 "SELECT relfilenode as \"Filenode\", relname as \"Table Name\" %s\n"
			 "FROM pg_class c \n"
			 "	LEFT JOIN pg_catalog.pg_namespace n ON n.oid = c.relnamespace \n"
			 "	LEFT JOIN pg_catalog.pg_database d ON d.datname = current_database(),\n"
			 "	pg_catalog.pg_tablespace t \n"
			 "WHERE relkind IN ('r', 'i', 'S', 't') AND \n"
			 "		t.oid = CASE\n"
			 "			WHEN reltablespace <> 0 THEN reltablespace\n"
			 "			WHEN n.nsptablespace <> 0 THEN nsptablespace\n"
			 "			WHEN d.dattablespace <> 0 THEN dattablespace\n"
			 "		END AND \n"
			 "  (%s) \n"
			 "ORDER BY relname\n",
			 opts->extended ? addfields : "",
			 qualifiers);

	free(qualifiers);

	sql_exec(conn, todo, opts->quiet);
474 475
}

476
void
477
sql_exec_dumpalltbspc(PGconn *conn, struct options *opts)
478
{
479
	char	todo[1024];
480

481 482
	snprintf(todo, 1024, "SELECT oid AS \"Oid\", spcname as \"Tablespace Name\"\n"
			 "FROM pg_tablespace");
483

484
	sql_exec(conn, todo, opts->quiet);
485 486
}

487 488
int
main(int argc, char **argv)
489
{
490 491 492
	struct options *my_opts;
	PGconn	   *pgconn;

493 494 495 496 497 498 499 500 501
	my_opts = (struct options *) myalloc(sizeof(struct options));

	my_opts->oids = (eary *) myalloc(sizeof(eary));
	my_opts->tables = (eary *) myalloc(sizeof(eary));
	my_opts->filenodes = (eary *) myalloc(sizeof(eary));

	my_opts->oids->num = my_opts->oids->alloc = 0;
	my_opts->tables->num = my_opts->tables->alloc = 0;
	my_opts->filenodes->num = my_opts->filenodes->alloc = 0;
502 503 504 505

	/* parse the opts */
	get_opts(argc, argv, my_opts);

506 507 508 509 510 511 512 513 514
	if (my_opts->dbname == NULL)
	{
		my_opts->dbname = "template1";
		my_opts->nodb = true;
	}
	pgconn = sql_conn(my_opts);

	/* display only tablespaces */
	if (my_opts->tablespaces)
515
	{
516
		if (!my_opts->quiet)
517 518
			printf("All tablespaces:\n");
		sql_exec_dumpalltbspc(pgconn, my_opts);
519

520 521
		PQfinish(pgconn);
		exit(0);
522 523
	}

524 525 526 527
	/* display the given elements in the database */
	if (my_opts->oids->num > 0 ||
		my_opts->tables->num > 0 ||
		my_opts->filenodes->num > 0)
528
	{
529
		if (!my_opts->quiet)
530 531
			printf("From database \"%s\":\n", my_opts->dbname);
		sql_exec_searchtables(pgconn, my_opts);
532

533 534
		PQfinish(pgconn);
		exit(0);
535 536
	}

537 538
	/* no elements given; dump the given database */
	if (my_opts->dbname && !my_opts->nodb)
539
	{
540
		if (!my_opts->quiet)
541 542
			printf("From database \"%s\":\n", my_opts->dbname);
		sql_exec_dumpalltables(pgconn, my_opts);
543

544 545
		PQfinish(pgconn);
		exit(0);
546 547
	}

548
	/* no database either; dump all databases */
549 550
	if (!my_opts->quiet)
		printf("All databases:\n");
551
	sql_exec_dumpalldbs(pgconn, my_opts);
552

553
	PQfinish(pgconn);
554
	exit(0);
555
}