postgres.c 42.3 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * postgres.c
4
 *	  POSTGRES C Backend Interface
5 6 7 8 9
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
10
 *	  $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.108 1999/04/25 03:19:10 tgl Exp $
11 12
 *
 * NOTES
13 14
 *	  this is the "main" module of the postgres backend and
 *	  hence the main module of the "traffic cop".
15 16 17
 *
 *-------------------------------------------------------------------------
 */
B
Bruce Momjian 已提交
18 19

#include <unistd.h>
20 21
#include <stdio.h>
#include <string.h>
22
#include <signal.h>
23 24
#include <time.h>
#include <sys/time.h>
B
Bruce Momjian 已提交
25 26
#include <sys/types.h>
#include <fcntl.h>
27
#include <sys/param.h>			/* for MAXHOSTNAMELEN on most */
28
#ifndef MAXHOSTNAMELEN
29
#include <netdb.h>				/* for MAXHOSTNAMELEN on some */
M
Fixes:  
Marc G. Fournier 已提交
30
#endif
31
#ifndef MAXHOSTNAMELEN			/* for MAXHOSTNAMELEN under sco3.2v5.0.2 */
32 33
#include <sys/socket.h>
#endif
34
#include <errno.h>
35
#if HAVE_SYS_SELECT_H
36
#include <sys/select.h>
37
#endif	 /* aix */
M
 
Marc G. Fournier 已提交
38 39 40
#include <netinet/in.h>
#include <arpa/inet.h>
#include <netdb.h>
41 42 43
#ifdef __CYGWIN32__
#include <getopt.h>
#endif
44 45 46

#include "postgres.h"
#include "miscadmin.h"
47
#include "fmgr.h"
48

49 50
#include "access/xact.h"
#include "catalog/catname.h"
51
#include "commands/async.h"
52 53 54
#include "executor/execdebug.h"
#include "executor/executor.h"
#include "libpq/libpq.h"
55
#include "libpq/pqformat.h"
56
#include "libpq/libpq-be.h"
57 58 59 60
#include "libpq/pqsignal.h"
#include "nodes/pg_list.h"
#include "nodes/print.h"
#include "optimizer/cost.h"
61
#include "optimizer/planner.h"
62
#include "optimizer/prep.h"
63
#include "parser/parser.h"
64 65 66 67 68
#include "rewrite/rewriteHandler.h"		/* for QueryRewrite() */
#include "storage/bufmgr.h"
#include "tcop/dest.h"
#include "tcop/fastpath.h"
#include "tcop/pquery.h"
69
#include "tcop/tcopdebug.h"
70 71 72 73
#include "tcop/tcopprot.h"		/* where declarations for this file go */
#include "tcop/utility.h"
#include "utils/mcxt.h"
#include "utils/rel.h"
M
 
Marc G. Fournier 已提交
74
#include "utils/ps_status.h"
75
#include "utils/temprel.h"
76

M
 
Marc G. Fournier 已提交
77
#ifdef NOT_USED
78
#include "nodes/relation.h"
79
#endif
80

M
 
Marc G. Fournier 已提交
81
#ifdef NOT_USED
82 83
#include "optimizer/xfunc.h"
#endif
84

M
 
Marc G. Fournier 已提交
85
#ifdef NOT_USED
86
#include "nodes/plannodes.h"
87
#endif
88

M
 
Marc G. Fournier 已提交
89
#ifdef NOT_USED
90
#include "nodes/memnodes.h"
91
#endif
92

M
 
Marc G. Fournier 已提交
93 94
#include "utils/trace.h"

95
#ifdef MULTIBYTE
M
 
Marc G. Fournier 已提交
96
#include "mb/pg_wchar.h"
97 98
#endif

M
 
Marc G. Fournier 已提交
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
/*
 * Trace flags, see backend/utils/misc/trace.c
 */
#define Verbose				pg_options[TRACE_VERBOSE]
#define DebugPrintQuery		pg_options[TRACE_QUERY]
#define DebugPrintPlan		pg_options[TRACE_PLAN]
#define DebugPrintParse		pg_options[TRACE_PARSE]
#define ShowParserStats		pg_options[TRACE_PARSERSTATS]
#define ShowPlannerStats	pg_options[TRACE_PLANNERSTATS]
#define ShowExecutorStats	pg_options[TRACE_EXECUTORSTATS]
#define DebugPrintRewrittenParsetree \
							pg_options[TRACE_REWRITTEN]
#ifdef LOCK_MGR_DEBUG
#define LockDebug			pg_options[TRACE_LOCKS]
#endif

#define DeadlockCheckTimer	pg_options[OPT_DEADLOCKTIMEOUT]
#define HostnameLookup		pg_options[OPT_HOSTLOOKUP]
#define ShowPortNumber		pg_options[OPT_SHOWPORTNUMBER]

119
/* ----------------
120
 *		global variables
121 122
 * ----------------
 */
123 124

/*static bool	EnableRewrite = true; , never changes why have it*/
125
CommandDest whereToSendOutput;
126

M
 
Marc G. Fournier 已提交
127 128
/* Define status buffer needed by PS_SET_STATUS */
PS_DEFINE_BUFFER;
129

130 131
extern int	lockingOff;
extern int	NBuffers;
132

133 134 135
int			dontExecute = 0;
static int	ShowStats;
static bool IsEmptyQuery = false;
136

137
char		relname[80];		/* current relation name */
138

139
/* note: these declarations had better match tcopprot.h */
B
Hi,  
Bruce Momjian 已提交
140
DLLIMPORT sigjmp_buf	Warn_restart;
141
bool		InError;
142

143
extern int	NBuffers;
144

145 146 147 148
static int	EchoQuery = 0;		/* default don't echo */
time_t		tim;
char		pg_pathname[256];
FILE	   *StatFp;
149

150
/* ----------------
151 152
 *		people who want to use EOF should #define DONTUSENEWLINE in
 *		tcop/tcopdebug.h
153 154 155
 * ----------------
 */
#ifndef TCOP_DONTUSENEWLINE
156
int			UseNewLine = 1;		/* Use newlines query delimiters (the
157 158
								 * default) */

159
#else
160
int			UseNewLine = 0;		/* Use EOF as query delimiters */
161

162
#endif	 /* TCOP_DONTUSENEWLINE */
163 164 165 166

/*
** Flags for expensive function optimization -- JMH 3/9/92
*/
167
int			XfuncMode = 0;
168 169 170

/*
 * ----------------
171 172 173 174 175 176 177
 *	 Note: _exec_repeat_ defaults to 1 but may be changed
 *		   by a DEBUG command.	 If you set this to a large
 *		   number N, run a single query, and then set it
 *		   back to 1 and run N queries, you can get an idea
 *		   of how much time is being spent in the parser and
 *		   planner b/c in the first case this overhead only
 *		   happens once.  -cim 6/9/91
178 179
 * ----------------
*/
180
int			_exec_repeat_ = 1;
181 182

/* ----------------------------------------------------------------
183
 *		decls for routines only used in this file
184 185
 * ----------------------------------------------------------------
 */
186
static char InteractiveBackend(char *inBuf);
187 188
static char SocketBackend(char *inBuf);
static char ReadCommand(char *inBuf);
189 190 191


/* ----------------------------------------------------------------
192
 *		routines to obtain user input
193 194 195 196
 * ----------------------------------------------------------------
 */

/* ----------------
197 198
 *	InteractiveBackend() is called for user interactive connections
 *	the string entered by the user is placed in its parameter inBuf.
199 200 201 202 203 204
 * ----------------
 */

static char
InteractiveBackend(char *inBuf)
{
205 206 207 208
	char	   *stuff = inBuf;	/* current place in input buffer */
	int			c;				/* character read from getc() */
	bool		end = false;	/* end-of-input flag */
	bool		backslashSeen = false;	/* have we seen a \ ? */
209 210 211 212 213 214

	/* ----------------
	 *	display a prompt and obtain input from the user
	 * ----------------
	 */
	printf("> ");
215
	fflush(stdout);
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 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268

	for (;;)
	{
		if (UseNewLine)
		{
			/* ----------------
			 *	if we are using \n as a delimiter, then read
			 *	characters until the \n.
			 * ----------------
			 */
			while ((c = getc(stdin)) != EOF)
			{
				if (c == '\n')
				{
					if (backslashSeen)
					{
						stuff--;
						continue;
					}
					else
					{
						/* keep the newline character */
						*stuff++ = '\n';
						*stuff++ = '\0';
						break;
					}
				}
				else if (c == '\\')
					backslashSeen = true;
				else
					backslashSeen = false;

				*stuff++ = (char) c;
			}

			if (c == EOF)
				end = true;
		}
		else
		{
			/* ----------------
			 *	otherwise read characters until EOF.
			 * ----------------
			 */
			while ((c = getc(stdin)) != EOF)
				*stuff++ = (char) c;

			if (stuff == inBuf)
				end = true;
		}

		if (end)
		{
M
 
Marc G. Fournier 已提交
269
			if (Verbose)
270 271
				puts("EOF");
			IsEmptyQuery = true;
272
			proc_exit(0);
273 274 275 276 277 278 279 280 281 282 283 284 285 286
		}

		/* ----------------
		 *	otherwise we have a user query so process it.
		 * ----------------
		 */
		break;
	}

	/* ----------------
	 *	if the query echo flag was given, print the query..
	 * ----------------
	 */
	if (EchoQuery)
M
 
Marc G. Fournier 已提交
287
		printf("query: %s\n", inBuf);
288
	fflush(stdout);
289

290
	return 'Q';
291 292 293
}

/* ----------------
294
 *	SocketBackend()		Is called for frontend-backend connections
295
 *
296 297
 *	If the input is a query (case 'Q') then the string entered by
 *	the user is placed in its parameter inBuf.
298
 *
299 300 301
 *	If the input is a fastpath function call (case 'F') then
 *	the function call is processed in HandleFunctionRequest().
 *	(now called from PostgresMain())
302 303 304 305
 * ----------------
 */

static char
306
SocketBackend(char *inBuf)
307
{
308
	char		qtype;
309
	char		result = '\0';
310 311 312 313 314

	/* ----------------
	 *	get input from the frontend
	 * ----------------
	 */
315 316
	qtype = '?';
	if (pq_getbytes(&qtype, 1) == EOF)
317 318 319 320 321
	{
		/* ------------
		 *	when front-end applications quits/dies
		 * ------------
		 */
322
		proc_exit(0);
323 324
	}

325
	switch (qtype)
326
	{
327 328 329 330 331 332 333 334
			/* ----------------
			 *	'Q': user entered a query
			 * ----------------
			 */
		case 'Q':
			pq_getstr(inBuf, MAX_PARSE_BUFFER);
			result = 'Q';
			break;
335

336 337 338 339 340 341
			/* ----------------
			 *	'F':  calling user/system functions
			 * ----------------
			 */
		case 'F':
			pq_getstr(inBuf, MAX_PARSE_BUFFER); /* ignore the rest of the
342
												 * line */
343 344
			result = 'F';
			break;
345

346 347 348 349 350 351 352
			/* ----------------
			 *	'X':  frontend is exiting
			 * ----------------
			 */
		case 'X':
			result = 'X';
			break;
353

354 355 356 357 358 359 360 361
			/* ----------------
			 *	otherwise we got garbage from the frontend.
			 *
			 *	XXX are we certain that we want to do an elog(FATAL) here?
			 *		-cim 1/24/90
			 * ----------------
			 */
		default:
362
			elog(FATAL, "Socket command type %c unknown", qtype);
363
			break;
364 365
	}
	return result;
366 367 368
}

/* ----------------
369 370 371 372
 *		ReadCommand reads a command from either the frontend or
 *		standard input, places it in inBuf, and returns a char
 *		representing whether the string is a 'Q'uery or a 'F'astpath
 *		call.
373 374 375
 * ----------------
 */
static char
376
ReadCommand(char *inBuf)
377
{
378 379
	if (IsUnderPostmaster)
		return SocketBackend(inBuf);
380 381
	else
		return InteractiveBackend(inBuf);
382 383
}

384 385 386 387 388 389
List *
pg_parse_and_plan(char *query_string,	/* string to execute */
				  Oid *typev,	/* argument types */
				  int nargs,	/* number of arguments */
				  QueryTreeList **queryListP,	/* pointer to the parse
												 * trees */
390 391
				  CommandDest dest,		/* where results should go */
				  bool aclOverride)
392
{
393 394 395 396 397 398 399 400
	QueryTreeList *querytree_list;
	int			i;
	List	   *plan_list = NIL;
	Plan	   *plan;
	int			j;
	QueryTreeList *new_list;
	List	   *rewritten = NIL;
	Query	   *querytree;
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430

	/* ----------------
	 *	(1) parse the request string into a list of parse trees
	 * ----------------
	 */
	if (ShowParserStats)
		ResetUsage();

	querytree_list = parser(query_string, typev, nargs);

	if (ShowParserStats)
	{
		fprintf(stderr, "! Parser Stats:\n");
		ShowUsage();
	}

	/* new_list holds the rewritten queries */
	new_list = (QueryTreeList *) malloc(sizeof(QueryTreeList));
	new_list->len = querytree_list->len;
	new_list->qtrees = (Query **) malloc(new_list->len * sizeof(Query *));

	/* ----------------
	 *	(2) rewrite the queries, as necessary
	 * ----------------
	 */
	j = 0;						/* counter for the new_list, new_list can
								 * be longer than old list as a result of
								 * rewrites */
	for (i = 0; i < querytree_list->len; i++)
	{
431 432 433 434
		List	   *union_result,
				   *union_list,
				   *rewritten_list;

435 436
		querytree = querytree_list->qtrees[i];

B
Hi!  
Bruce Momjian 已提交
437 438 439 440 441 442 443 444
 		/***S*I***/
 		/* Rewrite Union, Intersect and Except Queries
 		 * to normal Union Queries using IN and NOT IN subselects */
 		if(querytree->intersectClause != NIL) 
 		  {	  
 		    querytree = Except_Intersect_Rewrite(querytree);
 		  }

M
 
Marc G. Fournier 已提交
445
		if (DebugPrintQuery)
446
		{
447
			if (DebugPrintQuery > 3)
B
Hi!  
Bruce Momjian 已提交
448 449 450
			{			  
			  /* Print the query string as is if query debug level > 3 */
			  TPRINTF(TRACE_QUERY, "query: %s", query_string); 
451 452 453
			}
			else
			{
M
 
Marc G. Fournier 已提交
454
				/* Print condensed query string to fit in one log line */
455 456 457 458 459 460 461 462 463 464 465
				char		buff[8192 + 1];
				char		c,
						   *s,
						   *d;
				int			n,
							is_space = 1;

				for (s = query_string, d = buff, n = 0; (c = *s) && (n < 8192); s++)
				{
					switch (c)
					{
M
 
Marc G. Fournier 已提交
466 467 468 469 470 471
						case '\r':
						case '\n':
						case '\t':
							c = ' ';
							/* fall through */
						case ' ':
472 473
							if (is_space)
								continue;
M
 
Marc G. Fournier 已提交
474 475 476 477 478 479 480 481 482 483
							is_space = 1;
							break;
						default:
							is_space = 0;
							break;
					}
					*d++ = c;
					n++;
				}
				*d = '\0';
484
				TPRINTF(TRACE_QUERY, "query: %s", buff);
M
 
Marc G. Fournier 已提交
485
			}
486
		}
487 488 489 490 491 492 493 494

		/* don't rewrite utilites */
		if (querytree->commandType == CMD_UTILITY)
		{
			new_list->qtrees[j++] = querytree;
			continue;
		}

M
 
Marc G. Fournier 已提交
495
		if (DebugPrintParse)
496
		{
M
 
Marc G. Fournier 已提交
497
			TPRINTF(TRACE_PARSE, "parser outputs:");
498 499 500 501 502
			nodeDisplay(querytree);
		}

		/* rewrite queries (retrieve, append, delete, replace) */
		rewritten = QueryRewrite(querytree);
B
Bruce Momjian 已提交
503

504
		if (rewritten != NIL)
505
		{
506 507
			int			len,
						k;
508

509 510 511 512 513 514 515 516 517 518 519 520 521
			/*
			 * Rewrite the UNIONS.
			 */
			foreach(rewritten_list, rewritten)
			{
				Query	   *qry = (Query *) lfirst(rewritten_list);

				union_result = NIL;
				foreach(union_list, qry->unionClause)
					union_result = nconc(union_result, QueryRewrite((Query *) lfirst(union_list)));
				qry->unionClause = union_result;
			}

522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
			len = length(rewritten);
			if (len == 1)
				new_list->qtrees[j++] = (Query *) lfirst(rewritten);
			else
			{
				/* rewritten queries are longer than original query */
				/* grow the new_list to accommodate */
				new_list->len += len - 1;		/* - 1 because originally
												 * we allocated one space
												 * for the query */
				new_list->qtrees = realloc(new_list->qtrees,
										new_list->len * sizeof(Query *));
				for (k = 0; k < len; k++)
					new_list->qtrees[j++] = (Query *) nth(k, rewritten);
			}
		}
	}

540 541 542 543 544 545 546 547
	/* ----------
	 * Due to rewriting, the new list could also have been
	 * shrunk (do instead nothing). Forget obsolete queries
	 * at the end.
	 * ----------
	 */
	new_list->len = j;

548 549 550 551 552 553
	/* we're done with the original lists, free it */
	free(querytree_list->qtrees);
	free(querytree_list);

	querytree_list = new_list;

554 555 556
	/*
	 * Override ACL checking if requested
	 */
557 558 559 560 561 562
	if (aclOverride)
	{
		for (i = 0; i < querytree_list->len; i++)
		{
			RangeTblEntry *rte;
			List	   *l;
563 564 565 566 567

			querytree = querytree_list->qtrees[i];
			if (querytree->commandType == CMD_UTILITY)
				continue;

568 569 570
			foreach(l, querytree->rtable)
			{
				rte = (RangeTblEntry *) lfirst(l);
571 572 573 574 575 576

				rte->skipAcl = TRUE;
			}
		}
	}

M
 
Marc G. Fournier 已提交
577
	if (DebugPrintRewrittenParsetree)
578
	{
M
 
Marc G. Fournier 已提交
579
		TPRINTF(TRACE_REWRITTEN, "after rewriting:");
580 581 582

		for (i = 0; i < querytree_list->len; i++)
		{
583
			nodeDisplay(querytree_list->qtrees[i]);
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606
			printf("\n");
		}
	}

	for (i = 0; i < querytree_list->len; i++)
	{
		querytree = querytree_list->qtrees[i];

		/*
		 * For each query that isn't a utility invocation, generate a
		 * plan.
		 */

		if (querytree->commandType != CMD_UTILITY)
		{

			if (IsAbortedTransactionBlockState())
			{
				/* ----------------
				 *	 the EndCommand() stuff is to tell the frontend
				 *	 that the command ended. -cim 6/1/90
				 * ----------------
				 */
607
				char	   *tag = "*ABORT STATE*";
608 609 610 611 612 613

				EndCommand(tag, dest);

				elog(NOTICE, "(transaction aborted): %s",
					 "queries ignored until END");

614 615 616 617
				free(querytree_list->qtrees);
				free(querytree_list);
				if (queryListP)
					*queryListP = (QueryTreeList *) NULL;
618 619 620 621 622
				return (List *) NULL;
			}

			if (ShowPlannerStats)
				ResetUsage();
623 624

			/* call that optimizer */
625
			plan = planner(querytree);
626

627 628 629 630 631 632
			if (ShowPlannerStats)
			{
				fprintf(stderr, "! Planner Stats:\n");
				ShowUsage();
			}
			plan_list = lappend(plan_list, plan);
M
Fixes:  
Marc G. Fournier 已提交
633
#ifdef INDEXSCAN_PATCH
634 635 636 637 638 639
			/* ----------------
			 *	Print plan if debugging.
			 *	This has been moved here to get debugging output
			 *	also for queries in functions.	DZ - 27-8-1996
			 * ----------------
			 */
M
 
Marc G. Fournier 已提交
640
			if (DebugPrintPlan)
641
			{
M
 
Marc G. Fournier 已提交
642
				TPRINTF(TRACE_PLAN, "plan:");
643 644
				nodeDisplay(plan);
			}
M
Fixes:  
Marc G. Fournier 已提交
645
#endif
646
		}
647
#ifdef FUNC_UTIL_PATCH
648 649 650 651 652 653 654 655

		/*
		 * If the command is an utility append a null plan. This is needed
		 * to keep the plan_list aligned with the querytree_list or the
		 * function executor will crash.  DZ - 30-8-1996
		 */
		else
			plan_list = lappend(plan_list, NULL);
656
#endif
657 658
	}

659 660 661 662
	/* ----------
	 * Check if the rewriting had thrown away anything
	 * ----------
	 */
663 664
	if (querytree_list->len == 0)
	{
665 666 667 668 669
		free(querytree_list->qtrees);
		free(querytree_list);
		querytree_list = NULL;
	}

670 671 672
	if (queryListP)
		*queryListP = querytree_list;

673
	return plan_list;
674 675 676
}

/* ----------------------------------------------------------------
677
 *		pg_exec_query()
678 679 680 681 682 683
 *
 *		Takes a querystring, runs the parser/utilities or
 *		parser/planner/executor over it as necessary
 *		Begin Transaction Should have been called before this
 *		and CommitTransaction After this is called
 *		This is strictly because we do not allow for nested xactions.
684
 *
685 686 687 688
 *		NON-OBVIOUS-RESTRICTIONS
 *		this function _MUST_ allocate a new "parsetree" each time,
 *		since it may be stored in a named portal and should not
 *		change its value.
689 690 691 692 693
 *
 * ----------------------------------------------------------------
 */

void
694
pg_exec_query(char *query_string)
695
{
696 697 698 699 700 701 702
	pg_exec_query_dest(query_string, whereToSendOutput, FALSE);
}

void
pg_exec_query_acl_override(char *query_string)
{
	pg_exec_query_dest(query_string, whereToSendOutput, TRUE);
703 704 705
}

void
706
pg_exec_query_dest(char *query_string,	/* string to execute */
707
				   CommandDest dest,	/* where results should go */
708 709
				   bool aclOverride)	/* to give utility commands power
										 * of superusers */
710
{
711 712 713 714 715 716
	List	   *plan_list;
	Plan	   *plan;
	Query	   *querytree;
	int			i,
				j;
	QueryTreeList *querytree_list;
717 718

	/* plan the queries */
719
	plan_list = pg_parse_and_plan(query_string, NULL, 0, &querytree_list, dest, aclOverride);
720

721 722
	if (QueryCancel)
		CancelQuery();
723

724
	/* pg_parse_and_plan could have failed */
725 726 727 728 729 730 731
	if (querytree_list == NULL)
		return;

	for (i = 0; i < querytree_list->len; i++)
	{
		querytree = querytree_list->qtrees[i];

732
#ifdef FUNC_UTIL_PATCH
733 734 735 736 737 738 739

		/*
		 * Advance on the plan_list in every case.	Now the plan_list has
		 * the same length of the querytree_list.  DZ - 30-8-1996
		 */
		plan = (Plan *) lfirst(plan_list);
		plan_list = lnext(plan_list);
740
#endif
741 742 743 744 745 746 747 748 749
		if (querytree->commandType == CMD_UTILITY)
		{
			/* ----------------
			 *	 process utility functions (create, destroy, etc..)
			 *
			 *	 Note: we do not check for the transaction aborted state
			 *	 because that is done in ProcessUtility.
			 * ----------------
			 */
750
			if (DebugPrintQuery)
M
 
Marc G. Fournier 已提交
751
				TPRINTF(TRACE_QUERY, "ProcessUtility: %s", query_string);
752
			else if (Verbose)
M
 
Marc G. Fournier 已提交
753
				TPRINTF(TRACE_VERBOSE, "ProcessUtility");
754 755 756 757 758 759

			ProcessUtility(querytree->utilityStmt, dest);

		}
		else
		{
760
#ifndef FUNC_UTIL_PATCH
761 762 763 764 765 766

			/*
			 * Moved before the if.  DZ - 30-8-1996
			 */
			plan = (Plan *) lfirst(plan_list);
			plan_list = lnext(plan_list);
767
#endif
768

M
Fixes:  
Marc G. Fournier 已提交
769
#ifdef INDEXSCAN_PATCH
770 771

			/*
772
			 * Print moved in pg_parse_and_plan.	DZ - 27-8-1996
773
			 */
M
Fixes:  
Marc G. Fournier 已提交
774
#else
775 776 777 778
			/* ----------------
			 *	print plan if debugging
			 * ----------------
			 */
M
 
Marc G. Fournier 已提交
779
			if (DebugPrintPlan)
780
			{
M
 
Marc G. Fournier 已提交
781
				TPRINTF(TRACE_PLAN, "plan:");
782 783
				nodeDisplay(plan);
			}
M
Fixes:  
Marc G. Fournier 已提交
784
#endif
785

V
Vadim B. Mikheev 已提交
786 787 788
			SetQuerySnapshot();

			/*
789 790 791 792 793 794 795
			 *	 execute the plan
			 */
			if (ShowExecutorStats)
				ResetUsage();

			for (j = 0; j < _exec_repeat_; j++)
			{
M
 
Marc G. Fournier 已提交
796 797
				if (Verbose)
					TPRINTF(TRACE_VERBOSE, "ProcessQuery");
798
				ProcessQuery(querytree, plan, dest);
799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819
			}

			if (ShowExecutorStats)
			{
				fprintf(stderr, "! Executor Stats:\n");
				ShowUsage();
			}
		}

		/*
		 * In a query block, we want to increment the command counter
		 * between queries so that the effects of early queries are
		 * visible to subsequent ones.
		 */

		if (querytree_list)
			CommandCounterIncrement();
	}

	free(querytree_list->qtrees);
	free(querytree_list);
820 821 822
}

/* --------------------------------
823
 *		signal handler routines used in PostgresMain()
824
 *
825 826 827 828 829 830 831 832 833
 *		handle_warn() catches SIGQUIT.  It forces control back to the main
 *		loop, just as if an internal error (elog(ERROR,...)) had occurred.
 *		elog() used to actually use kill(2) to induce a SIGQUIT to get here!
 *		But that's not 100% reliable on some systems, so now it does its own
 *		siglongjmp() instead. 
 *		We still provide the signal catcher so that an error quit can be
 *		forced externally.  This should be done only with great caution,
 *		however, since an asynchronous signal could leave the system in
 *		who-knows-what inconsistent state.
834
 *
835 836 837
 *		quickdie() occurs when signalled by the postmaster.
 *		Some backend has bought the farm,
 *		so we need to stop what we're doing and exit.
838
 *
839
 *		die() preforms an orderly cleanup via ExitPostgres()
840 841 842 843
 * --------------------------------
 */

void
844
handle_warn(SIGNAL_ARGS)
845
{
846
	siglongjmp(Warn_restart, 1);
847 848
}

849
void
850
quickdie(SIGNAL_ARGS)
851
{
852
	elog(NOTICE, "Message from PostgreSQL backend:"
853 854 855 856 857
		 "\n\tThe Postmaster has informed me that some other backend"
		 " died abnormally and possibly corrupted shared memory."
		 "\n\tI have rolled back the current transaction and am"
		 " going to terminate your database system connection and exit."
	"\n\tPlease reconnect to the database system and repeat your query.");
858

859 860 861 862 863 864 865 866

	/*
	 * DO NOT ExitPostgres(0) -- we're here because shared memory may be
	 * corrupted, so we don't want to flush any shared state to stable
	 * storage.  Just nail the windows shut and get out of town.
	 */

	exit(0);
867 868 869
}

void
870
die(SIGNAL_ARGS)
871
{
872
	ExitPostgres(0);
873 874 875
}

/* signal handler for floating point exception */
876
void
877
FloatExceptionHandler(SIGNAL_ARGS)
878
{
879
	elog(ERROR, "floating point exception!"
880 881
		 " The last floating point operation either exceeded legal ranges"
		 " or was a divide by zero");
882 883 884
}


M
 
Marc G. Fournier 已提交
885
/* signal handler for query cancel signal from postmaster */
886 887 888 889 890 891 892 893 894
static void
QueryCancelHandler(SIGNAL_ARGS)
{
	QueryCancel = true;
}

void
CancelQuery(void)
{
895 896 897

	/*
	 * QueryCancel flag will be reset in main loop, which we reach by
M
 
Marc G. Fournier 已提交
898 899
	 * longjmp from elog().
	 */
900 901 902 903
	elog(ERROR, "Query was cancelled.");
}


904 905
static void
usage(char *progname)
906
{
907
	fprintf(stderr,
908
			"Usage: %s [options] [dbname]\n", progname);
M
 
Marc G. Fournier 已提交
909
#ifdef USE_ASSERT_CHECKING
910
	fprintf(stderr, "\t-A enable/disable assert checking\n");
M
 
Marc G. Fournier 已提交
911
#endif
912 913 914 915 916
	fprintf(stderr, "\t-B buffers\tset number of buffers in buffer pool\n");
	fprintf(stderr, "\t-C \t\tsupress version info\n");
	fprintf(stderr, "\t-D dir\t\tdata directory\n");
	fprintf(stderr, "\t-E \t\techo query before execution\n");
	fprintf(stderr, "\t-F \t\tturn off fsync\n");
917
#ifdef LOCK_MGR_DEBUG
918
	fprintf(stderr, "\t-K \t\tset locking debug level [0|1|2]\n");
919
#endif
920
	fprintf(stderr, "\t-O \t\tallow system table structure changes\n");
921 922 923 924 925 926 927 928
	fprintf(stderr, "\t-P port\t\tset port file descriptor\n");
	fprintf(stderr, "\t-Q \t\tsuppress informational messages\n");
	fprintf(stderr, "\t-S buffers\tset amount of sort memory available\n");
	fprintf(stderr, "\t-d [1|2|3]\tset debug level\n");
	fprintf(stderr, "\t-e \t\tturn on European date format\n");
	fprintf(stderr, "\t-o file\t\tsend stdout and stderr to given filename \n");
	fprintf(stderr, "\t-s \t\tshow stats after each query\n");
	fprintf(stderr, "\t-v version\tset protocol version being used by frontend\n");
M
 
Marc G. Fournier 已提交
929
	fprintf(stderr, "\t-W \t\twait N seconds to allow attach from a debugger\n");
930 931 932
}

/* ----------------------------------------------------------------
933 934 935
 *		PostgresMain
 *		  postgres main loop
 *		all backends, interactive or otherwise start here
936 937 938
 * ----------------------------------------------------------------
 */
int
939
PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
940
{
941 942 943 944 945
	bool		flagC = false,
				flagQ = false,
				flagE = false,
				flagEu = false;
	int			flag;
946

947 948
	char	   *DBName = NULL;
	int			errs = 0;
949

950 951 952
	char		firstchar;
	char		parser_input[MAX_PARSE_BUFFER];
	char	   *userName;
M
 
Marc G. Fournier 已提交
953 954

	/* Used if verbose is set, must be initialized */
955 956 957
	char	   *remote_info = "interactive";
	char	   *remote_host = "";
	unsigned short remote_port = 0;
958

959 960 961 962
	char	   *DBDate = NULL;
	extern int	optind;
	extern char *optarg;
	extern short DebugLvl;
963 964 965 966 967

	/* ----------------
	 *	parse command line arguments
	 * ----------------
	 */
968 969 970 971

	/*
	 * Set default values.
	 */
972
	ShowStats = 0;
973
	ShowParserStats = ShowPlannerStats = ShowExecutorStats = 0;
M
 
Marc G. Fournier 已提交
974
	DeadlockCheckTimer = DEADLOCK_CHECK_TIMER;
975
#ifdef LOCK_MGR_DEBUG
M
 
Marc G. Fournier 已提交
976
	LockDebug = 0;
977 978
#endif

979
	/*
980 981
	 * get hostname is either the environment variable PGHOST or NULL NULL
	 * means Unix-socket only
982
	 */
983
	DataDir = getenv("PGDATA");
984

985
	/*
986 987 988
	 * Try to get initial values for date styles and formats. Does not do
	 * a complete job, but should be good enough for backend. Cannot call
	 * parse_date() since palloc/pfree memory is not set up yet.
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
	 */
	DBDate = getenv("PGDATESTYLE");
	if (DBDate != NULL)
	{
		if (strcasecmp(DBDate, "ISO") == 0)
			DateStyle = USE_ISO_DATES;
		else if (strcasecmp(DBDate, "SQL") == 0)
			DateStyle = USE_SQL_DATES;
		else if (strcasecmp(DBDate, "POSTGRES") == 0)
			DateStyle = USE_POSTGRES_DATES;
		else if (strcasecmp(DBDate, "GERMAN") == 0)
		{
			DateStyle = USE_GERMAN_DATES;
			EuroDates = TRUE;
		}
1004

1005 1006 1007 1008 1009
		if (strcasecmp(DBDate, "NONEURO") == 0)
			EuroDates = FALSE;
		else if (strcasecmp(DBDate, "EURO") == 0)
			EuroDates = TRUE;
	}
1010

M
 
Marc G. Fournier 已提交
1011 1012 1013
	/*
	 * Read default pg_options from file $DATADIR/pg_options.
	 */
M
 
Marc G. Fournier 已提交
1014 1015 1016
	if(DataDir) {
		read_pg_options(0);
	}
1017

1018 1019
	optind = 1;					/* reset after postmaster usage */

M
 
Marc G. Fournier 已提交
1020
	while ((flag = getopt(argc, argv,
1021
						  "A:B:CD:d:Eef:iK:Lm:MNOo:P:pQS:st:v:x:FW:"))
1022 1023 1024
		   != EOF)
		switch (flag)
		{
M
 
Marc G. Fournier 已提交
1025 1026
			case 'A':
				/* ----------------
1027
				 *	enable/disable assert checking.
M
 
Marc G. Fournier 已提交
1028 1029 1030 1031 1032 1033 1034 1035
				 * ----------------
				 */
#ifdef USE_ASSERT_CHECKING
				assert_enabled = atoi(optarg);
#else
				fprintf(stderr, "Assert checking is not enabled\n");
#endif
				break;
1036

1037 1038 1039 1040 1041 1042 1043
			case 'B':
				/* ----------------
				 *	specify the size of buffer pool
				 * ----------------
				 */
				NBuffers = atoi(optarg);
				break;
1044

1045 1046 1047 1048 1049
			case 'C':
				/* ----------------
				 *	don't print version string (don't know why this is 'C' --mao)
				 * ----------------
				 */
1050
				flagC = true;
1051
				break;
1052

1053
			case 'D':			/* PGDATA directory */
1054 1055 1056 1057 1058
			        if (!DataDir) {
				    DataDir = optarg;
				    /* must be done after DataDir is defined */
				    read_pg_options(0);
				}
1059
				DataDir = optarg;
M
 
Marc G. Fournier 已提交
1060
				break;
1061

1062
			case 'd':			/* debug level */
1063
				flagQ = false;
1064
				DebugLvl = (short) atoi(optarg);
M
 
Marc G. Fournier 已提交
1065 1066 1067
				if (DebugLvl >= 1)
					Verbose = DebugLvl;
				if (DebugLvl >= 2)
1068
					DebugPrintQuery = true;
M
 
Marc G. Fournier 已提交
1069 1070 1071
				if (DebugLvl >= 3)
					DebugPrintQuery = DebugLvl;
				if (DebugLvl >= 4)
1072
				{
1073 1074 1075 1076
					DebugPrintParse = true;
					DebugPrintPlan = true;
					DebugPrintRewrittenParsetree = true;
				}
1077
				break;
1078 1079 1080 1081 1082 1083

			case 'E':
				/* ----------------
				 *	E - echo the query the user entered
				 * ----------------
				 */
1084
				flagE = true;
1085
				break;
1086 1087 1088 1089 1090 1091

			case 'e':
				/* --------------------------
				 * Use european date formats.
				 * --------------------------
				 */
1092
				flagEu = true;
1093
				break;
1094 1095 1096 1097 1098 1099

			case 'F':
				/* --------------------
				 *	turn off fsync
				 * --------------------
				 */
1100
				disableFsync = true;
1101
				break;
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

			case 'f':
				/* -----------------
				 *	  f - forbid generation of certain plans
				 * -----------------
				 */
				switch (optarg[0])
				{
					case 's':	/* seqscan */
						_enable_seqscan_ = false;
						break;
					case 'i':	/* indexscan */
						_enable_indexscan_ = false;
						break;
					case 'n':	/* nestloop */
						_enable_nestloop_ = false;
						break;
					case 'm':	/* mergejoin */
1120
						_enable_mergejoin_ = false;
1121 1122 1123 1124 1125 1126 1127
						break;
					case 'h':	/* hashjoin */
						_enable_hashjoin_ = false;
						break;
					default:
						errs++;
				}
1128 1129
				break;

1130 1131 1132
			case 'i':
				dontExecute = 1;
				break;
1133

1134
			case 'K':
1135
#ifdef LOCK_MGR_DEBUG
M
 
Marc G. Fournier 已提交
1136
				LockDebug = atoi(optarg);
1137
#else
1138
				fprintf(stderr, "Lock debug not compiled in\n");
1139
#endif
1140
				break;
1141

1142 1143 1144 1145 1146 1147 1148
			case 'L':
				/* --------------------
				 *	turn off locking
				 * --------------------
				 */
				lockingOff = 1;
				break;
1149

1150
			case 'm':
1151
				/* Multiplexed backends are no longer supported. */
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162
				break;
			case 'M':
				exit(PostmasterMain(argc, argv));
				break;
			case 'N':
				/* ----------------
				 *	N - Don't use newline as a query delimiter
				 * ----------------
				 */
				UseNewLine = 0;
				break;
1163

1164 1165 1166 1167 1168
			case 'o':
				/* ----------------
				 *	o - send output (stdout and stderr) to the given file
				 * ----------------
				 */
1169
				StrNCpy(OutputFileName, optarg, MAXPGPATH);
1170
				break;
1171

1172 1173 1174 1175 1176 1177 1178 1179
			case 'O':
				/* --------------------
				 *	allow system table structure modifications
				 * --------------------
				 */
				allowSystemTableMods = true;
				break;

1180 1181 1182 1183 1184 1185 1186 1187
			case 'p':			/* started by postmaster */
				/* ----------------
				 *	p - special flag passed if backend was forked
				 *		by a postmaster.
				 * ----------------
				 */
				IsUnderPostmaster = true;
				break;
1188

1189 1190 1191 1192 1193 1194 1195 1196 1197
			case 'P':
				/* ----------------
				 *	P - Use the passed file descriptor number as the port
				 *	  on which to communicate with the user.  This is ONLY
				 *	  useful for debugging when fired up by the postmaster.
				 * ----------------
				 */
				Portfd = atoi(optarg);
				break;
1198

1199 1200 1201 1202 1203
			case 'Q':
				/* ----------------
				 *	Q - set Quiet mode (reduce debugging output)
				 * ----------------
				 */
1204
				flagQ = true;
M
 
Marc G. Fournier 已提交
1205
				Verbose = 0;
1206
				break;
1207

1208 1209
			case 'S':
				/* ----------------
V
Vadim B. Mikheev 已提交
1210
				 *	S - amount of sort memory to use in 1k bytes
1211 1212
				 * ----------------
				 */
1213
				{
1214 1215
					int			S;

V
Vadim B. Mikheev 已提交
1216
					S = atoi(optarg);
1217
					if (S >= 4 * BLCKSZ / 1024)
V
Vadim B. Mikheev 已提交
1218
						SortMem = S;
1219
				}
1220
				break;
1221 1222 1223 1224 1225 1226 1227 1228

			case 's':
				/* ----------------
				 *	  s - report usage statistics (timings) after each query
				 * ----------------
				 */
				ShowStats = 1;
				StatFp = stderr;
1229
				break;
1230

1231
			case 'T':
M
 
Marc G. Fournier 已提交
1232 1233 1234
				parse_options(optarg);
				break;

1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
			case 't':
				/* ----------------
				 *	tell postgres to report usage statistics (timings) for
				 *	each query
				 *
				 *	-tpa[rser] = print stats for parser time of each query
				 *	-tpl[anner] = print stats for planner time of each query
				 *	-te[xecutor] = print stats for executor time of each query
				 *	caution: -s can not be used together with -t.
				 * ----------------
				 */
				StatFp = stderr;
				switch (optarg[0])
				{
					case 'p':
						if (optarg[1] == 'a')
							ShowParserStats = 1;
						else if (optarg[1] == 'l')
							ShowPlannerStats = 1;
						else
							errs++;
						break;
					case 'e':
						ShowExecutorStats = 1;
						break;
					default:
						errs++;
						break;
				}
1264 1265
				break;

1266
			case 'v':
1267
				FrontendProtocol = (ProtocolVersion) atoi(optarg);
1268 1269
				break;

M
 
Marc G. Fournier 已提交
1270 1271
			case 'W':
				/* ----------------
1272
				 *	wait N seconds to allow attach from a debugger
M
 
Marc G. Fournier 已提交
1273 1274 1275 1276 1277
				 * ----------------
				 */
				sleep(atoi(optarg));
				break;

1278
			case 'x':
M
 
Marc G. Fournier 已提交
1279
#ifdef NOT_USED						/* planner/xfunc.h */
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307

				/*
				 * control joey hellerstein's expensive function
				 * optimization
				 */
				if (XfuncMode != 0)
				{
					fprintf(stderr, "only one -x flag is allowed\n");
					errs++;
					break;
				}
				if (strcmp(optarg, "off") == 0)
					XfuncMode = XFUNC_OFF;
				else if (strcmp(optarg, "nor") == 0)
					XfuncMode = XFUNC_NOR;
				else if (strcmp(optarg, "nopull") == 0)
					XfuncMode = XFUNC_NOPULL;
				else if (strcmp(optarg, "nopm") == 0)
					XfuncMode = XFUNC_NOPM;
				else if (strcmp(optarg, "pullall") == 0)
					XfuncMode = XFUNC_PULLALL;
				else if (strcmp(optarg, "wait") == 0)
					XfuncMode = XFUNC_WAIT;
				else
				{
					fprintf(stderr, "use -x {off,nor,nopull,nopm,pullall,wait}\n");
					errs++;
				}
1308
#endif
1309
				break;
1310

1311 1312 1313 1314 1315 1316
			default:
				/* ----------------
				 *	default: bad command line option
				 * ----------------
				 */
				errs++;
1317 1318 1319 1320 1321 1322 1323 1324 1325
		}

	/* ----------------
	 *	get user name and pathname and check command line validity
	 * ----------------
	 */
	SetPgUserName();
	userName = GetPgUserName();

1326
#ifdef CYR_RECODE
1327
	SetCharSet();
1328 1329
#endif

1330
	if (FindExec(pg_pathname, argv[0], "postgres") < 0)
1331 1332 1333 1334 1335 1336
		elog(FATAL, "%s: could not locate executable, bailing out...",
			 argv[0]);

	if (errs || argc - optind > 1)
	{
		usage(argv[0]);
1337
		proc_exit(1);
1338 1339 1340 1341 1342 1343 1344
	}
	else if (argc - optind == 1)
		DBName = argv[optind];
	else if ((DBName = userName) == NULL)
	{
		fprintf(stderr, "%s: USER undefined and no database specified\n",
				argv[0]);
1345
		proc_exit(1);
1346 1347 1348 1349 1350 1351
	}

	if (ShowStats &&
		(ShowParserStats || ShowPlannerStats || ShowExecutorStats))
	{
		fprintf(stderr, "-s can not be used together with -t.\n");
1352
		proc_exit(1);
1353 1354 1355 1356 1357 1358 1359 1360 1361
	}

	if (!DataDir)
	{
		fprintf(stderr, "%s does not know where to find the database system "
				"data.  You must specify the directory that contains the "
				"database system either by specifying the -D invocation "
			 "option or by setting the PGDATA environment variable.\n\n",
				argv[0]);
1362
		proc_exit(1);
1363 1364 1365 1366 1367 1368
	}

	Noversion = flagC;
	EchoQuery = flagE;
	EuroDates = flagEu;

M
 
Marc G. Fournier 已提交
1369 1370 1371
	/*
	 * Find remote host name or address.
	 */
1372 1373 1374 1375 1376
	if (IsUnderPostmaster)
	{
		switch (MyProcPort->raddr.sa.sa_family)
		{
				struct hostent *host_ent;
M
 
Marc G. Fournier 已提交
1377

1378
			case AF_INET:
M
 
Marc G. Fournier 已提交
1379 1380 1381
				remote_info = remote_host = malloc(48);
				remote_port = ntohs(MyProcPort->raddr.in.sin_port);
				strcpy(remote_host, inet_ntoa(MyProcPort->raddr.in.sin_addr));
1382 1383
				if (HostnameLookup)
				{
M
 
Marc G. Fournier 已提交
1384
					host_ent = \
1385 1386
						gethostbyaddr((char *) &MyProcPort->raddr.in.sin_addr,
								   sizeof(MyProcPort->raddr.in.sin_addr),
M
 
Marc G. Fournier 已提交
1387
									  AF_INET);
1388 1389
					if (host_ent)
					{
M
 
Marc G. Fournier 已提交
1390
						strncpy(remote_host, host_ent->h_name, 48);
1391
						*(remote_host + 47) = '\0';
M
 
Marc G. Fournier 已提交
1392 1393
					}
				}
1394 1395 1396
				if (ShowPortNumber)
				{
					remote_info = malloc(strlen(remote_host) + 6);
M
 
Marc G. Fournier 已提交
1397 1398 1399
					sprintf(remote_info, "%s:%d", remote_host, remote_port);
				}
				break;
1400
			case AF_UNIX:
M
 
Marc G. Fournier 已提交
1401 1402
				remote_info = remote_host = "localhost";
				break;
1403
			default:
M
 
Marc G. Fournier 已提交
1404 1405 1406 1407 1408
				remote_info = remote_host = "unknown";
				break;
		}
	}

1409
	/* ----------------
M
 
Marc G. Fournier 已提交
1410
	 *	set process params for ps
1411 1412
	 * ----------------
	 */
1413 1414 1415
	if (IsUnderPostmaster)
	{
		PS_INIT_STATUS(real_argc, real_argv, argv[0],
M
 
Marc G. Fournier 已提交
1416
					   remote_info, userName, DBName);
1417
		PS_SET_STATUS("startup");
1418 1419
	}

1420
	/* ----------------
M
 
Marc G. Fournier 已提交
1421
	 *	print flags
1422 1423
	 * ----------------
	 */
M
 
Marc G. Fournier 已提交
1424
	if (Verbose)
1425
	{
1426 1427
		if (Verbose == 1)
		{
M
 
Marc G. Fournier 已提交
1428 1429
			TPRINTF(TRACE_VERBOSE, "started: host=%s user=%s database=%s",
					remote_host, userName, DBName);
1430 1431 1432
		}
		else
		{
M
 
Marc G. Fournier 已提交
1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
			TPRINTF(TRACE_VERBOSE, "debug info:");
			TPRINTF(TRACE_VERBOSE, "\tUser         = %s", userName);
			TPRINTF(TRACE_VERBOSE, "\tRemoteHost   = %s", remote_host);
			TPRINTF(TRACE_VERBOSE, "\tRemotePort   = %d", remote_port);
			TPRINTF(TRACE_VERBOSE, "\tDatabaseName = %s", DBName);
			TPRINTF(TRACE_VERBOSE, "\tVerbose      = %d", Verbose);
			TPRINTF(TRACE_VERBOSE, "\tNoversion    = %c", Noversion ? 't' : 'f');
			TPRINTF(TRACE_VERBOSE, "\ttimings      = %c", ShowStats ? 't' : 'f');
			TPRINTF(TRACE_VERBOSE, "\tdates        = %s",
					EuroDates ? "European" : "Normal");
			TPRINTF(TRACE_VERBOSE, "\tbufsize      = %d", NBuffers);
			TPRINTF(TRACE_VERBOSE, "\tsortmem      = %d", SortMem);
			TPRINTF(TRACE_VERBOSE, "\tquery echo   = %c", EchoQuery ? 't' : 'f');
		}
1447 1448
	}

1449 1450 1451 1452
	/* ----------------
	 *	initialize portal file descriptors
	 * ----------------
	 */
1453
	if (IsUnderPostmaster)
1454 1455 1456 1457 1458
	{
		if (Portfd < 0)
		{
			fprintf(stderr,
					"Postmaster flag set: no port number specified, use /dev/null\n");
1459
#ifndef __CYGWIN32__
1460
			Portfd = open(NULL_DEV, O_RDWR, 0666);
1461 1462 1463
#else
			Portfd = open(NULL_DEV, O_RDWR | O_BINARY, 0666);
#endif
1464
		}
1465
		pq_init();	/* reset libpq */
1466
		whereToSendOutput = Remote;
1467
	}
1468 1469 1470 1471 1472 1473
	else
		whereToSendOutput = Debug;

	SetProcessingMode(InitProcessing);

	/* initialize */
M
 
Marc G. Fournier 已提交
1474 1475
	if (Verbose)
		TPRINTF(TRACE_VERBOSE, "InitPostgres");
1476 1477 1478

	InitPostgres(DBName);

1479
#ifdef MULTIBYTE
1480
	/* set default client encoding */
M
 
Marc G. Fournier 已提交
1481
	if (Verbose)
1482 1483
		puts("\treset_client_encoding()..");
	reset_client_encoding();
M
 
Marc G. Fournier 已提交
1484
	if (Verbose)
1485 1486 1487
		puts("\treset_client_encoding() done.");
#endif

1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498
	/* ----------------
	 * if stable main memory is assumed (-S(old) flag is set), it is necessary
	 * to flush all dirty shared buffers before exit
	 * plai 8/7/90
	 * this used to be done further down, causing an additional entry in
	 * the shmem exit list for every error :-( ... tgl 10/1/98
	 * ----------------
	 */
	if (!TransactionFlushEnabled())
		on_shmem_exit(FlushBufferPool, NULL);

1499 1500
	on_shmem_exit(remove_all_temp_relations, NULL);

M
 
Marc G. Fournier 已提交
1501
	/* ----------------
1502
	 *	Set up handler for cancel-request signal, and
M
 
Marc G. Fournier 已提交
1503 1504 1505 1506 1507
	 *	send this backend's cancellation info to the frontend.
	 *	This should not be done until we are sure startup is successful.
	 * ----------------
	 */

1508
	pqsignal(SIGHUP, read_pg_options);	/* update pg_options from file */
1509 1510
	pqsignal(SIGINT, QueryCancelHandler);		/* cancel current query */
	pqsignal(SIGQUIT, handle_warn);		/* handle error */
M
 
Marc G. Fournier 已提交
1511
	pqsignal(SIGTERM, die);
1512 1513 1514 1515 1516
	pqsignal(SIGPIPE, SIG_IGN);	/* ignore failure to write to frontend */
	/* Note: if frontend closes connection, we will notice it and exit cleanly
	 * when control next returns to outer loop.  This seems safer than forcing
	 * exit in the midst of output during who-knows-what operation...
	 */
M
 
Marc G. Fournier 已提交
1517
	pqsignal(SIGUSR1, quickdie);
1518 1519 1520
	pqsignal(SIGUSR2, Async_NotifyHandler);		/* flush also sinval cache */
	pqsignal(SIGCHLD, SIG_IGN); /* ignored, sent by LockOwners */
	pqsignal(SIGFPE, FloatExceptionHandler);
M
 
Marc G. Fournier 已提交
1521 1522 1523 1524

	if (whereToSendOutput == Remote &&
		PG_PROTOCOL_MAJOR(FrontendProtocol) >= 2)
	{
1525 1526 1527 1528 1529 1530
		StringInfoData buf;
		pq_beginmessage(&buf);
		pq_sendbyte(&buf, 'K');
		pq_sendint(&buf, (int32) MyProcPid, sizeof(int32));
		pq_sendint(&buf, (int32) MyCancelKey, sizeof(int32));
		pq_endmessage(&buf);
M
 
Marc G. Fournier 已提交
1531 1532 1533
		/* Need not flush since ReadyForQuery will do it. */
	}

1534 1535 1536
	if (!IsUnderPostmaster)
	{
		puts("\nPOSTGRES backend interactive interface ");
1537
		puts("$Revision: 1.108 $ $Date: 1999/04/25 03:19:10 $\n");
1538 1539
	}

1540
	/* ----------------
1541 1542
	 *	POSTGRES main processing loop begins here
	 *
1543 1544 1545 1546 1547 1548
	 *	if an exception is encountered, processing resumes here
	 *	so we abort the current transaction and start a new one.
	 *	This must be done after we initialize the slave backends
	 *	so that the slaves signal the master to abort the transaction
	 *	rather than calling AbortCurrentTransaction() themselves.
	 *
1549
	 *	Note:  elog(ERROR) does a siglongjmp() to transfer control here.
1550 1551 1552 1553 1554
	 * ----------------
	 */

	if (sigsetjmp(Warn_restart, 1) != 0)
	{
1555
		InError = true;
1556 1557 1558

		time(&tim);

M
 
Marc G. Fournier 已提交
1559 1560
		if (Verbose)
			TPRINTF(TRACE_VERBOSE, "AbortCurrentTransaction");
1561 1562 1563

		AbortCurrentTransaction();
	}
1564 1565

	InError = false;
1566

1567 1568
	/*
	 * Non-error queries loop here.
1569 1570 1571 1572
	 */

	for (;;)
	{
1573 1574
		PS_SET_STATUS("idle");

B
Bruce Momjian 已提交
1575
		/* ----------------
1576 1577 1578
		 *	 (1) tell the frontend we're ready for a new query.
		 *
		 *   Note: this includes fflush()'ing the last of the prior output.
B
Bruce Momjian 已提交
1579 1580
		 * ----------------
		 */
1581
		ReadyForQuery(whereToSendOutput);
B
Bruce Momjian 已提交
1582

1583
		/* ----------------
1584 1585 1586 1587 1588 1589 1590 1591 1592 1593
		 *	 (2) deal with pending asynchronous NOTIFY from other backends,
		 *   and enable async.c's signal handler to execute NOTIFY directly.
		 * ----------------
		 */
		QueryCancel = false;	/* forget any earlier CANCEL signal */

		EnableNotifyInterrupt();

		/* ----------------
		 *	 (3) read a command.
1594 1595
		 * ----------------
		 */
B
Bruce Momjian 已提交
1596
		MemSet(parser_input, 0, MAX_PARSE_BUFFER);
1597

1598
		firstchar = ReadCommand(parser_input);
1599

1600
		QueryCancel = false;	/* forget any earlier CANCEL signal */
1601

1602
		/* ----------------
1603 1604 1605 1606 1607 1608 1609
		 *	 (4) disable async.c's signal handler.
		 * ----------------
		 */
		DisableNotifyInterrupt();

		/* ----------------
		 *	 (5) process the command.
1610 1611
		 * ----------------
		 */
1612 1613 1614
		switch (firstchar)
		{
				/* ----------------
1615 1616
				 *	'F' indicates a fastpath call.
				 *		XXX HandleFunctionRequest
1617 1618
				 * ----------------
				 */
1619
			case 'F':
1620 1621
				IsEmptyQuery = false;

1622
				/* start an xact for this function invocation */
M
 
Marc G. Fournier 已提交
1623 1624
				if (Verbose)
					TPRINTF(TRACE_VERBOSE, "StartTransactionCommand");
1625
				StartTransactionCommand();
1626

1627 1628
				HandleFunctionRequest();
				break;
1629

1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
				/* ----------------
				 *	'Q' indicates a user query
				 * ----------------
				 */
			case 'Q':
				if (strspn(parser_input, " \t\n") == strlen(parser_input))
				{
					/* ----------------
					 *	if there is nothing in the input buffer, don't bother
					 *	trying to parse and execute anything..
					 * ----------------
					 */
					IsEmptyQuery = true;
				}
				else
				{
					/* ----------------
					 *	otherwise, process the input string.
					 * ----------------
					 */
					IsEmptyQuery = false;
					if (ShowStats)
						ResetUsage();

					/* start an xact for this query */
M
 
Marc G. Fournier 已提交
1655 1656
					if (Verbose)
						TPRINTF(TRACE_VERBOSE, "StartTransactionCommand");
1657
					StartTransactionCommand();
1658

1659 1660
					pg_exec_query(parser_input);

1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671
					if (ShowStats)
						ShowUsage();
				}
				break;

				/* ----------------
				 *	'X' means that the frontend is closing down the socket
				 * ----------------
				 */
			case 'X':
				pq_close();
1672
				proc_exit(0);
1673 1674 1675
				break;

			default:
M
 
Marc G. Fournier 已提交
1676
				elog(ERROR, "unknown frontend message was received");
1677 1678 1679
		}

		/* ----------------
1680
		 *	 (6) commit the current transaction
1681 1682
		 *
		 *	 Note: if we had an empty input buffer, then we didn't
1683
		 *	 call pg_exec_query, so we don't bother to commit this transaction.
1684 1685 1686 1687
		 * ----------------
		 */
		if (!IsEmptyQuery)
		{
M
 
Marc G. Fournier 已提交
1688 1689 1690
			if (Verbose)
				TPRINTF(TRACE_VERBOSE, "CommitTransactionCommand");
			PS_SET_STATUS("commit");
1691 1692 1693 1694
			CommitTransactionCommand();
		}
		else
		{
1695
			if (IsUnderPostmaster)
1696 1697 1698
				NullCommand(Remote);
		}
	}							/* infinite for-loop */
1699 1700

	proc_exit(0);				/* shouldn't get here... */
1701
	return 1;
1702 1703
}

1704
#ifndef HAVE_GETRUSAGE
1705
#include "rusagestub.h"
1706
#else							/* HAVE_GETRUSAGE */
1707
#include <sys/resource.h>
1708
#endif	 /* HAVE_GETRUSAGE */
1709

1710 1711
struct rusage Save_r;
struct timeval Save_t;
1712 1713

void
1714
ResetUsage(void)
1715
{
1716 1717 1718 1719 1720 1721
	struct timezone tz;

	getrusage(RUSAGE_SELF, &Save_r);
	gettimeofday(&Save_t, &tz);
	ResetBufferUsage();
/*	  ResetTupleCount(); */
1722 1723 1724
}

void
1725
ShowUsage(void)
1726
{
1727 1728 1729
	struct timeval user,
				sys;
	struct timeval elapse_t;
1730
	struct timezone tz;
1731
	struct rusage r;
1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776

	getrusage(RUSAGE_SELF, &r);
	gettimeofday(&elapse_t, &tz);
	memmove((char *) &user, (char *) &r.ru_utime, sizeof(user));
	memmove((char *) &sys, (char *) &r.ru_stime, sizeof(sys));
	if (elapse_t.tv_usec < Save_t.tv_usec)
	{
		elapse_t.tv_sec--;
		elapse_t.tv_usec += 1000000;
	}
	if (r.ru_utime.tv_usec < Save_r.ru_utime.tv_usec)
	{
		r.ru_utime.tv_sec--;
		r.ru_utime.tv_usec += 1000000;
	}
	if (r.ru_stime.tv_usec < Save_r.ru_stime.tv_usec)
	{
		r.ru_stime.tv_sec--;
		r.ru_stime.tv_usec += 1000000;
	}

	/*
	 * the only stats we don't show here are for memory usage -- i can't
	 * figure out how to interpret the relevant fields in the rusage
	 * struct, and they change names across o/s platforms, anyway. if you
	 * can figure out what the entries mean, you can somehow extract
	 * resident set size, shared text size, and unshared data and stack
	 * sizes.
	 */

	fprintf(StatFp, "! system usage stats:\n");
	fprintf(StatFp,
			"!\t%ld.%06ld elapsed %ld.%06ld user %ld.%06ld system sec\n",
			(long int) elapse_t.tv_sec - Save_t.tv_sec,
			(long int) elapse_t.tv_usec - Save_t.tv_usec,
			(long int) r.ru_utime.tv_sec - Save_r.ru_utime.tv_sec,
			(long int) r.ru_utime.tv_usec - Save_r.ru_utime.tv_usec,
			(long int) r.ru_stime.tv_sec - Save_r.ru_stime.tv_sec,
			(long int) r.ru_stime.tv_usec - Save_r.ru_stime.tv_usec);
	fprintf(StatFp,
			"!\t[%ld.%06ld user %ld.%06ld sys total]\n",
			(long int) user.tv_sec,
			(long int) user.tv_usec,
			(long int) sys.tv_sec,
			(long int) sys.tv_usec);
1777
#ifdef HAVE_GETRUSAGE
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802
	fprintf(StatFp,
			"!\t%ld/%ld [%ld/%ld] filesystem blocks in/out\n",
			r.ru_inblock - Save_r.ru_inblock,
	/* they only drink coffee at dec */
			r.ru_oublock - Save_r.ru_oublock,
			r.ru_inblock, r.ru_oublock);
	fprintf(StatFp,
		  "!\t%ld/%ld [%ld/%ld] page faults/reclaims, %ld [%ld] swaps\n",
			r.ru_majflt - Save_r.ru_majflt,
			r.ru_minflt - Save_r.ru_minflt,
			r.ru_majflt, r.ru_minflt,
			r.ru_nswap - Save_r.ru_nswap,
			r.ru_nswap);
	fprintf(StatFp,
	 "!\t%ld [%ld] signals rcvd, %ld/%ld [%ld/%ld] messages rcvd/sent\n",
			r.ru_nsignals - Save_r.ru_nsignals,
			r.ru_nsignals,
			r.ru_msgrcv - Save_r.ru_msgrcv,
			r.ru_msgsnd - Save_r.ru_msgsnd,
			r.ru_msgrcv, r.ru_msgsnd);
	fprintf(StatFp,
		 "!\t%ld/%ld [%ld/%ld] voluntary/involuntary context switches\n",
			r.ru_nvcsw - Save_r.ru_nvcsw,
			r.ru_nivcsw - Save_r.ru_nivcsw,
			r.ru_nvcsw, r.ru_nivcsw);
1803
#endif	 /* HAVE_GETRUSAGE */
1804 1805 1806
	fprintf(StatFp, "! postgres usage stats:\n");
	PrintBufferUsage(StatFp);
/*	   DisplayTupleCount(StatFp); */
1807
}
M
 
Marc G. Fournier 已提交
1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822

#ifdef USE_ASSERT_CHECKING
int
assertEnable(int val)
{
	assert_enabled = val;
	return val;
}

#ifdef ASSERT_CHECKING_TEST
int
assertTest(int val)
{
	Assert(val == 0);

1823 1824
	if (assert_enabled)
	{
M
 
Marc G. Fournier 已提交
1825 1826 1827
		/* val != 0 should be trapped by previous Assert */
		elog(NOTICE, "Assert test successfull (val = %d)", val);
	}
1828 1829
	else
		elog(NOTICE, "Assert checking is disabled (val = %d)", val);
M
 
Marc G. Fournier 已提交
1830 1831 1832

	return val;
}
1833

M
 
Marc G. Fournier 已提交
1834 1835
#endif
#endif