pgstat.c 61.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/* ----------
 * pgstat.c
 *
 *	All the statistics collector stuff hacked up in one big, ugly file.
 *
 *	TODO:	- Separate collector, postmaster and backend stuff
 *			  into different files.
 *
 *			- Add some automatic call for pgstat vacuuming.
 *
 *			- Add a pgstat config column to pg_database, so this
 *			  entire thing can be enabled/disabled on a per db base.
 *			  Not to be done before 7.2 - requires catalog change and
 *			  thus an initdb and we might want to provide this as a
 *			  patch for 7.1.
 *
 *	Copyright (c) 2001, PostgreSQL Global Development Group
 *
B
Bruce Momjian 已提交
19
 *	$Header: /cvsroot/pgsql/src/backend/postmaster/pgstat.c,v 1.18 2002/03/06 06:10:00 momjian Exp $
20 21
 * ----------
 */
P
Peter Eisentraut 已提交
22 23
#include "postgres.h"

24 25 26 27 28 29 30 31 32 33 34
#include <unistd.h>
#include <fcntl.h>
#include <sys/param.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <signal.h>

35 36 37 38 39 40
#include "access/xact.h"
#include "access/heapam.h"
#include "catalog/catname.h"
#include "catalog/pg_shadow.h"
#include "catalog/pg_database.h"
#include "libpq/pqsignal.h"
41 42 43
#ifdef MULTIBYTE
#include "mb/pg_wchar.h"
#endif
44 45 46 47 48
#include "miscadmin.h"
#include "utils/memutils.h"
#include "storage/backendid.h"
#include "utils/rel.h"
#include "utils/hsearch.h"
49
#include "utils/ps_status.h"
50 51 52 53 54 55
#include "utils/syscache.h"

#include "pgstat.h"


/* ----------
56
 * GUC parameters
57 58
 * ----------
 */
59 60 61 62 63
bool		pgstat_collect_startcollector = true;
bool		pgstat_collect_resetonpmstart = true;
bool		pgstat_collect_querystring = false;
bool		pgstat_collect_tuplelevel = false;
bool		pgstat_collect_blocklevel = false;
64 65 66 67 68

/* ----------
 * Local data
 * ----------
 */
69 70 71 72
static int	pgStatSock = -1;
static int	pgStatPipe[2];
static struct sockaddr_in pgStatAddr;
static int	pgStatPmPipe[2] = {-1, -1};
73

74 75
static int	pgStatRunning = 0;
static int	pgStatPid;
76

77
static long pgStatNumMessages = 0;
78

79 80 81 82 83 84
static bool pgStatRunningInCollector = FALSE;
static int	pgStatTabstatAlloc = 0;
static int	pgStatTabstatUsed = 0;
static PgStat_MsgTabstat **pgStatTabstatMessages = NULL;
static int	pgStatXactCommit = 0;
static int	pgStatXactRollback = 0;
85 86


87 88 89 90 91
static TransactionId pgStatDBHashXact = InvalidTransactionId;
static HTAB *pgStatDBHash = NULL;
static HTAB *pgStatBeDead = NULL;
static PgStat_StatBeEntry *pgStatBeTable = NULL;
static int	pgStatNumBackends = 0;
92

93 94
static char pgStat_tmpfname[MAXPGPATH];
static char pgStat_fname[MAXPGPATH];
95 96 97 98 99 100


/* ----------
 * Local function forward declarations
 * ----------
 */
101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
static void pgstat_main(void);
static void pgstat_recvbuffer(void);
static void pgstat_die(SIGNAL_ARGS);

static int	pgstat_add_backend(PgStat_MsgHdr *msg);
static void pgstat_sub_backend(int procpid);
static void pgstat_drop_database(Oid databaseid);
static void pgstat_write_statsfile(void);
static void pgstat_read_statsfile(HTAB **dbhash, Oid onlydb,
					  PgStat_StatBeEntry **betab,
					  int *numbackends);

static void pgstat_setheader(PgStat_MsgHdr *hdr, int mtype);
static void pgstat_send(void *msg, int len);

static void pgstat_recv_bestart(PgStat_MsgBestart *msg, int len);
static void pgstat_recv_beterm(PgStat_MsgBeterm *msg, int len);
static void pgstat_recv_activity(PgStat_MsgActivity *msg, int len);
static void pgstat_recv_tabstat(PgStat_MsgTabstat *msg, int len);
static void pgstat_recv_tabpurge(PgStat_MsgTabpurge *msg, int len);
static void pgstat_recv_dropdb(PgStat_MsgDropdb *msg, int len);
static void pgstat_recv_resetcounter(PgStat_MsgResetcounter *msg, int len);
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142


/* ------------------------------------------------------------
 * Public functions called from postmaster follow
 * ------------------------------------------------------------
 */


/* ----------
 * pgstat_init() -
 *
 *	Called from postmaster at startup. Create the resources required
 *	by the statistics collector process.
 * ----------
 */
int
pgstat_init(void)
{
	int			alen;

143 144 145 146
	/*
	 * Force start of collector daemon if something to collect
	 */
	if (pgstat_collect_querystring || pgstat_collect_tuplelevel ||
147
		pgstat_collect_blocklevel)
148 149
		pgstat_collect_startcollector = true;

150 151 152
	/*
	 * Initialize the filenames for the status reports.
	 */
153 154 155 156
	snprintf(pgStat_tmpfname, MAXPGPATH,
			 PGSTAT_STAT_TMPFILE, DataDir, getpid());
	snprintf(pgStat_fname, MAXPGPATH,
			 PGSTAT_STAT_FILENAME, DataDir);
157

158
	/*
159 160
	 * If we don't have to start a collector or should reset the collected
	 * statistics on postmaster start, simply remove the file.
161 162 163 164 165 166 167 168 169 170
	 */
	if (!pgstat_collect_startcollector || pgstat_collect_resetonpmstart)
		unlink(pgStat_fname);

	/*
	 * Nothing else required if collector will not get started
	 */
	if (!pgstat_collect_startcollector)
		return 0;

171
	/*
172
	 * Create the UDP socket for sending and receiving statistic messages
173 174 175 176 177 178 179 180
	 */
	if ((pgStatSock = socket(PF_INET, SOCK_DGRAM, 0)) < 0)
	{
		perror("PGSTAT: socket(2)");
		return -1;
	}

	/*
181 182
	 * Bind it to a kernel assigned port on localhost and get the assigned
	 * port via getsockname().
183
	 */
184 185
	pgStatAddr.sin_family = AF_INET;
	pgStatAddr.sin_port = htons(0);
186 187
	inet_aton("127.0.0.1", &(pgStatAddr.sin_addr));
	alen = sizeof(pgStatAddr);
188
	if (bind(pgStatSock, (struct sockaddr *) & pgStatAddr, alen) < 0)
189 190 191 192 193 194
	{
		perror("PGSTAT: bind(2)");
		close(pgStatSock);
		pgStatSock = -1;
		return -1;
	}
195
	if (getsockname(pgStatSock, (struct sockaddr *) & pgStatAddr, &alen) < 0)
196 197 198 199 200 201 202 203
	{
		perror("PGSTAT: getsockname(2)");
		close(pgStatSock);
		pgStatSock = -1;
		return -1;
	}

	/*
204 205 206 207
	 * Connect the socket to its own address.  This saves a few cycles by
	 * not having to respecify the target address on every send. This also
	 * provides a kernel-level check that only packets from this same
	 * address will be received.
208
	 */
209
	if (connect(pgStatSock, (struct sockaddr *) & pgStatAddr, alen) < 0)
210 211 212 213 214 215 216 217 218 219 220 221
	{
		perror("PGSTAT: connect(2)");
		close(pgStatSock);
		pgStatSock = -1;
		return -1;
	}

	/*
	 * Set the socket to non-blocking IO.  This ensures that if the
	 * collector falls behind (despite the buffering process), statistics
	 * messages will be discarded; backends won't block waiting to send
	 * messages to the collector.
222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
	 */
	if (fcntl(pgStatSock, F_SETFL, O_NONBLOCK) < 0)
	{
		perror("PGSTAT: fcntl(2)");
		close(pgStatSock);
		pgStatSock = -1;
		return -1;
	}

	/*
	 * Create the pipe that controls the statistics collector shutdown
	 */
	if (pipe(pgStatPmPipe) < 0)
	{
		perror("PGSTAT: pipe(2)");
		close(pgStatSock);
		pgStatSock = -1;
		return -1;
	}

	return 0;
}


/* ----------
 * pgstat_start() -
 *
 *	Called from postmaster at startup or after an existing collector
250
 *	died.  Fire up a fresh statistics collector.
251 252 253
 * ----------
 */
int
254
pgstat_start(void)
255
{
256 257 258 259 260 261
	/*
	 * Do nothing if no collector needed
	 */
	if (!pgstat_collect_startcollector)
		return 0;

262 263 264 265 266
	/*
	 * Check that the socket at least is there
	 */
	if (pgStatSock < 0)
	{
267 268
		fprintf(stderr,
		   "PGSTAT: suppress collector startup due to missing socket\n");
269 270 271 272
		return 0;
	}

	/*
273
	 * Then fork off the collector.  Remember its PID for pgstat_ispgstat.
274
	 */
275 276 277 278 279 280 281 282 283

	fflush(stdout);
	fflush(stderr);

#ifdef __BEOS__
	/* Specific beos actions before backend startup */
	beos_before_backend_startup();
#endif

284
	switch ((pgStatPid = (int) fork()))
285 286
	{
		case -1:
287 288 289 290
#ifdef __BEOS__
			/* Specific beos actions */
			beos_backend_startup_failed();
#endif
291 292 293 294 295 296 297 298 299 300 301 302
			perror("PGSTAT: fork(2)");
			pgStatRunning = 0;
			return -1;

		case 0:
			break;

		default:
			pgStatRunning = 1;
			return 0;
	}

303
	/* in postmaster child ... */
304 305 306 307 308 309 310 311 312 313 314 315

#ifdef __BEOS__
	/* Specific beos actions after backend startup */
	beos_backend_startup();
#endif

	IsUnderPostmaster = true;	/* we are a postmaster subprocess now */

	/* Lose the postmaster's on-exit routines */
	on_exit_reset();

	/* Close the postmaster's sockets, except for pgstat link */
316 317
	ClosePostmasterPorts(false);

318
	pgstat_main();
319

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343
	exit(0);
}


/* ----------
 * pgstat_ispgstat() -
 *
 *	Called from postmaster to check if a terminated child process
 *	was the statistics collector.
 * ----------
 */
int
pgstat_ispgstat(int pid)
{
	if (pgStatRunning == 0)
		return 0;

	if (pgStatPid != pid)
		return 0;

	return 1;
}


344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
/* ----------
 * pgstat_close_sockets() -
 *
 *	Called when postmaster forks a non-pgstat child process, to close off
 *	file descriptors that should not be held open in child processes.
 * ----------
 */
void
pgstat_close_sockets(void)
{
	if (pgStatPmPipe[0] >= 0)
		close(pgStatPmPipe[0]);
	pgStatPmPipe[0] = -1;
	if (pgStatPmPipe[1] >= 0)
		close(pgStatPmPipe[1]);
	pgStatPmPipe[1] = -1;
}


363 364 365 366 367 368 369 370 371
/* ----------
 * pgstat_beterm() -
 *
 *	Called from postmaster to tell collector a backend terminated.
 * ----------
 */
void
pgstat_beterm(int pid)
{
372
	PgStat_MsgBeterm msg;
373

374
	if (!pgstat_collect_startcollector || pgStatSock < 0)
375 376
		return;

377 378 379 380
	msg.m_hdr.m_type = PGSTAT_MTYPE_BETERM;
	msg.m_hdr.m_backendid = 0;
	msg.m_hdr.m_procpid = pid;
	msg.m_hdr.m_databaseid = 0;
381 382 383 384 385 386 387

	pgstat_send(&msg, sizeof(msg));
}


/* ------------------------------------------------------------
 * Public functions used by backends follow
388
 *------------------------------------------------------------
389 390 391 392 393 394 395 396 397 398 399 400 401
 */


/* ----------
 * pgstat_bestart() -
 *
 *	Tell the collector that this new backend is soon ready to process
 *	queries. Called from tcop/postgres.c before entering the mainloop.
 * ----------
 */
void
pgstat_bestart(void)
{
402
	PgStat_MsgBestart msg;
403

404
	if (!pgstat_collect_startcollector || pgStatSock < 0)
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_BESTART);
	pgstat_send(&msg, sizeof(msg));
}


/* ----------
 * pgstat_report_activity() -
 *
 *	Called in tcop/postgres.c to tell the collector what the backend
 *	is actually doing (usually "<IDLE>" or the start of the query to
 *	be executed).
 * ----------
 */
void
pgstat_report_activity(char *what)
{
423 424
	PgStat_MsgActivity msg;
	int			len;
425

426
	if (!pgstat_collect_querystring || pgStatSock < 0)
427 428 429
		return;

	len = strlen(what);
430 431 432
#ifdef MULTIBYTE
	len = pg_mbcliplen((const unsigned char *)what, len, PGSTAT_ACTIVITY_SIZE - 1);
#else
433 434
	if (len >= PGSTAT_ACTIVITY_SIZE)
		len = PGSTAT_ACTIVITY_SIZE - 1;
435
#endif
436

437 438
	memcpy(msg.m_what, what, len);
	msg.m_what[len] = '\0';
439
	len += offsetof(PgStat_MsgActivity, m_what) +1;
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_ACTIVITY);
	pgstat_send(&msg, len);
}


/* ----------
 * pgstat_report_tabstat() -
 *
 *	Called from tcop/postgres.c to send the so far collected
 *	per table access statistics to the collector.
 * ----------
 */
void
pgstat_report_tabstat(void)
{
456 457 458
	int			i;
	int			n;
	int			len;
459

460
	if (!pgstat_collect_querystring && !pgstat_collect_tuplelevel &&
461
		!pgstat_collect_blocklevel)
462 463
		return;

464 465 466 467
	if (pgStatSock < 0)
		return;

	/*
468 469
	 * For each message buffer used during the last query set the header
	 * fields and send it out.
470 471 472 473
	 */
	for (i = 0; i < pgStatTabstatUsed; i++)
	{
		n = pgStatTabstatMessages[i]->m_nentries;
474 475
		len = offsetof(PgStat_MsgTabstat, m_entry[0]) +
			n * sizeof(PgStat_TableEntry);
476

477
		pgStatTabstatMessages[i]->m_xact_commit = pgStatXactCommit;
478
		pgStatTabstatMessages[i]->m_xact_rollback = pgStatXactRollback;
479
		pgStatXactCommit = 0;
480 481
		pgStatXactRollback = 0;

482 483
		pgstat_setheader(&pgStatTabstatMessages[i]->m_hdr,
						 PGSTAT_MTYPE_TABSTAT);
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
		pgstat_send(pgStatTabstatMessages[i], len);
	}

	pgStatTabstatUsed = 0;
}


/* ----------
 * pgstat_vacuum_tabstat() -
 *
 *	Will tell the collector about objects he can get rid of.
 * ----------
 */
int
pgstat_vacuum_tabstat(void)
{
500 501 502 503 504 505 506 507 508 509 510 511 512 513
	Relation	dbrel;
	HeapScanDesc dbscan;
	HeapTuple	dbtup;
	Oid		   *dbidlist;
	int			dbidalloc;
	int			dbidused;
	HASH_SEQ_STATUS hstat;
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	HeapTuple	reltup;
	int			nobjects = 0;
	PgStat_MsgTabpurge msg;
	int			len;
	int			i;
514 515 516 517 518

	if (pgStatSock < 0)
		return 0;

	/*
519 520 521
	 * We don't vacuum inside of transaction blocks, because a possible
	 * later rollback might reactivate objects we didn't find because of
	 * earlier destruction in the xact.
522 523 524 525 526 527 528 529
	 */
	if (IsTransactionBlock())
		return 0;

	/*
	 * If not done for this transaction, read the statistics collector
	 * stats file into some hash tables.
	 */
530
	if (!TransactionIdEquals(pgStatDBHashXact, GetCurrentTransactionId()))
531
	{
532
		pgstat_read_statsfile(&pgStatDBHash, MyDatabaseId,
533
							  &pgStatBeTable, &pgStatNumBackends);
534 535 536 537 538 539
		pgStatDBHashXact = GetCurrentTransactionId();
	}

	/*
	 * Lookup our own database entry
	 */
540 541 542
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												 (void *) &MyDatabaseId,
												 HASH_FIND, NULL);
543
	if (dbentry == NULL)
544 545 546 547 548 549 550 551 552 553 554 555 556
		return -1;

	if (dbentry->tables == NULL)
		return 0;

	/*
	 * Initialize our messages table counter to zero
	 */
	msg.m_nentries = 0;

	/*
	 * Check for all tables if they still exist.
	 */
557
	hash_seq_init(&hstat, dbentry->tables);
558
	while ((tabentry = (PgStat_StatTabEntry *) hash_seq_search(&hstat)) != NULL)
559 560
	{
		/*
561 562
		 * Check if this relation is still alive by looking up it's
		 * pg_class tuple in the system catalog cache.
563 564
		 */
		reltup = SearchSysCache(RELOID,
565 566
								ObjectIdGetDatum(tabentry->tableid),
								0, 0, 0);
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583
		if (HeapTupleIsValid(reltup))
		{
			ReleaseSysCache(reltup);
			continue;
		}

		/*
		 * Add this tables Oid to the message
		 */
		msg.m_tableid[msg.m_nentries++] = tabentry->tableid;
		nobjects++;

		/*
		 * If the message is full, send it out and reinitialize ot zero
		 */
		if (msg.m_nentries >= PGSTAT_NUM_TABPURGE)
		{
584 585
			len = offsetof(PgStat_MsgTabpurge, m_tableid[0])
				+ msg.m_nentries * sizeof(Oid);
586 587 588 589 590 591 592 593 594 595 596 597 598

			pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_TABPURGE);
			pgstat_send(&msg, len);

			msg.m_nentries = 0;
		}
	}

	/*
	 * Send the rest
	 */
	if (msg.m_nentries > 0)
	{
599 600
		len = offsetof(PgStat_MsgTabpurge, m_tableid[0])
			+ msg.m_nentries * sizeof(Oid);
601 602 603 604 605 606 607 608 609 610

		pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_TABPURGE);
		pgstat_send(&msg, len);
	}

	/*
	 * Read pg_database and remember the Oid's of all existing databases
	 */
	dbidalloc = 256;
	dbidused = 0;
611
	dbidlist = (Oid *) palloc(sizeof(Oid) * dbidalloc);
612 613 614 615 616 617 618 619

	dbrel = heap_openr(DatabaseRelationName, AccessShareLock);
	dbscan = heap_beginscan(dbrel, 0, SnapshotNow, 0, NULL);
	while (HeapTupleIsValid(dbtup = heap_getnext(dbscan, FALSE)))
	{
		if (dbidused >= dbidalloc)
		{
			dbidalloc *= 2;
620 621
			dbidlist = (Oid *) repalloc((char *) dbidlist,
										sizeof(Oid) * dbidalloc);
622 623 624 625 626 627 628
		}
		dbidlist[dbidused++] = dbtup->t_data->t_oid;
	}
	heap_endscan(dbscan);
	heap_close(dbrel, AccessShareLock);

	/*
629 630
	 * Search the database hash table for dead databases and tell the
	 * collector to drop them as well.
631 632
	 */
	hash_seq_init(&hstat, pgStatDBHash);
633
	while ((dbentry = (PgStat_StatDBEntry *) hash_seq_search(&hstat)) != NULL)
634
	{
635
		Oid			dbid = dbentry->databaseid;
636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655

		for (i = 0; i < dbidused; i++)
		{
			if (dbidlist[i] == dbid)
			{
				dbid = InvalidOid;
				break;
			}
		}

		if (dbid != InvalidOid)
		{
			nobjects++;
			pgstat_drop_database(dbid);
		}
	}

	/*
	 * Free the dbid list.
	 */
656
	pfree((char *) dbidlist);
657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676

	/*
	 * Tell the caller how many removeable objects we found
	 */
	return nobjects;
}


/* ----------
 * pgstat_drop_database() -
 *
 *	Tell the collector that we just dropped a database.
 *	This is the only message that shouldn't get lost in space. Otherwise
 *	the collector will keep the statistics for the dead DB until his
 *	stats file got removed while the postmaster is down.
 * ----------
 */
static void
pgstat_drop_database(Oid databaseid)
{
677
	PgStat_MsgDropdb msg;
678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697

	if (pgStatSock < 0)
		return;

	msg.m_databaseid = databaseid;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_DROPDB);
	pgstat_send(&msg, sizeof(msg));
}


/* ----------
 * pgstat_reset_counters() -
 *
 *	Tell the statistics collector to reset counters for our database.
 * ----------
 */
void
pgstat_reset_counters(void)
{
698
	PgStat_MsgResetcounter msg;
699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719

	if (pgStatSock < 0)
		return;

	if (!superuser())
		elog(ERROR, "Only database superusers can reset statistic counters");

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_RESETCOUNTER);
	pgstat_send(&msg, sizeof(msg));
}


/* ----------
 * pgstat_ping() -
 *
 *	Send some junk data to the collector to increase traffic.
 * ----------
 */
void
pgstat_ping(void)
{
720
	PgStat_MsgDummy msg;
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

	if (pgStatSock < 0)
		return;

	pgstat_setheader(&msg.m_hdr, PGSTAT_MTYPE_DUMMY);
	pgstat_send(&msg, sizeof(msg));
}


/* ----------
 * pgstat_initstats() -
 *
 *	Called from various places usually dealing with initialization
 *	of Relation or Scan structures. The data placed into these
 *	structures from here tell where later to count for buffer reads,
 *	scans and tuples fetched.
 * ----------
 */
void
pgstat_initstats(PgStat_Info *stats, Relation rel)
{
742 743 744 745
	PgStat_TableEntry *useent = NULL;
	Oid			rel_id = rel->rd_id;
	int			mb;
	int			i;
746 747 748 749

	/*
	 * Initialize data not to count at all.
	 */
750 751 752 753
	stats->tabentry = NULL;
	stats->no_stats = FALSE;
	stats->heap_scan_counted = FALSE;
	stats->index_scan_counted = FALSE;
754

755
	if (!pgstat_collect_startcollector || pgStatSock < 0)
756 757 758 759 760 761 762 763 764 765 766 767
	{
		stats->no_stats = TRUE;
		return;
	}

	/*
	 * On the first of all calls initialize the message buffers.
	 */
	if (pgStatTabstatAlloc == 0)
	{
		pgStatTabstatAlloc = 4;
		pgStatTabstatMessages = (PgStat_MsgTabstat **)
768
			malloc(sizeof(PgStat_MsgTabstat *) * pgStatTabstatAlloc);
769 770 771 772 773 774 775 776
		if (pgStatTabstatMessages == NULL)
		{
			perror("PGSTATBE: malloc(2)");
			return;
		}
		for (i = 0; i < pgStatTabstatAlloc; i++)
		{
			pgStatTabstatMessages[i] = (PgStat_MsgTabstat *)
777
				malloc(sizeof(PgStat_MsgTabstat));
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794
			if (pgStatTabstatMessages[i] == NULL)
			{
				perror("PGSTATBE: malloc(2)");
				return;
			}
		}
	}

	/*
	 * Lookup the so far used table slots for this relation.
	 */
	for (mb = 0; mb < pgStatTabstatUsed; mb++)
	{
		for (i = 0; i < pgStatTabstatMessages[mb]->m_nentries; i++)
		{
			if (pgStatTabstatMessages[mb]->m_entry[i].t_id == rel_id)
			{
795
				stats->tabentry = (void *) &(pgStatTabstatMessages[mb]->m_entry[i]);
796 797 798 799 800 801
				return;
			}
		}

		if (pgStatTabstatMessages[mb]->m_nentries >= PGSTAT_NUM_TABENTRIES)
			continue;
802

803 804 805 806 807 808 809 810
		/*
		 * Not found, but found a message buffer with an empty slot
		 * instead. Fine, let's use this one.
		 */
		i = pgStatTabstatMessages[mb]->m_nentries++;
		useent = &pgStatTabstatMessages[mb]->m_entry[i];
		memset(useent, 0, sizeof(PgStat_TableEntry));
		useent->t_id = rel_id;
811
		stats->tabentry = (void *) useent;
812 813 814 815 816 817 818 819 820 821
		return;
	}

	/*
	 * If we ran out of message buffers, we just allocate more.
	 */
	if (pgStatTabstatUsed >= pgStatTabstatAlloc)
	{
		pgStatTabstatAlloc += 4;
		pgStatTabstatMessages = (PgStat_MsgTabstat **)
822
			realloc(pgStatTabstatMessages,
823 824 825 826 827 828 829 830 831 832
					sizeof(PgStat_MsgTabstat *) * pgStatTabstatAlloc);
		if (pgStatTabstatMessages == NULL)
		{
			pgStatTabstatAlloc -= 4;
			perror("PGSTATBE: malloc(2)");
			return;
		}
		for (i = pgStatTabstatUsed; i < pgStatTabstatAlloc; i++)
		{
			pgStatTabstatMessages[i] = (PgStat_MsgTabstat *)
833
				malloc(sizeof(PgStat_MsgTabstat));
834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850
			if (pgStatTabstatMessages[i] == NULL)
			{
				pgStatTabstatAlloc -= 4;
				perror("PGSTATBE: malloc(2)");
				return;
			}
		}
	}

	/*
	 * Use the first entry of the next message buffer.
	 */
	mb = pgStatTabstatUsed++;
	pgStatTabstatMessages[mb]->m_nentries = 1;
	useent = &pgStatTabstatMessages[mb]->m_entry[0];
	memset(useent, 0, sizeof(PgStat_TableEntry));
	useent->t_id = rel_id;
851
	stats->tabentry = (void *) useent;
852 853 854 855 856 857 858 859 860 861 862 863 864
	return;
}


/* ----------
 * pgstat_count_xact_commit() -
 *
 *	Called from access/transam/xact.c to count transaction commits.
 * ----------
 */
void
pgstat_count_xact_commit(void)
{
865
	if (!pgstat_collect_querystring && !pgstat_collect_tuplelevel &&
866
		!pgstat_collect_blocklevel)
867 868
		return;

869 870 871
	pgStatXactCommit++;

	/*
872 873 874
	 * If there was no relation activity yet, just make one existing
	 * message buffer used without slots, causing the next report to tell
	 * new xact-counters.
875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
	 */
	if (pgStatTabstatAlloc > 0)
	{
		if (pgStatTabstatUsed == 0)
		{
			pgStatTabstatUsed++;
			pgStatTabstatMessages[0]->m_nentries = 0;
		}
	}
}


/* ----------
 * pgstat_count_xact_rollback() -
 *
 *	Called from access/transam/xact.c to count transaction rollbacks.
 * ----------
 */
void
pgstat_count_xact_rollback(void)
{
896
	if (!pgstat_collect_querystring && !pgstat_collect_tuplelevel &&
897
		!pgstat_collect_blocklevel)
898 899
		return;

900 901 902
	pgStatXactRollback++;

	/*
903 904 905
	 * If there was no relation activity yet, just make one existing
	 * message buffer used without slots, causing the next report to tell
	 * new xact-counters.
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
	 */
	if (pgStatTabstatAlloc > 0)
	{
		if (pgStatTabstatUsed == 0)
		{
			pgStatTabstatUsed++;
			pgStatTabstatMessages[0]->m_nentries = 0;
		}
	}
}


/* ----------
 * pgstat_fetch_stat_dbentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the collected statistics for one database or NULL. NULL doesn't mean
 *	that the database doesn't exist, it is just not yet known by the
 *	collector, so the caller is better off to report ZERO instead.
 * ----------
 */
PgStat_StatDBEntry *
pgstat_fetch_stat_dbentry(Oid dbid)
{
930
	PgStat_StatDBEntry *dbentry;
931 932 933

	/*
	 * If not done for this transaction, read the statistics collector
934 935
	 * stats file into some hash tables. Be careful with the
	 * read_statsfile() call below!
936
	 */
937
	if (!TransactionIdEquals(pgStatDBHashXact, GetCurrentTransactionId()))
938
	{
939
		pgstat_read_statsfile(&pgStatDBHash, MyDatabaseId,
940
							  &pgStatBeTable, &pgStatNumBackends);
941 942 943 944 945 946
		pgStatDBHashXact = GetCurrentTransactionId();
	}

	/*
	 * Lookup the requested database
	 */
947 948
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												 (void *) &dbid,
949 950
												 HASH_FIND, NULL);
	if (dbentry == NULL)
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968
		return NULL;

	return dbentry;
}


/* ----------
 * pgstat_fetch_stat_tabentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the collected statistics for one table or NULL. NULL doesn't mean
 *	that the table doesn't exist, it is just not yet known by the
 *	collector, so the caller is better off to report ZERO instead.
 * ----------
 */
PgStat_StatTabEntry *
pgstat_fetch_stat_tabentry(Oid relid)
{
969 970
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
971 972 973

	/*
	 * If not done for this transaction, read the statistics collector
974 975
	 * stats file into some hash tables. Be careful with the
	 * read_statsfile() call below!
976
	 */
977
	if (!TransactionIdEquals(pgStatDBHashXact, GetCurrentTransactionId()))
978
	{
979
		pgstat_read_statsfile(&pgStatDBHash, MyDatabaseId,
980
							  &pgStatBeTable, &pgStatNumBackends);
981 982 983 984 985 986
		pgStatDBHashXact = GetCurrentTransactionId();
	}

	/*
	 * Lookup our database.
	 */
987 988
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
												 (void *) &MyDatabaseId,
989 990
												 HASH_FIND, NULL);
	if (dbentry == NULL)
991 992 993 994 995 996 997
		return NULL;

	/*
	 * Now inside the DB's table hash table lookup the requested one.
	 */
	if (dbentry->tables == NULL)
		return NULL;
998 999
	tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
												   (void *) &relid,
1000 1001
												   HASH_FIND, NULL);
	if (tabentry == NULL)
1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019
		return NULL;

	return tabentry;
}


/* ----------
 * pgstat_fetch_stat_beentry() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the actual activity slot of one active backend. The caller is
 *	responsible for a check if the actual user is permitted to see
 *	that info (especially the querystring).
 * ----------
 */
PgStat_StatBeEntry *
pgstat_fetch_stat_beentry(int beid)
{
1020
	if (!TransactionIdEquals(pgStatDBHashXact, GetCurrentTransactionId()))
1021
	{
1022
		pgstat_read_statsfile(&pgStatDBHash, MyDatabaseId,
1023
							  &pgStatBeTable, &pgStatNumBackends);
1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043
		pgStatDBHashXact = GetCurrentTransactionId();
	}

	if (beid < 1 || beid > pgStatNumBackends)
		return NULL;

	return &pgStatBeTable[beid - 1];
}


/* ----------
 * pgstat_fetch_stat_numbackends() -
 *
 *	Support function for the SQL-callable pgstat* functions. Returns
 *	the maximum current backend id.
 * ----------
 */
int
pgstat_fetch_stat_numbackends(void)
{
1044
	if (!TransactionIdEquals(pgStatDBHashXact, GetCurrentTransactionId()))
1045
	{
1046
		pgstat_read_statsfile(&pgStatDBHash, MyDatabaseId,
1047
							  &pgStatBeTable, &pgStatNumBackends);
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
		pgStatDBHashXact = GetCurrentTransactionId();
	}

	return pgStatNumBackends;
}



/* ------------------------------------------------------------
 * Local support functions follow
 * ------------------------------------------------------------
 */


/* ----------
 * pgstat_setheader() -
 *
 *		Set common header fields in a statistics message
 * ----------
 */
static void
pgstat_setheader(PgStat_MsgHdr *hdr, int mtype)
{
1071 1072 1073 1074 1075
	hdr->m_type = mtype;
	hdr->m_backendid = MyBackendId;
	hdr->m_procpid = MyProcPid;
	hdr->m_databaseid = MyDatabaseId;
	hdr->m_userid = GetSessionUserId();
1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
}


/* ----------
 * pgstat_send() -
 *
 *		Send out one statistics message to the collector
 * ----------
 */
static void
pgstat_send(void *msg, int len)
{
	if (pgStatSock < 0)
		return;

1091
	((PgStat_MsgHdr *) msg)->m_size = len;
1092

1093 1094
	send(pgStatSock, msg, len, 0);
	/* We deliberately ignore any error from send() */
1095 1096 1097 1098 1099
}


/* ------------------------------------------------------------
 * Local functions implementing the statistics collector itself follow
1100
 *------------------------------------------------------------
1101 1102 1103 1104 1105 1106
 */


/* ----------
 * pgstat_main() -
 *
1107 1108
 *	Start up the statistics collector itself.  This is the body of the
 *	postmaster child process.
1109 1110 1111
 * ----------
 */
static void
1112
pgstat_main(void)
1113 1114
{
	PgStat_Msg	msg;
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
	fd_set		rfds;
	int			readPipe;
	int			pmPipe = pgStatPmPipe[0];
	int			maxfd;
	int			nready;
	int			len = 0;
	struct timeval timeout;
	struct timeval next_statwrite;
	bool		need_statwrite;
	HASHCTL		hash_ctl;

	/*
	 * Close the writing end of the postmaster pipe, so we'll see it
	 * closing when the postmaster terminates and can terminate as well.
1129 1130
	 */
	close(pgStatPmPipe[1]);
1131
	pgStatPmPipe[1] = -1;
1132 1133

	/*
1134 1135
	 * Ignore all signals usually bound to some action in the postmaster,
	 * except for SIGCHLD --- see pgstat_recvbuffer.
1136
	 */
1137 1138 1139 1140 1141 1142 1143 1144
	pqsignal(SIGHUP, SIG_IGN);
	pqsignal(SIGINT, SIG_IGN);
	pqsignal(SIGTERM, SIG_IGN);
	pqsignal(SIGQUIT, SIG_IGN);
	pqsignal(SIGALRM, SIG_IGN);
	pqsignal(SIGPIPE, SIG_IGN);
	pqsignal(SIGUSR1, SIG_IGN);
	pqsignal(SIGUSR2, SIG_IGN);
1145
	pqsignal(SIGCHLD, pgstat_die);
1146 1147 1148 1149
	pqsignal(SIGTTIN, SIG_DFL);
	pqsignal(SIGTTOU, SIG_DFL);
	pqsignal(SIGCONT, SIG_DFL);
	pqsignal(SIGWINCH, SIG_DFL);
1150 1151

	/*
1152 1153
	 * Start a buffering process to read from the socket, so we have a
	 * little more time to process incoming messages.
1154 1155
	 *
	 * NOTE: the process structure is: postmaster is parent of buffer process
1156
	 * is parent of collector process.	This way, the buffer can detect
1157
	 * collector failure via SIGCHLD, whereas otherwise it wouldn't notice
1158 1159 1160 1161
	 * collector failure until it tried to write on the pipe.  That would
	 * mean that after the postmaster started a new collector, we'd have
	 * two buffer processes competing to read from the UDP socket --- not
	 * good.
1162 1163 1164 1165 1166 1167 1168
	 */
	if (pipe(pgStatPipe) < 0)
	{
		perror("PGSTAT: pipe(2)");
		exit(1);
	}

1169
	switch (fork())
1170
	{
1171 1172 1173
		case -1:
			perror("PGSTAT: fork(2)");
			exit(1);
1174

1175
		case 0:
1176
			/* child becomes collector process */
1177 1178 1179
			close(pgStatPipe[1]);
			close(pgStatSock);
			break;
1180 1181 1182 1183

		default:
			/* parent becomes buffer process */
			close(pgStatPipe[0]);
1184
			pgstat_recvbuffer();
1185
			exit(0);
1186 1187
	}

1188
	/*
1189 1190
	 * In the child we can have default SIGCHLD handling (in case we want
	 * to call system() here...)
1191 1192 1193
	 */
	pqsignal(SIGCHLD, SIG_DFL);

1194 1195 1196
	/*
	 * Identify myself via ps
	 */
1197
	init_ps_display("stats collector process", "", "");
1198 1199 1200 1201 1202 1203 1204 1205
	set_ps_display("");

	/*
	 * Arrange to write the initial status file right away
	 */
	gettimeofday(&next_statwrite, NULL);
	need_statwrite = TRUE;

1206
	/*
1207 1208
	 * Read in an existing statistics stats file or initialize the stats
	 * to zero.
1209 1210 1211 1212 1213 1214 1215 1216
	 */
	pgStatRunningInCollector = TRUE;
	pgstat_read_statsfile(&pgStatDBHash, InvalidOid, NULL, NULL);

	/*
	 * Create the dead backend hashtable
	 */
	memset(&hash_ctl, 0, sizeof(hash_ctl));
1217
	hash_ctl.keysize = sizeof(int);
1218
	hash_ctl.entrysize = sizeof(PgStat_StatBeDead);
1219
	hash_ctl.hash = tag_hash;
1220 1221
	pgStatBeDead = hash_create("Dead Backends", PGSTAT_BE_HASH_SIZE,
							   &hash_ctl, HASH_ELEM | HASH_FUNCTION);
1222 1223
	if (pgStatBeDead == NULL)
	{
1224
		fprintf(stderr,
1225 1226 1227 1228 1229 1230 1231
				"PGSTAT: Creation of dead backend hash table failed\n");
		exit(1);
	}

	/*
	 * Create the known backends table
	 */
1232 1233
	pgStatBeTable = (PgStat_StatBeEntry *) malloc(
							   sizeof(PgStat_StatBeEntry) * MaxBackends);
1234 1235 1236 1237 1238 1239 1240
	if (pgStatBeTable == NULL)
	{
		perror("PGSTAT: Allocation of backend table failed");
		exit(1);
	}
	memset(pgStatBeTable, 0, sizeof(PgStat_StatBeEntry) * MaxBackends);

1241 1242
	readPipe = pgStatPipe[0];

1243
	/*
1244 1245
	 * Process incoming messages and handle all the reporting stuff until
	 * there are no more messages.
1246 1247 1248 1249
	 */
	for (;;)
	{
		/*
1250 1251 1252
		 * If we need to write the status file again (there have been
		 * changes in the statistics since we wrote it last) calculate the
		 * timeout until we have to do so.
1253 1254 1255 1256 1257
		 */
		if (need_statwrite)
		{
			gettimeofday(&timeout, NULL);
			timeout.tv_usec = next_statwrite.tv_usec - timeout.tv_usec;
1258
			timeout.tv_sec = next_statwrite.tv_sec - timeout.tv_sec;
1259 1260
			if (timeout.tv_usec < 0)
			{
1261
				timeout.tv_sec -= 1;
1262 1263 1264 1265
				timeout.tv_usec += 1000000;
			}
			if (timeout.tv_sec < 0)
			{
1266
				timeout.tv_sec = 0;
1267 1268 1269 1270 1271 1272 1273 1274
				timeout.tv_usec = 0;
			}
		}

		/*
		 * Setup the descriptor set for select(2)
		 */
		FD_ZERO(&rfds);
1275 1276
		FD_SET(readPipe, &rfds);
		FD_SET(pmPipe, &rfds);
1277

1278 1279
		if (readPipe > pmPipe)
			maxfd = readPipe;
1280
		else
1281
			maxfd = pmPipe;
1282 1283 1284 1285

		/*
		 * Now wait for something to do.
		 */
1286
		nready = select(maxfd + 1, &rfds, NULL, NULL,
1287 1288 1289
						(need_statwrite) ? &timeout : NULL);
		if (nready < 0)
		{
1290 1291
			if (errno == EINTR)
				continue;
1292 1293 1294 1295 1296
			perror("PGSTAT: select(2)");
			exit(1);
		}

		/*
1297 1298
		 * If there are no descriptors ready, our timeout for writing the
		 * stats file happened.
1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310
		 */
		if (nready == 0)
		{
			pgstat_write_statsfile();
			need_statwrite = FALSE;

			continue;
		}

		/*
		 * Check if there is a new statistics message to collect.
		 */
1311
		if (FD_ISSET(readPipe, &rfds))
1312 1313
		{
			/*
1314 1315 1316 1317 1318
			 * We may need to issue multiple read calls in case the buffer
			 * process didn't write the message in a single write, which
			 * is possible since it dumps its buffer bytewise. In any
			 * case, we'd need two reads since we don't know the message
			 * length initially.
1319
			 */
1320 1321
			int			nread = 0;
			int			targetlen = sizeof(PgStat_MsgHdr);		/* initial */
1322

1323
			while (nread < targetlen)
1324
			{
1325 1326 1327
				len = read(readPipe,
						   ((char *) &msg) + nread,
						   targetlen - nread);
1328 1329
				if (len < 0)
				{
1330 1331
					if (errno == EINTR)
						continue;
1332 1333 1334
					perror("PGSTAT: read(2)");
					exit(1);
				}
1335 1336 1337 1338
				if (len == 0)	/* EOF on the pipe! */
					break;
				nread += len;
				if (nread == sizeof(PgStat_MsgHdr))
1339
				{
1340 1341 1342 1343 1344 1345
					/* we have the header, compute actual msg length */
					targetlen = msg.msg_hdr.m_size;
					if (targetlen < (int) sizeof(PgStat_MsgHdr) ||
						targetlen > (int) sizeof(msg))
					{
						/*
1346 1347 1348
						 * Bogus message length implies that we got out of
						 * sync with the buffer process somehow. Abort so
						 * that we can restart both processes.
1349 1350 1351 1352
						 */
						fprintf(stderr, "PGSTAT: bogus message length\n");
						exit(1);
					}
1353 1354
				}
			}
1355

1356 1357 1358 1359 1360 1361
			/*
			 * EOF on the pipe implies that the buffer process exited.
			 * Fall out of outer loop.
			 */
			if (len == 0)
				break;
1362 1363

			/*
1364 1365
			 * Distribute the message to the specific function handling
			 * it.
1366 1367 1368 1369 1370 1371 1372
			 */
			switch (msg.msg_hdr.m_type)
			{
				case PGSTAT_MTYPE_DUMMY:
					break;

				case PGSTAT_MTYPE_BESTART:
1373
					pgstat_recv_bestart((PgStat_MsgBestart *) &msg, nread);
1374 1375 1376
					break;

				case PGSTAT_MTYPE_BETERM:
1377
					pgstat_recv_beterm((PgStat_MsgBeterm *) &msg, nread);
1378 1379 1380
					break;

				case PGSTAT_MTYPE_TABSTAT:
1381
					pgstat_recv_tabstat((PgStat_MsgTabstat *) &msg, nread);
1382 1383 1384
					break;

				case PGSTAT_MTYPE_TABPURGE:
1385
					pgstat_recv_tabpurge((PgStat_MsgTabpurge *) &msg, nread);
1386 1387 1388
					break;

				case PGSTAT_MTYPE_ACTIVITY:
1389
					pgstat_recv_activity((PgStat_MsgActivity *) &msg, nread);
1390 1391 1392
					break;

				case PGSTAT_MTYPE_DROPDB:
1393
					pgstat_recv_dropdb((PgStat_MsgDropdb *) &msg, nread);
1394 1395 1396
					break;

				case PGSTAT_MTYPE_RESETCOUNTER:
1397
					pgstat_recv_resetcounter((PgStat_MsgResetcounter *) &msg,
1398
											 nread);
1399 1400 1401 1402 1403 1404 1405
					break;

				default:
					break;
			}

			/*
1406
			 * Globally count messages.
1407 1408
			 */
			pgStatNumMessages++;
1409 1410

			/*
1411 1412
			 * If this is the first message after we wrote the stats file
			 * the last time, setup the timeout that it'd be written.
1413 1414 1415 1416 1417
			 */
			if (!need_statwrite)
			{
				gettimeofday(&next_statwrite, NULL);
				next_statwrite.tv_usec += ((PGSTAT_STAT_INTERVAL) * 1000);
1418
				next_statwrite.tv_sec += (next_statwrite.tv_usec / 1000000);
1419 1420 1421
				next_statwrite.tv_usec %= 1000000;
				need_statwrite = TRUE;
			}
1422 1423 1424
		}

		/*
1425
		 * Note that we do NOT check for postmaster exit inside the loop;
1426 1427 1428
		 * only EOF on the buffer pipe causes us to fall out.  This
		 * ensures we don't exit prematurely if there are still a few
		 * messages in the buffer or pipe at postmaster shutdown.
1429 1430
		 */
	}
1431 1432

	/*
1433 1434 1435 1436 1437 1438 1439 1440 1441
	 * Okay, we saw EOF on the buffer pipe, so there are no more messages
	 * to process.	If the buffer process quit because of postmaster
	 * shutdown, we want to save the final stats to reuse at next startup.
	 * But if the buffer process failed, it seems best not to (there may
	 * even now be a new collector firing up, and we don't want it to read
	 * a partially- rewritten stats file).	We can tell whether the
	 * postmaster is still alive by checking to see if the postmaster pipe
	 * is still open.  If it is read-ready (ie, EOF), the postmaster must
	 * have quit.
1442 1443 1444
	 */
	if (FD_ISSET(pmPipe, &rfds))
		pgstat_write_statsfile();
1445 1446 1447 1448 1449 1450
}


/* ----------
 * pgstat_recvbuffer() -
 *
1451
 *	This is the body of the separate buffering process. Its only
1452
 *	purpose is to receive messages from the UDP socket as fast as
1453 1454
 *	possible and forward them over a pipe into the collector itself.
 *	If the collector is slow to absorb messages, they are buffered here.
1455 1456 1457
 * ----------
 */
static void
1458
pgstat_recvbuffer(void)
1459
{
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476
	fd_set		rfds;
	fd_set		wfds;
	int			writePipe = pgStatPipe[1];
	int			pmPipe = pgStatPmPipe[0];
	int			maxfd;
	int			nready;
	int			len;
	int			xfr;
	int			frm;
	PgStat_Msg	input_buffer;
	char	   *msgbuffer;
	int			msg_send = 0;	/* next send index in buffer */
	int			msg_recv = 0;	/* next receive index */
	int			msg_have = 0;	/* number of bytes stored */
	struct sockaddr_in fromaddr;
	int			fromlen;
	bool		overflow = false;
1477

1478 1479 1480
	/*
	 * Identify myself via ps
	 */
1481
	init_ps_display("stats buffer process", "", "");
1482 1483
	set_ps_display("");

1484
	/*
1485 1486 1487 1488 1489
	 * We want to die if our child collector process does.	There are two
	 * ways we might notice that it has died: receive SIGCHLD, or get a
	 * write failure on the pipe leading to the child.	We can set SIGPIPE
	 * to kill us here.  Our SIGCHLD handler was already set up before we
	 * forked (must do it that way, else it's a race condition).
1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503
	 */
	pqsignal(SIGPIPE, SIG_DFL);
	PG_SETMASK(&UnBlockSig);

	/*
	 * Set the write pipe to nonblock mode, so that we cannot block when
	 * the collector falls behind.
	 */
	if (fcntl(writePipe, F_SETFL, O_NONBLOCK) < 0)
	{
		perror("PGSTATBUFF: fcntl(2)");
		exit(1);
	}

1504 1505 1506
	/*
	 * Allocate the message buffer
	 */
1507
	msgbuffer = (char *) malloc(PGSTAT_RECVBUFFERSZ);
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
	if (msgbuffer == NULL)
	{
		perror("PGSTATBUFF: malloc()");
		exit(1);
	}

	/*
	 * Loop forever
	 */
	for (;;)
	{
		FD_ZERO(&rfds);
		FD_ZERO(&wfds);
		maxfd = -1;

		/*
1524 1525
		 * As long as we have buffer space we add the socket to the read
		 * descriptor set.
1526
		 */
1527
		if (msg_have <= (int) (PGSTAT_RECVBUFFERSZ - sizeof(PgStat_Msg)))
1528 1529 1530
		{
			FD_SET(pgStatSock, &rfds);
			maxfd = pgStatSock;
1531
			overflow = false;
1532 1533 1534
		}
		else
		{
1535
			if (!overflow)
1536
			{
1537 1538
				fprintf(stderr, "PGSTATBUFF: Warning - receive buffer full\n");
				overflow = true;
1539 1540 1541 1542
			}
		}

		/*
1543 1544 1545
		 * If we have messages to write out, we add the pipe to the write
		 * descriptor set. Otherwise, we check if the postmaster might
		 * have terminated.
1546 1547 1548
		 */
		if (msg_have > 0)
		{
1549 1550 1551
			FD_SET(writePipe, &wfds);
			if (writePipe > maxfd)
				maxfd = writePipe;
1552 1553 1554
		}
		else
		{
1555 1556 1557
			FD_SET(pmPipe, &rfds);
			if (pmPipe > maxfd)
				maxfd = pmPipe;
1558 1559 1560 1561 1562 1563 1564 1565
		}

		/*
		 * Wait for some work to do.
		 */
		nready = select(maxfd + 1, &rfds, &wfds, NULL, NULL);
		if (nready < 0)
		{
1566 1567
			if (errno == EINTR)
				continue;
1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578
			perror("PGSTATBUFF: select(2)");
			exit(1);
		}

		/*
		 * If there is a message on the socket, read it and check for
		 * validity.
		 */
		if (FD_ISSET(pgStatSock, &rfds))
		{
			fromlen = sizeof(fromaddr);
1579
			len = recvfrom(pgStatSock,
1580 1581
						   &input_buffer, sizeof(PgStat_Msg), 0,
						   (struct sockaddr *) &fromaddr, &fromlen);
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
			if (len < 0)
			{
				perror("PGSTATBUFF: recvfrom(2)");
				exit(1);
			}

			/*
			 * We ignore messages that are smaller than our common header
			 */
			if (len < sizeof(PgStat_MsgHdr))
				continue;

			/*
			 * The received length must match the length in the header
			 */
1597
			if (input_buffer.msg_hdr.m_size != len)
1598 1599 1600 1601 1602
				continue;

			/*
			 * The source address of the packet must be our own socket.
			 * This ensures that only real hackers or our own backends
1603
			 * tell us something.  (This should be redundant with a
1604 1605
			 * kernel-level check due to having used connect(), but let's
			 * do it anyway.)
1606 1607 1608 1609 1610
			 */
			if (fromaddr.sin_addr.s_addr != pgStatAddr.sin_addr.s_addr)
				continue;
			if (fromaddr.sin_port != pgStatAddr.sin_port)
				continue;
1611

1612
			/*
1613 1614
			 * O.K. - we accept this message.  Copy it to the circular
			 * msgbuffer.
1615
			 */
1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632
			frm = 0;
			while (len > 0)
			{
				xfr = PGSTAT_RECVBUFFERSZ - msg_recv;
				if (xfr > len)
					xfr = len;
				Assert(xfr > 0);
				memcpy(msgbuffer + msg_recv,
					   ((char *) &input_buffer) + frm,
					   xfr);
				msg_recv += xfr;
				if (msg_recv == PGSTAT_RECVBUFFERSZ)
					msg_recv = 0;
				msg_have += xfr;
				frm += xfr;
				len -= xfr;
			}
1633 1634 1635
		}

		/*
1636 1637 1638 1639
		 * If the collector is ready to receive, write some data into his
		 * pipe.  We may or may not be able to write all that we have.
		 *
		 * NOTE: if what we have is less than PIPE_BUF bytes but more than
1640 1641 1642 1643 1644 1645 1646
		 * the space available in the pipe buffer, most kernels will
		 * refuse to write any of it, and will return EAGAIN.  This means
		 * we will busy-loop until the situation changes (either because
		 * the collector caught up, or because more data arrives so that
		 * we have more than PIPE_BUF bytes buffered).	This is not good,
		 * but is there any way around it?	We have no way to tell when
		 * the collector has caught up...
1647
		 */
1648
		if (FD_ISSET(writePipe, &wfds))
1649
		{
1650 1651 1652 1653 1654
			xfr = PGSTAT_RECVBUFFERSZ - msg_send;
			if (xfr > msg_have)
				xfr = msg_have;
			Assert(xfr > 0);
			len = write(writePipe, msgbuffer + msg_send, xfr);
1655 1656
			if (len < 0)
			{
1657 1658
				if (errno == EINTR || errno == EAGAIN)
					continue;	/* not enough space in pipe */
1659 1660 1661
				perror("PGSTATBUFF: write(2)");
				exit(1);
			}
1662 1663
			/* NB: len < xfr is okay */
			msg_send += len;
1664 1665
			if (msg_send == PGSTAT_RECVBUFFERSZ)
				msg_send = 0;
1666
			msg_have -= len;
1667 1668 1669 1670 1671 1672
		}

		/*
		 * Make sure we forwarded all messages before we check for
		 * Postmaster termination.
		 */
1673
		if (msg_have != 0 || FD_ISSET(pgStatSock, &rfds))
1674 1675 1676
			continue;

		/*
1677 1678 1679
		 * If the pipe from the postmaster is ready for reading, the
		 * kernel must have closed it on exit() (the postmaster never
		 * really writes to it). So we've done our job.
1680
		 */
1681
		if (FD_ISSET(pmPipe, &rfds))
1682 1683 1684 1685
			exit(0);
	}
}

1686 1687 1688 1689 1690 1691
static void
pgstat_die(SIGNAL_ARGS)
{
	exit(1);
}

1692 1693 1694 1695

/* ----------
 * pgstat_add_backend() -
 *
1696
 *	Support function to keep our backend list up to date.
1697 1698 1699 1700 1701
 * ----------
 */
static int
pgstat_add_backend(PgStat_MsgHdr *msg)
{
1702 1703 1704 1705
	PgStat_StatDBEntry *dbentry;
	PgStat_StatBeEntry *beentry;
	PgStat_StatBeDead *deadbe;
	bool		found;
1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722

	/*
	 * Check that the backend ID is valid
	 */
	if (msg->m_backendid < 1 || msg->m_backendid > MaxBackends)
	{
		fprintf(stderr, "PGSTAT: Invalid backend ID %d\n", msg->m_backendid);
		return -1;
	}

	/*
	 * Get the slot for this backendid.
	 */
	beentry = &pgStatBeTable[msg->m_backendid - 1];
	if (beentry->databaseid != InvalidOid)
	{
		/*
1723 1724
		 * If the slot contains the PID of this backend, everything is
		 * fine and we got nothing to do.
1725 1726 1727 1728 1729 1730
		 */
		if (beentry->procpid == msg->m_procpid)
			return 0;
	}

	/*
1731 1732 1733 1734 1735
	 * Lookup if this backend is known to be dead. This can be caused due
	 * to messages arriving in the wrong order - i.e. Postmaster's BETERM
	 * message might have arrived before we received all the backends
	 * stats messages, or even a new backend with the same backendid was
	 * faster in sending his BESTART.
1736 1737 1738
	 *
	 * If the backend is known to be dead, we ignore this add.
	 */
1739 1740
	deadbe = (PgStat_StatBeDead *) hash_search(pgStatBeDead,
											   (void *) &(msg->m_procpid),
1741 1742
											   HASH_FIND, NULL);
	if (deadbe)
1743 1744 1745
		return 1;

	/*
1746 1747
	 * Backend isn't known to be dead. If it's slot is currently used, we
	 * have to kick out the old backend.
1748 1749 1750 1751 1752 1753 1754 1755
	 */
	if (beentry->databaseid != InvalidOid)
		pgstat_sub_backend(beentry->procpid);

	/*
	 * Put this new backend into the slot.
	 */
	beentry->databaseid = msg->m_databaseid;
1756 1757
	beentry->procpid = msg->m_procpid;
	beentry->userid = msg->m_userid;
1758
	MemSet(beentry->activity, 0, PGSTAT_ACTIVITY_SIZE);
1759 1760 1761 1762

	/*
	 * Lookup or create the database entry for this backends DB.
	 */
1763
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
1764
										   (void *) &(msg->m_databaseid),
1765
												 HASH_ENTER, &found);
1766
	if (dbentry == NULL)
1767
	{
1768
		fprintf(stderr, "PGSTAT: DB hash table out of memory - abort\n");
1769 1770 1771 1772 1773 1774 1775 1776
		exit(1);
	}

	/*
	 * If not found, initialize the new one.
	 */
	if (!found)
	{
1777
		HASHCTL		hash_ctl;
1778

1779 1780 1781 1782 1783 1784 1785
		dbentry->tables = NULL;
		dbentry->n_xact_commit = 0;
		dbentry->n_xact_rollback = 0;
		dbentry->n_blocks_fetched = 0;
		dbentry->n_blocks_hit = 0;
		dbentry->n_connects = 0;
		dbentry->destroy = 0;
1786 1787

		memset(&hash_ctl, 0, sizeof(hash_ctl));
1788
		hash_ctl.keysize = sizeof(Oid);
1789
		hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
1790
		hash_ctl.hash = tag_hash;
1791 1792 1793 1794
		dbentry->tables = hash_create("Per-database table",
									  PGSTAT_TAB_HASH_SIZE,
									  &hash_ctl,
									  HASH_ELEM | HASH_FUNCTION);
1795 1796 1797
		if (dbentry->tables == NULL)
		{
			fprintf(stderr, "PGSTAT: failed to initialize hash table for "
1798
					"new database entry\n");
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820
			exit(1);
		}
	}

	/*
	 * Count number of connects to the database
	 */
	dbentry->n_connects++;

	return 0;
}


/* ----------
 * pgstat_sub_backend() -
 *
 *	Remove a backend from the actual backends list.
 * ----------
 */
static void
pgstat_sub_backend(int procpid)
{
1821 1822 1823
	int			i;
	PgStat_StatBeDead *deadbe;
	bool		found;
1824 1825

	/*
1826 1827
	 * Search in the known-backends table for the slot containing this
	 * PID.
1828 1829 1830 1831 1832 1833 1834 1835
	 */
	for (i = 0; i < MaxBackends; i++)
	{
		if (pgStatBeTable[i].databaseid != InvalidOid &&
			pgStatBeTable[i].procpid == procpid)
		{
			/*
			 * That's him. Add an entry to the known to be dead backends.
1836 1837 1838 1839 1840 1841 1842
			 * Due to possible misorder in the arrival of UDP packets it's
			 * possible that even if we know the backend is dead, there
			 * could still be messages queued that arrive later. Those
			 * messages must not cause our number of backends statistics
			 * to get screwed up, so we remember for a couple of seconds
			 * that this PID is dead and ignore them (only the counting of
			 * backends, not the table access stats they sent).
1843
			 */
1844 1845
			deadbe = (PgStat_StatBeDead *) hash_search(pgStatBeDead,
													   (void *) &procpid,
1846
													 HASH_ENTER, &found);
1847 1848
			if (deadbe == NULL)
			{
1849
				fprintf(stderr, "PGSTAT: dead backend hash table out of memory "
1850
						"- abort\n");
1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867
				exit(1);
			}
			if (!found)
			{
				deadbe->backendid = i + 1;
				deadbe->destroy = PGSTAT_DESTROY_COUNT;
			}

			/*
			 * Declare the backend slot empty.
			 */
			pgStatBeTable[i].databaseid = InvalidOid;
			return;
		}
	}

	/*
1868 1869
	 * No big problem if not found. This can happen if UDP messages arrive
	 * out of order here.
1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882
	 */
}


/* ----------
 * pgstat_write_statsfile() -
 *
 *	Tell the news.
 * ----------
 */
static void
pgstat_write_statsfile(void)
{
1883 1884 1885 1886 1887 1888 1889
	HASH_SEQ_STATUS hstat;
	HASH_SEQ_STATUS tstat;
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	PgStat_StatBeDead *deadbe;
	FILE	   *fpout;
	int			i;
1890 1891

	/*
1892
	 * Open the statistics temp file to write out the current values.
1893
	 */
P
Peter Eisentraut 已提交
1894
	fpout = fopen(pgStat_tmpfname, PG_BINARY_W);
1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906
	if (fpout == NULL)
	{
		fprintf(stderr, "PGSTAT: cannot open temp stats file\nPGSTAT: ");
		perror(pgStat_tmpfname);
		fflush(stderr);
		return;
	}

	/*
	 * Walk through the database table.
	 */
	hash_seq_init(&hstat, pgStatDBHash);
1907
	while ((dbentry = (PgStat_StatDBEntry *) hash_seq_search(&hstat)) != NULL)
1908 1909
	{
		/*
1910 1911
		 * If this database is marked destroyed, count down and do so if
		 * it reaches 0.
1912 1913 1914 1915 1916 1917 1918 1919
		 */
		if (dbentry->destroy > 0)
		{
			if (--(dbentry->destroy) == 0)
			{
				if (dbentry->tables != NULL)
					hash_destroy(dbentry->tables);

1920
				if (hash_search(pgStatDBHash,
1921 1922
								(void *) &(dbentry->databaseid),
								HASH_REMOVE, NULL) == NULL)
1923 1924
				{
					fprintf(stderr, "PGSTAT: database hash table corrupted "
1925
							"during cleanup - abort\n");
1926 1927 1928
					exit(1);
				}
			}
1929

1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945
			/*
			 * Don't include statistics for it.
			 */
			continue;
		}

		/*
		 * Write out the DB line including the number of life backends.
		 */
		fputc('D', fpout);
		fwrite(dbentry, sizeof(PgStat_StatDBEntry), 1, fpout);

		/*
		 * Walk through the databases access stats per table.
		 */
		hash_seq_init(&tstat, dbentry->tables);
1946
		while ((tabentry = (PgStat_StatTabEntry *) hash_seq_search(&tstat)) != NULL)
1947 1948
		{
			/*
1949 1950
			 * If table entry marked for destruction, same as above for
			 * the database entry.
1951 1952 1953 1954 1955
			 */
			if (tabentry->destroy > 0)
			{
				if (--(tabentry->destroy) == 0)
				{
1956
					if (hash_search(dbentry->tables,
1957
									(void *) &(tabentry->tableid),
1958
									HASH_REMOVE, NULL) == NULL)
1959 1960
					{
						fprintf(stderr, "PGSTAT: tables hash table for "
1961 1962 1963
								"database %d corrupted during "
								"cleanup - abort\n",
								dbentry->databaseid);
1964 1965 1966 1967 1968 1969 1970
						exit(1);
					}
				}
				continue;
			}

			/*
1971 1972
			 * At least we think this is still a life table. Print it's
			 * access stats.
1973 1974 1975 1976
			 */
			fputc('T', fpout);
			fwrite(tabentry, sizeof(PgStat_StatTabEntry), 1, fpout);
		}
1977

1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
		/*
		 * Mark the end of this DB
		 */
		fputc('d', fpout);
	}

	/*
	 * Write out the known running backends to the stats file.
	 */
	i = MaxBackends;
	fputc('M', fpout);
	fwrite(&i, sizeof(i), 1, fpout);

	for (i = 0; i < MaxBackends; i++)
	{
		if (pgStatBeTable[i].databaseid != InvalidOid)
		{
			fputc('B', fpout);
			fwrite(&pgStatBeTable[i], sizeof(PgStat_StatBeEntry), 1, fpout);
		}
	}

	/*
2001 2002
	 * No more output to be done. Close the temp file and replace the old
	 * pgstat.stat with it's content.
2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017
	 */
	fputc('E', fpout);
	if (fclose(fpout) < 0)
	{
		fprintf(stderr, "PGSTAT: Error closing temp stats file\nPGSTAT: ");
		perror(pgStat_tmpfname);
		fprintf(stderr, "PGSTAT: Abort\n");
		fflush(stderr);
		exit(1);
	}
	else
	{
		if (rename(pgStat_tmpfname, pgStat_fname) < 0)
		{
			fprintf(stderr, "PGSTAT: Cannot rename temp stats file\n"
2018
					"PGSTAT: ");
2019 2020 2021 2022 2023 2024 2025 2026 2027
			perror(pgStat_fname);
			fflush(stderr);
		}
	}

	/*
	 * Clear out the dead backends table
	 */
	hash_seq_init(&hstat, pgStatBeDead);
2028
	while ((deadbe = (PgStat_StatBeDead *) hash_seq_search(&hstat)) != NULL)
2029 2030
	{
		/*
2031 2032
		 * Count down the destroy delay and remove entries where it
		 * reaches 0.
2033 2034 2035
		 */
		if (--(deadbe->destroy) <= 0)
		{
2036 2037 2038
			if (hash_search(pgStatBeDead,
							(void *) &(deadbe->procpid),
							HASH_REMOVE, NULL) == NULL)
2039 2040
			{
				fprintf(stderr, "PGSTAT: dead backend hash table corrupted "
2041
						"during cleanup - abort\n");
2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
				exit(1);
			}
		}
	}
}


/* ----------
 * pgstat_read_statsfile() -
 *
 *	Reads in an existing statistics collector and initializes the
 *	databases hash table (who's entries point to the tables hash tables)
 *	and the current backend table.
 * ----------
 */
static void
2058 2059
pgstat_read_statsfile(HTAB **dbhash, Oid onlydb,
					  PgStat_StatBeEntry **betab, int *numbackends)
2060
{
2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078
	PgStat_StatDBEntry *dbentry;
	PgStat_StatDBEntry dbbuf;
	PgStat_StatTabEntry *tabentry;
	PgStat_StatTabEntry tabbuf;
	HASHCTL		hash_ctl;
	HTAB	   *tabhash = NULL;
	FILE	   *fpin;
	int			maxbackends = 0;
	int			havebackends = 0;
	bool		found;
	MemoryContext use_mcxt;
	int			mcxt_flags;

	/*
	 * If running in the collector we use the DynaHashCxt memory context.
	 * If running in a backend, we use the TopTransactionContext instead,
	 * so the caller must only know the last XactId when this call
	 * happened to know if his tables are still valid or already gone!
2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094
	 */
	if (pgStatRunningInCollector)
	{
		use_mcxt = NULL;
		mcxt_flags = 0;
	}
	else
	{
		use_mcxt = TopTransactionContext;
		mcxt_flags = HASH_CONTEXT;
	}

	/*
	 * Create the DB hashtable
	 */
	memset(&hash_ctl, 0, sizeof(hash_ctl));
2095
	hash_ctl.keysize = sizeof(Oid);
2096
	hash_ctl.entrysize = sizeof(PgStat_StatDBEntry);
2097 2098 2099 2100
	hash_ctl.hash = tag_hash;
	hash_ctl.hcxt = use_mcxt;
	*dbhash = hash_create("Databases hash", PGSTAT_DB_HASH_SIZE, &hash_ctl,
						  HASH_ELEM | HASH_FUNCTION | mcxt_flags);
2101
	if (*dbhash == NULL)
2102 2103 2104 2105 2106 2107
	{
		if (pgStatRunningInCollector)
		{
			fprintf(stderr, "PGSTAT: Creation of DB hash table failed\n");
			exit(1);
		}
2108
		elog(ERROR, "PGSTAT: Creation of DB hash table failed");
2109 2110 2111
	}

	/*
2112 2113
	 * Initialize the number of known backends to zero, just in case we do
	 * a silent error return below.
2114 2115 2116 2117 2118 2119 2120 2121
	 */
	if (numbackends != NULL)
		*numbackends = 0;
	if (betab != NULL)
		*betab = NULL;

	/*
	 * Try to open the status file. If it doesn't exist, the backends
2122 2123
	 * simply return zero for anything and the collector simply starts
	 * from scratch with empty counters.
2124
	 */
P
Peter Eisentraut 已提交
2125
	if ((fpin = fopen(pgStat_fname, PG_BINARY_R)) == NULL)
2126 2127 2128
		return;

	/*
2129 2130
	 * We found an existing collector stats file. Read it and put all the
	 * hashtable entries into place.
2131 2132 2133 2134 2135
	 */
	for (;;)
	{
		switch (fgetc(fpin))
		{
2136 2137 2138 2139 2140
				/*
				 * 'D'	A PgStat_StatDBEntry struct describing a database
				 * follows. Subsequently, zero to many 'T' entries will
				 * follow until a 'd' is encountered.
				 */
2141 2142 2143 2144 2145
			case 'D':
				if (fread(&dbbuf, 1, sizeof(dbbuf), fpin) != sizeof(dbbuf))
				{
					if (pgStatRunningInCollector)
					{
2146
						fprintf(stderr,
2147 2148 2149 2150 2151 2152
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2153
						elog(WARNING,
2154
							 "PGSTAT: corrupted pgstat.stat file");
2155 2156 2157 2158 2159 2160 2161 2162
						fclose(fpin);
						return;
					}
				}

				/*
				 * Add to the DB hash
				 */
2163
				dbentry = (PgStat_StatDBEntry *) hash_search(*dbhash,
2164 2165
											  (void *) &dbbuf.databaseid,
													 HASH_ENTER, &found);
2166 2167 2168 2169
				if (dbentry == NULL)
				{
					if (pgStatRunningInCollector)
					{
2170
						fprintf(stderr, "PGSTAT: DB hash table out of memory\n");
2171 2172 2173 2174 2175
						exit(1);
					}
					else
					{
						fclose(fpin);
2176
						elog(ERROR, "PGSTAT: DB hash table out of memory");
2177 2178 2179 2180 2181 2182
					}
				}
				if (found)
				{
					if (pgStatRunningInCollector)
					{
2183
						fprintf(stderr,
2184 2185 2186 2187 2188 2189
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2190
						elog(WARNING,
2191
							 "PGSTAT: corrupted pgstat.stat file");
2192 2193 2194 2195 2196 2197
						fclose(fpin);
						return;
					}
				}

				memcpy(dbentry, &dbbuf, sizeof(PgStat_StatDBEntry));
2198 2199 2200
				dbentry->tables = NULL;
				dbentry->destroy = 0;
				dbentry->n_backends = 0;
2201 2202 2203 2204 2205 2206 2207 2208 2209

				/*
				 * Don't collect tables if not the requested DB
				 */
				if (onlydb != InvalidOid && onlydb != dbbuf.databaseid)
					break;


				memset(&hash_ctl, 0, sizeof(hash_ctl));
2210
				hash_ctl.keysize = sizeof(Oid);
2211
				hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
2212 2213
				hash_ctl.hash = tag_hash;
				hash_ctl.hcxt = use_mcxt;
2214 2215 2216
				dbentry->tables = hash_create("Per-database table",
											  PGSTAT_TAB_HASH_SIZE,
											  &hash_ctl,
2217
								 HASH_ELEM | HASH_FUNCTION | mcxt_flags);
2218 2219 2220 2221 2222
				if (dbentry->tables == NULL)
				{
					if (pgStatRunningInCollector)
					{
						fprintf(stderr, "PGSTAT: failed to initialize "
2223
								"hash table for new database entry\n");
2224 2225 2226 2227 2228 2229
						exit(1);
					}
					else
					{
						fclose(fpin);
						elog(ERROR, "PGSTAT: failed to initialize "
2230
							 "hash table for new database entry\n");
2231 2232 2233 2234 2235 2236 2237 2238 2239 2240
					}
				}

				/*
				 * Arrange that following 'T's add entries to this
				 * databases tables hash table.
				 */
				tabhash = dbentry->tables;
				break;

2241 2242 2243
				/*
				 * 'd'	End of this database.
				 */
2244 2245 2246 2247
			case 'd':
				tabhash = NULL;
				break;

2248 2249 2250
				/*
				 * 'T'	A PgStat_StatTabEntry follows.
				 */
2251 2252 2253 2254 2255
			case 'T':
				if (fread(&tabbuf, 1, sizeof(tabbuf), fpin) != sizeof(tabbuf))
				{
					if (pgStatRunningInCollector)
					{
2256
						fprintf(stderr,
2257 2258 2259 2260 2261 2262
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2263
						elog(WARNING,
2264
							 "PGSTAT: corrupted pgstat.stat file");
2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275
						fclose(fpin);
						return;
					}
				}

				/*
				 * Skip if table belongs to a not requested database.
				 */
				if (tabhash == NULL)
					break;

2276
				tabentry = (PgStat_StatTabEntry *) hash_search(tabhash,
2277 2278
												(void *) &tabbuf.tableid,
													 HASH_ENTER, &found);
2279 2280 2281 2282
				if (tabentry == NULL)
				{
					if (pgStatRunningInCollector)
					{
2283
						fprintf(stderr, "PGSTAT: Tab hash table out of memory\n");
2284 2285 2286 2287 2288
						exit(1);
					}
					else
					{
						fclose(fpin);
2289
						elog(ERROR, "PGSTAT: Tab hash table out of memory");
2290 2291 2292 2293 2294 2295 2296
					}
				}

				if (found)
				{
					if (pgStatRunningInCollector)
					{
2297
						fprintf(stderr,
2298 2299 2300 2301 2302 2303
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2304
						elog(WARNING,
2305
							 "PGSTAT: corrupted pgstat.stat file");
2306 2307 2308 2309 2310 2311 2312 2313
						fclose(fpin);
						return;
					}
				}

				memcpy(tabentry, &tabbuf, sizeof(tabbuf));
				break;

2314 2315 2316
				/*
				 * 'M'	The maximum number of backends to expect follows.
				 */
2317 2318 2319 2320 2321 2322 2323
			case 'M':
				if (betab == NULL || numbackends == NULL)
				{
					fclose(fpin);
					return;
				}
				if (fread(&maxbackends, 1, sizeof(maxbackends), fpin) !=
2324
					sizeof(maxbackends))
2325 2326 2327
				{
					if (pgStatRunningInCollector)
					{
2328
						fprintf(stderr,
2329 2330 2331 2332 2333 2334
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2335
						elog(WARNING,
2336
							 "PGSTAT: corrupted pgstat.stat file");
2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347
						fclose(fpin);
						return;
					}
				}
				if (maxbackends == 0)
				{
					fclose(fpin);
					return;
				}

				/*
2348 2349
				 * Allocate space (in TopTransactionContext too) for the
				 * backend table.
2350 2351
				 */
				if (use_mcxt == NULL)
2352 2353
					*betab = (PgStat_StatBeEntry *) malloc(
							   sizeof(PgStat_StatBeEntry) * maxbackends);
2354
				else
2355 2356 2357
					*betab = (PgStat_StatBeEntry *) MemoryContextAlloc(
																use_mcxt,
							   sizeof(PgStat_StatBeEntry) * maxbackends);
2358 2359
				break;

2360 2361 2362
				/*
				 * 'B'	A PgStat_StatBeEntry follows.
				 */
2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
			case 'B':
				if (betab == NULL || numbackends == NULL)
				{
					fclose(fpin);
					return;
				}
				if (*betab == NULL)
				{
					fclose(fpin);
					return;
				}
2374

2375 2376 2377
				/*
				 * Read it directly into the table.
				 */
2378 2379 2380
				if (fread(&(*betab)[havebackends], 1,
						  sizeof(PgStat_StatBeEntry), fpin) !=
					sizeof(PgStat_StatBeEntry))
2381 2382 2383
				{
					if (pgStatRunningInCollector)
					{
2384
						fprintf(stderr,
2385 2386 2387 2388 2389 2390
								"PGSTAT: corrupted pgstat.stat file\n");
						fclose(fpin);
						return;
					}
					else
					{
B
Bruce Momjian 已提交
2391
						elog(WARNING,
2392
							 "PGSTAT: corrupted pgstat.stat file");
2393 2394 2395 2396 2397 2398 2399 2400
						fclose(fpin);
						return;
					}
				}

				/*
				 * Count backends per database here.
				 */
2401 2402 2403
				dbentry = (PgStat_StatDBEntry *) hash_search(*dbhash,
						   (void *) &((*betab)[havebackends].databaseid),
														HASH_FIND, NULL);
2404
				if (dbentry)
2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416
					dbentry->n_backends++;

				havebackends++;
				if (numbackends != 0)
					*numbackends = havebackends;
				if (havebackends >= maxbackends)
				{
					fclose(fpin);
					return;
				}
				break;

2417 2418 2419
				/*
				 * 'E'	The EOF marker of a complete stats file.
				 */
2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
			case 'E':
				fclose(fpin);
				return;

			default:
				if (pgStatRunningInCollector)
				{
					fprintf(stderr, "PGSTAT: corrupted pgstat.stat file\n");
					fclose(fpin);
					return;
				}
				else
				{
B
Bruce Momjian 已提交
2433
					elog(WARNING, "PGSTAT: corrupted pgstat.stat file");
2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479
					fclose(fpin);
					return;
				}
		}
	}

	fclose(fpin);
}


/* ----------
 * pgstat_recv_bestart() -
 *
 *	Process a backend starup message.
 * ----------
 */
static void
pgstat_recv_bestart(PgStat_MsgBestart *msg, int len)
{
	pgstat_add_backend(&msg->m_hdr);
}


/* ----------
 * pgstat_recv_beterm() -
 *
 *	Process a backend termination message.
 * ----------
 */
static void
pgstat_recv_beterm(PgStat_MsgBeterm *msg, int len)
{
	pgstat_sub_backend(msg->m_hdr.m_procpid);
}


/* ----------
 * pgstat_recv_activity() -
 *
 *	Remember what the backend is doing.
 * ----------
 */
static void
pgstat_recv_activity(PgStat_MsgActivity *msg, int len)
{
	/*
2480 2481 2482
	 * Here we check explicitly for 0 return, since we don't want to
	 * mangle the activity of an active backend by a delayed packed from a
	 * dead one.
2483 2484 2485
	 */
	if (pgstat_add_backend(&msg->m_hdr) != 0)
		return;
2486

2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500
	strncpy(pgStatBeTable[msg->m_hdr.m_backendid - 1].activity,
			msg->m_what, PGSTAT_ACTIVITY_SIZE);
}


/* ----------
 * pgstat_recv_tabstat() -
 *
 *	Count what the backend has done.
 * ----------
 */
static void
pgstat_recv_tabstat(PgStat_MsgTabstat *msg, int len)
{
2501 2502 2503 2504 2505
	PgStat_TableEntry *tabmsg = &(msg->m_entry[0]);
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	int			i;
	bool		found;
2506 2507 2508 2509 2510 2511 2512 2513 2514 2515

	/*
	 * Make sure the backend is counted for.
	 */
	if (pgstat_add_backend(&msg->m_hdr) < 0)
		return;

	/*
	 * Lookup the database in the hashtable.
	 */
2516
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
2517 2518
									 (void *) &(msg->m_hdr.m_databaseid),
												 HASH_FIND, NULL);
2519
	if (!dbentry)
2520 2521 2522
		return;

	/*
2523 2524
	 * If the database is marked for destroy, this is a delayed UDP packet
	 * and not worth being counted.
2525 2526 2527 2528
	 */
	if (dbentry->destroy > 0)
		return;

2529 2530
	dbentry->n_xact_commit += (PgStat_Counter) (msg->m_xact_commit);
	dbentry->n_xact_rollback += (PgStat_Counter) (msg->m_xact_rollback);
2531 2532 2533 2534 2535 2536

	/*
	 * Process all table entries in the message.
	 */
	for (i = 0; i < msg->m_nentries; i++)
	{
2537
		tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
2538 2539
											  (void *) &(tabmsg[i].t_id),
													 HASH_ENTER, &found);
2540 2541
		if (tabentry == NULL)
		{
2542
			fprintf(stderr, "PGSTAT: tables hash table out of memory for "
2543
					"database %d - abort\n", dbentry->databaseid);
2544 2545 2546 2547 2548 2549
			exit(1);
		}

		if (!found)
		{
			/*
2550 2551
			 * If it's a new table entry, initialize counters to the
			 * values we just got.
2552
			 */
2553 2554 2555 2556 2557 2558 2559 2560
			tabentry->numscans = tabmsg[i].t_numscans;
			tabentry->tuples_returned = tabmsg[i].t_tuples_returned;
			tabentry->tuples_fetched = tabmsg[i].t_tuples_fetched;
			tabentry->tuples_inserted = tabmsg[i].t_tuples_inserted;
			tabentry->tuples_updated = tabmsg[i].t_tuples_updated;
			tabentry->tuples_deleted = tabmsg[i].t_tuples_deleted;
			tabentry->blocks_fetched = tabmsg[i].t_blocks_fetched;
			tabentry->blocks_hit = tabmsg[i].t_blocks_hit;
2561 2562 2563 2564 2565 2566 2567 2568

			tabentry->destroy = 0;
		}
		else
		{
			/*
			 * Otherwise add the values to the existing entry.
			 */
2569 2570 2571 2572 2573 2574 2575 2576
			tabentry->numscans += tabmsg[i].t_numscans;
			tabentry->tuples_returned += tabmsg[i].t_tuples_returned;
			tabentry->tuples_fetched += tabmsg[i].t_tuples_fetched;
			tabentry->tuples_inserted += tabmsg[i].t_tuples_inserted;
			tabentry->tuples_updated += tabmsg[i].t_tuples_updated;
			tabentry->tuples_deleted += tabmsg[i].t_tuples_deleted;
			tabentry->blocks_fetched += tabmsg[i].t_blocks_fetched;
			tabentry->blocks_hit += tabmsg[i].t_blocks_hit;
2577 2578 2579 2580 2581
		}

		/*
		 * And add the block IO to the database entry.
		 */
2582 2583
		dbentry->n_blocks_fetched += tabmsg[i].t_blocks_fetched;
		dbentry->n_blocks_hit += tabmsg[i].t_blocks_hit;
2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596
	}
}


/* ----------
 * pgstat_recv_tabpurge() -
 *
 *	Arrange for dead table removal.
 * ----------
 */
static void
pgstat_recv_tabpurge(PgStat_MsgTabpurge *msg, int len)
{
2597 2598 2599
	PgStat_StatDBEntry *dbentry;
	PgStat_StatTabEntry *tabentry;
	int			i;
2600 2601 2602 2603 2604 2605 2606 2607 2608 2609

	/*
	 * Make sure the backend is counted for.
	 */
	if (pgstat_add_backend(&msg->m_hdr) < 0)
		return;

	/*
	 * Lookup the database in the hashtable.
	 */
2610
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
2611 2612
									 (void *) &(msg->m_hdr.m_databaseid),
												 HASH_FIND, NULL);
2613
	if (!dbentry)
2614 2615 2616
		return;

	/*
2617 2618
	 * If the database is marked for destroy, this is a delayed UDP packet
	 * and the tables will go away at DB destruction.
2619 2620 2621 2622 2623 2624 2625 2626 2627
	 */
	if (dbentry->destroy > 0)
		return;

	/*
	 * Process all table entries in the message.
	 */
	for (i = 0; i < msg->m_nentries; i++)
	{
2628
		tabentry = (PgStat_StatTabEntry *) hash_search(dbentry->tables,
2629 2630
										   (void *) &(msg->m_tableid[i]),
													   HASH_FIND, NULL);
2631
		if (tabentry)
2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645
			tabentry->destroy = PGSTAT_DESTROY_COUNT;
	}
}


/* ----------
 * pgstat_recv_dropdb() -
 *
 *	Arrange for dead database removal
 * ----------
 */
static void
pgstat_recv_dropdb(PgStat_MsgDropdb *msg, int len)
{
2646
	PgStat_StatDBEntry *dbentry;
2647 2648 2649 2650 2651 2652 2653 2654 2655 2656

	/*
	 * Make sure the backend is counted for.
	 */
	if (pgstat_add_backend(&msg->m_hdr) < 0)
		return;

	/*
	 * Lookup the database in the hashtable.
	 */
2657
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
2658 2659
										   (void *) &(msg->m_databaseid),
												 HASH_FIND, NULL);
2660
	if (!dbentry)
2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678
		return;

	/*
	 * Mark the database for destruction.
	 */
	dbentry->destroy = PGSTAT_DESTROY_COUNT;
}


/* ----------
 * pgstat_recv_dropdb() -
 *
 *	Arrange for dead database removal
 * ----------
 */
static void
pgstat_recv_resetcounter(PgStat_MsgResetcounter *msg, int len)
{
2679 2680
	HASHCTL		hash_ctl;
	PgStat_StatDBEntry *dbentry;
2681 2682 2683 2684 2685 2686 2687 2688 2689 2690

	/*
	 * Make sure the backend is counted for.
	 */
	if (pgstat_add_backend(&msg->m_hdr) < 0)
		return;

	/*
	 * Lookup the database in the hashtable.
	 */
2691
	dbentry = (PgStat_StatDBEntry *) hash_search(pgStatDBHash,
2692 2693
									 (void *) &(msg->m_hdr.m_databaseid),
												 HASH_FIND, NULL);
2694
	if (!dbentry)
2695 2696 2697 2698 2699 2700 2701 2702 2703
		return;

	/*
	 * We simply throw away all the databases table entries by recreating
	 * a new hash table for them.
	 */
	if (dbentry->tables != NULL)
		hash_destroy(dbentry->tables);

2704 2705 2706 2707 2708 2709 2710
	dbentry->tables = NULL;
	dbentry->n_xact_commit = 0;
	dbentry->n_xact_rollback = 0;
	dbentry->n_blocks_fetched = 0;
	dbentry->n_blocks_hit = 0;
	dbentry->n_connects = 0;
	dbentry->destroy = 0;
2711 2712

	memset(&hash_ctl, 0, sizeof(hash_ctl));
2713
	hash_ctl.keysize = sizeof(Oid);
2714
	hash_ctl.entrysize = sizeof(PgStat_StatTabEntry);
2715
	hash_ctl.hash = tag_hash;
2716 2717 2718 2719
	dbentry->tables = hash_create("Per-database table",
								  PGSTAT_TAB_HASH_SIZE,
								  &hash_ctl,
								  HASH_ELEM | HASH_FUNCTION);
2720 2721 2722
	if (dbentry->tables == NULL)
	{
		fprintf(stderr, "PGSTAT: failed to reinitialize hash table for "
2723
				"database entry\n");
2724 2725 2726
		exit(1);
	}
}