Separate snapshot management code from tuple visibility code, create a
[PostgreSQL.git] / src / backend / tcop / fastpath.c
blob8e85587faf5aa473aca5ed0304ec3fb51fa4b4af
1 /*-------------------------------------------------------------------------
3 * fastpath.c
4 * routines to handle function requests from the frontend
6 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
7 * Portions Copyright (c) 1994, Regents of the University of California
10 * IDENTIFICATION
11 * $PostgreSQL$
13 * NOTES
14 * This cruft is the server side of PQfn.
16 *-------------------------------------------------------------------------
18 #include "postgres.h"
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
23 #include "access/xact.h"
24 #include "catalog/pg_proc.h"
25 #include "libpq/libpq.h"
26 #include "libpq/pqformat.h"
27 #include "mb/pg_wchar.h"
28 #include "miscadmin.h"
29 #include "tcop/fastpath.h"
30 #include "tcop/tcopprot.h"
31 #include "utils/acl.h"
32 #include "utils/lsyscache.h"
33 #include "utils/snapmgmt.h"
34 #include "utils/syscache.h"
38 * Formerly, this code attempted to cache the function and type info
39 * looked up by fetch_fp_info, but only for the duration of a single
40 * transaction command (since in theory the info could change between
41 * commands). This was utterly useless, because postgres.c executes
42 * each fastpath call as a separate transaction command, and so the
43 * cached data could never actually have been reused. If it had worked
44 * as intended, it would have had problems anyway with dangling references
45 * in the FmgrInfo struct. So, forget about caching and just repeat the
46 * syscache fetches on each usage. They're not *that* expensive.
48 struct fp_info
50 Oid funcid;
51 FmgrInfo flinfo; /* function lookup info for funcid */
52 Oid namespace; /* other stuff from pg_proc */
53 Oid rettype;
54 Oid argtypes[FUNC_MAX_ARGS];
55 char fname[NAMEDATALEN]; /* function name for logging */
59 static int16 parse_fcall_arguments(StringInfo msgBuf, struct fp_info * fip,
60 FunctionCallInfo fcinfo);
61 static int16 parse_fcall_arguments_20(StringInfo msgBuf, struct fp_info * fip,
62 FunctionCallInfo fcinfo);
65 /* ----------------
66 * GetOldFunctionMessage
68 * In pre-3.0 protocol, there is no length word on the message, so we have
69 * to have code that understands the message layout to absorb the message
70 * into a buffer. We want to do this before we start execution, so that
71 * we do not lose sync with the frontend if there's an error.
73 * The caller should already have initialized buf to empty.
74 * ----------------
76 static int
77 GetOldFunctionMessage(StringInfo buf)
79 int32 ibuf;
80 int nargs;
82 /* Dummy string argument */
83 if (pq_getstring(buf))
84 return EOF;
85 /* Function OID */
86 if (pq_getbytes((char *) &ibuf, 4))
87 return EOF;
88 appendBinaryStringInfo(buf, (char *) &ibuf, 4);
89 /* Number of arguments */
90 if (pq_getbytes((char *) &ibuf, 4))
91 return EOF;
92 appendBinaryStringInfo(buf, (char *) &ibuf, 4);
93 nargs = ntohl(ibuf);
94 /* For each argument ... */
95 while (nargs-- > 0)
97 int argsize;
99 /* argsize */
100 if (pq_getbytes((char *) &ibuf, 4))
101 return EOF;
102 appendBinaryStringInfo(buf, (char *) &ibuf, 4);
103 argsize = ntohl(ibuf);
104 if (argsize < -1)
106 /* FATAL here since no hope of regaining message sync */
107 ereport(FATAL,
108 (errcode(ERRCODE_PROTOCOL_VIOLATION),
109 errmsg("invalid argument size %d in function call message",
110 argsize)));
112 /* and arg contents */
113 if (argsize > 0)
115 /* Allocate space for arg */
116 enlargeStringInfo(buf, argsize);
117 /* And grab it */
118 if (pq_getbytes(buf->data + buf->len, argsize))
119 return EOF;
120 buf->len += argsize;
121 /* Place a trailing null per StringInfo convention */
122 buf->data[buf->len] = '\0';
125 return 0;
128 /* ----------------
129 * SendFunctionResult
131 * Note: although this routine doesn't check, the format had better be 1
132 * (binary) when talking to a pre-3.0 client.
133 * ----------------
135 static void
136 SendFunctionResult(Datum retval, bool isnull, Oid rettype, int16 format)
138 bool newstyle = (PG_PROTOCOL_MAJOR(FrontendProtocol) >= 3);
139 StringInfoData buf;
141 pq_beginmessage(&buf, 'V');
143 if (isnull)
145 if (newstyle)
146 pq_sendint(&buf, -1, 4);
148 else
150 if (!newstyle)
151 pq_sendbyte(&buf, 'G');
153 if (format == 0)
155 Oid typoutput;
156 bool typisvarlena;
157 char *outputstr;
159 getTypeOutputInfo(rettype, &typoutput, &typisvarlena);
160 outputstr = OidOutputFunctionCall(typoutput, retval);
161 pq_sendcountedtext(&buf, outputstr, strlen(outputstr), false);
162 pfree(outputstr);
164 else if (format == 1)
166 Oid typsend;
167 bool typisvarlena;
168 bytea *outputbytes;
170 getTypeBinaryOutputInfo(rettype, &typsend, &typisvarlena);
171 outputbytes = OidSendFunctionCall(typsend, retval);
172 pq_sendint(&buf, VARSIZE(outputbytes) - VARHDRSZ, 4);
173 pq_sendbytes(&buf, VARDATA(outputbytes),
174 VARSIZE(outputbytes) - VARHDRSZ);
175 pfree(outputbytes);
177 else
178 ereport(ERROR,
179 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
180 errmsg("unsupported format code: %d", format)));
183 if (!newstyle)
184 pq_sendbyte(&buf, '0');
186 pq_endmessage(&buf);
190 * fetch_fp_info
192 * Performs catalog lookups to load a struct fp_info 'fip' for the
193 * function 'func_id'.
195 static void
196 fetch_fp_info(Oid func_id, struct fp_info * fip)
198 HeapTuple func_htp;
199 Form_pg_proc pp;
201 Assert(OidIsValid(func_id));
202 Assert(fip != NULL);
205 * Since the validity of this structure is determined by whether the
206 * funcid is OK, we clear the funcid here. It must not be set to the
207 * correct value until we are about to return with a good struct fp_info,
208 * since we can be interrupted (i.e., with an ereport(ERROR, ...)) at any
209 * time. [No longer really an issue since we don't save the struct
210 * fp_info across transactions anymore, but keep it anyway.]
212 MemSet(fip, 0, sizeof(struct fp_info));
213 fip->funcid = InvalidOid;
215 fmgr_info(func_id, &fip->flinfo);
217 func_htp = SearchSysCache(PROCOID,
218 ObjectIdGetDatum(func_id),
219 0, 0, 0);
220 if (!HeapTupleIsValid(func_htp))
221 ereport(ERROR,
222 (errcode(ERRCODE_UNDEFINED_FUNCTION),
223 errmsg("function with OID %u does not exist", func_id)));
224 pp = (Form_pg_proc) GETSTRUCT(func_htp);
226 /* watch out for catalog entries with more than FUNC_MAX_ARGS args */
227 if (pp->pronargs > FUNC_MAX_ARGS)
228 elog(ERROR, "function %s has more than %d arguments",
229 NameStr(pp->proname), FUNC_MAX_ARGS);
231 fip->namespace = pp->pronamespace;
232 fip->rettype = pp->prorettype;
233 memcpy(fip->argtypes, pp->proargtypes.values, pp->pronargs * sizeof(Oid));
234 strlcpy(fip->fname, NameStr(pp->proname), NAMEDATALEN);
236 ReleaseSysCache(func_htp);
239 * This must be last!
241 fip->funcid = func_id;
246 * HandleFunctionRequest
248 * Server side of PQfn (fastpath function calls from the frontend).
249 * This corresponds to the libpq protocol symbol "F".
251 * INPUT:
252 * In protocol version 3, postgres.c has already read the message body
253 * and will pass it in msgBuf.
254 * In old protocol, the passed msgBuf is empty and we must read the
255 * message here.
257 * RETURNS:
258 * 0 if successful completion, EOF if frontend connection lost.
260 * Note: All ordinary errors result in ereport(ERROR,...). However,
261 * if we lose the frontend connection there is no one to ereport to,
262 * and no use in proceeding...
264 * Note: palloc()s done here and in the called function do not need to be
265 * cleaned up explicitly. We are called from PostgresMain() in the
266 * MessageContext memory context, which will be automatically reset when
267 * control returns to PostgresMain.
270 HandleFunctionRequest(StringInfo msgBuf)
272 Oid fid;
273 AclResult aclresult;
274 FunctionCallInfoData fcinfo;
275 int16 rformat;
276 Datum retval;
277 struct fp_info my_fp;
278 struct fp_info *fip;
279 bool callit;
280 bool was_logged = false;
281 char msec_str[32];
284 * Read message contents if not already done.
286 if (PG_PROTOCOL_MAJOR(FrontendProtocol) < 3)
288 if (GetOldFunctionMessage(msgBuf))
290 ereport(COMMERROR,
291 (errcode(ERRCODE_PROTOCOL_VIOLATION),
292 errmsg("unexpected EOF on client connection")));
293 return EOF;
298 * Now that we've eaten the input message, check to see if we actually
299 * want to do the function call or not. It's now safe to ereport(); we
300 * won't lose sync with the frontend.
302 if (IsAbortedTransactionBlockState())
303 ereport(ERROR,
304 (errcode(ERRCODE_IN_FAILED_SQL_TRANSACTION),
305 errmsg("current transaction is aborted, "
306 "commands ignored until end of transaction block")));
309 * Now that we know we are in a valid transaction, set snapshot in case
310 * needed by function itself or one of the datatype I/O routines.
312 ActiveSnapshot = CopySnapshot(GetTransactionSnapshot());
315 * Begin parsing the buffer contents.
317 if (PG_PROTOCOL_MAJOR(FrontendProtocol) < 3)
318 (void) pq_getmsgstring(msgBuf); /* dummy string */
320 fid = (Oid) pq_getmsgint(msgBuf, 4); /* function oid */
323 * There used to be a lame attempt at caching lookup info here. Now we
324 * just do the lookups on every call.
326 fip = &my_fp;
327 fetch_fp_info(fid, fip);
329 /* Log as soon as we have the function OID and name */
330 if (log_statement == LOGSTMT_ALL)
332 ereport(LOG,
333 (errmsg("fastpath function call: \"%s\" (OID %u)",
334 fip->fname, fid)));
335 was_logged = true;
339 * Check permission to access and call function. Since we didn't go
340 * through a normal name lookup, we need to check schema usage too.
342 aclresult = pg_namespace_aclcheck(fip->namespace, GetUserId(), ACL_USAGE);
343 if (aclresult != ACLCHECK_OK)
344 aclcheck_error(aclresult, ACL_KIND_NAMESPACE,
345 get_namespace_name(fip->namespace));
347 aclresult = pg_proc_aclcheck(fid, GetUserId(), ACL_EXECUTE);
348 if (aclresult != ACLCHECK_OK)
349 aclcheck_error(aclresult, ACL_KIND_PROC,
350 get_func_name(fid));
353 * Prepare function call info block and insert arguments.
355 InitFunctionCallInfoData(fcinfo, &fip->flinfo, 0, NULL, NULL);
357 if (PG_PROTOCOL_MAJOR(FrontendProtocol) >= 3)
358 rformat = parse_fcall_arguments(msgBuf, fip, &fcinfo);
359 else
360 rformat = parse_fcall_arguments_20(msgBuf, fip, &fcinfo);
362 /* Verify we reached the end of the message where expected. */
363 pq_getmsgend(msgBuf);
366 * If func is strict, must not call it for null args.
368 callit = true;
369 if (fip->flinfo.fn_strict)
371 int i;
373 for (i = 0; i < fcinfo.nargs; i++)
375 if (fcinfo.argnull[i])
377 callit = false;
378 break;
383 if (callit)
385 /* Okay, do it ... */
386 retval = FunctionCallInvoke(&fcinfo);
388 else
390 fcinfo.isnull = true;
391 retval = (Datum) 0;
394 /* ensure we do at least one CHECK_FOR_INTERRUPTS per function call */
395 CHECK_FOR_INTERRUPTS();
397 SendFunctionResult(retval, fcinfo.isnull, fip->rettype, rformat);
400 * Emit duration logging if appropriate.
402 switch (check_log_duration(msec_str, was_logged))
404 case 1:
405 ereport(LOG,
406 (errmsg("duration: %s ms", msec_str)));
407 break;
408 case 2:
409 ereport(LOG,
410 (errmsg("duration: %s ms fastpath function call: \"%s\" (OID %u)",
411 msec_str, fip->fname, fid)));
412 break;
415 return 0;
419 * Parse function arguments in a 3.0 protocol message
421 * Argument values are loaded into *fcinfo, and the desired result format
422 * is returned.
424 static int16
425 parse_fcall_arguments(StringInfo msgBuf, struct fp_info * fip,
426 FunctionCallInfo fcinfo)
428 int nargs;
429 int i;
430 int numAFormats;
431 int16 *aformats = NULL;
432 StringInfoData abuf;
434 /* Get the argument format codes */
435 numAFormats = pq_getmsgint(msgBuf, 2);
436 if (numAFormats > 0)
438 aformats = (int16 *) palloc(numAFormats * sizeof(int16));
439 for (i = 0; i < numAFormats; i++)
440 aformats[i] = pq_getmsgint(msgBuf, 2);
443 nargs = pq_getmsgint(msgBuf, 2); /* # of arguments */
445 if (fip->flinfo.fn_nargs != nargs || nargs > FUNC_MAX_ARGS)
446 ereport(ERROR,
447 (errcode(ERRCODE_PROTOCOL_VIOLATION),
448 errmsg("function call message contains %d arguments but function requires %d",
449 nargs, fip->flinfo.fn_nargs)));
451 fcinfo->nargs = nargs;
453 if (numAFormats > 1 && numAFormats != nargs)
454 ereport(ERROR,
455 (errcode(ERRCODE_PROTOCOL_VIOLATION),
456 errmsg("function call message contains %d argument formats but %d arguments",
457 numAFormats, nargs)));
459 initStringInfo(&abuf);
462 * Copy supplied arguments into arg vector.
464 for (i = 0; i < nargs; ++i)
466 int argsize;
467 int16 aformat;
469 argsize = pq_getmsgint(msgBuf, 4);
470 if (argsize == -1)
472 fcinfo->argnull[i] = true;
474 else
476 fcinfo->argnull[i] = false;
477 if (argsize < 0)
478 ereport(ERROR,
479 (errcode(ERRCODE_PROTOCOL_VIOLATION),
480 errmsg("invalid argument size %d in function call message",
481 argsize)));
483 /* Reset abuf to empty, and insert raw data into it */
484 resetStringInfo(&abuf);
485 appendBinaryStringInfo(&abuf,
486 pq_getmsgbytes(msgBuf, argsize),
487 argsize);
490 if (numAFormats > 1)
491 aformat = aformats[i];
492 else if (numAFormats > 0)
493 aformat = aformats[0];
494 else
495 aformat = 0; /* default = text */
497 if (aformat == 0)
499 Oid typinput;
500 Oid typioparam;
501 char *pstring;
503 getTypeInputInfo(fip->argtypes[i], &typinput, &typioparam);
506 * Since stringinfo.c keeps a trailing null in place even for
507 * binary data, the contents of abuf are a valid C string. We
508 * have to do encoding conversion before calling the typinput
509 * routine, though.
511 if (argsize == -1)
512 pstring = NULL;
513 else
514 pstring = pg_client_to_server(abuf.data, argsize);
516 fcinfo->arg[i] = OidInputFunctionCall(typinput, pstring,
517 typioparam, -1);
518 /* Free result of encoding conversion, if any */
519 if (pstring && pstring != abuf.data)
520 pfree(pstring);
522 else if (aformat == 1)
524 Oid typreceive;
525 Oid typioparam;
526 StringInfo bufptr;
528 /* Call the argument type's binary input converter */
529 getTypeBinaryInputInfo(fip->argtypes[i], &typreceive, &typioparam);
531 if (argsize == -1)
532 bufptr = NULL;
533 else
534 bufptr = &abuf;
536 fcinfo->arg[i] = OidReceiveFunctionCall(typreceive, bufptr,
537 typioparam, -1);
539 /* Trouble if it didn't eat the whole buffer */
540 if (argsize != -1 && abuf.cursor != abuf.len)
541 ereport(ERROR,
542 (errcode(ERRCODE_INVALID_BINARY_REPRESENTATION),
543 errmsg("incorrect binary data format in function argument %d",
544 i + 1)));
546 else
547 ereport(ERROR,
548 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
549 errmsg("unsupported format code: %d", aformat)));
552 /* Return result format code */
553 return (int16) pq_getmsgint(msgBuf, 2);
557 * Parse function arguments in a 2.0 protocol message
559 * Argument values are loaded into *fcinfo, and the desired result format
560 * is returned.
562 static int16
563 parse_fcall_arguments_20(StringInfo msgBuf, struct fp_info * fip,
564 FunctionCallInfo fcinfo)
566 int nargs;
567 int i;
568 StringInfoData abuf;
570 nargs = pq_getmsgint(msgBuf, 4); /* # of arguments */
572 if (fip->flinfo.fn_nargs != nargs || nargs > FUNC_MAX_ARGS)
573 ereport(ERROR,
574 (errcode(ERRCODE_PROTOCOL_VIOLATION),
575 errmsg("function call message contains %d arguments but function requires %d",
576 nargs, fip->flinfo.fn_nargs)));
578 fcinfo->nargs = nargs;
580 initStringInfo(&abuf);
583 * Copy supplied arguments into arg vector. In protocol 2.0 these are
584 * always assumed to be supplied in binary format.
586 * Note: although the original protocol 2.0 code did not have any way for
587 * the frontend to specify a NULL argument, we now choose to interpret
588 * length == -1 as meaning a NULL.
590 for (i = 0; i < nargs; ++i)
592 int argsize;
593 Oid typreceive;
594 Oid typioparam;
596 getTypeBinaryInputInfo(fip->argtypes[i], &typreceive, &typioparam);
598 argsize = pq_getmsgint(msgBuf, 4);
599 if (argsize == -1)
601 fcinfo->argnull[i] = true;
602 fcinfo->arg[i] = OidReceiveFunctionCall(typreceive, NULL,
603 typioparam, -1);
604 continue;
606 fcinfo->argnull[i] = false;
607 if (argsize < 0)
608 ereport(ERROR,
609 (errcode(ERRCODE_PROTOCOL_VIOLATION),
610 errmsg("invalid argument size %d in function call message",
611 argsize)));
613 /* Reset abuf to empty, and insert raw data into it */
614 resetStringInfo(&abuf);
615 appendBinaryStringInfo(&abuf,
616 pq_getmsgbytes(msgBuf, argsize),
617 argsize);
619 fcinfo->arg[i] = OidReceiveFunctionCall(typreceive, &abuf,
620 typioparam, -1);
622 /* Trouble if it didn't eat the whole buffer */
623 if (abuf.cursor != abuf.len)
624 ereport(ERROR,
625 (errcode(ERRCODE_INVALID_BINARY_REPRESENTATION),
626 errmsg("incorrect binary data format in function argument %d",
627 i + 1)));
630 /* Desired result format is always binary in protocol 2.0 */
631 return 1;