OSDN Git Service

Track dependencies on shared objects (which is to say, roles; we already
[pg-rex/syncrep.git] / src / backend / catalog / pg_proc.c
1 /*-------------------------------------------------------------------------
2  *
3  * pg_proc.c
4  *        routines to support manipulation of the pg_proc relation
5  *
6  * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
7  * Portions Copyright (c) 1994, Regents of the University of California
8  *
9  *
10  * IDENTIFICATION
11  *        $PostgreSQL: pgsql/src/backend/catalog/pg_proc.c,v 1.132 2005/07/07 20:39:57 tgl Exp $
12  *
13  *-------------------------------------------------------------------------
14  */
15 #include "postgres.h"
16
17 #include "access/heapam.h"
18 #include "catalog/dependency.h"
19 #include "catalog/indexing.h"
20 #include "catalog/pg_language.h"
21 #include "catalog/pg_namespace.h"
22 #include "catalog/pg_proc.h"
23 #include "catalog/pg_type.h"
24 #include "executor/functions.h"
25 #include "funcapi.h"
26 #include "miscadmin.h"
27 #include "mb/pg_wchar.h"
28 #include "parser/parse_type.h"
29 #include "tcop/pquery.h"
30 #include "tcop/tcopprot.h"
31 #include "utils/acl.h"
32 #include "utils/builtins.h"
33 #include "utils/lsyscache.h"
34 #include "utils/syscache.h"
35
36
37 /* GUC parameter */
38 bool            check_function_bodies = true;
39
40
41 Datum           fmgr_internal_validator(PG_FUNCTION_ARGS);
42 Datum           fmgr_c_validator(PG_FUNCTION_ARGS);
43 Datum           fmgr_sql_validator(PG_FUNCTION_ARGS);
44
45 static void sql_function_parse_error_callback(void *arg);
46 static int match_prosrc_to_query(const char *prosrc, const char *queryText,
47                                           int cursorpos);
48 static bool match_prosrc_to_literal(const char *prosrc, const char *literal,
49                                                 int cursorpos, int *newcursorpos);
50
51
52 /* ----------------------------------------------------------------
53  *              ProcedureCreate
54  *
55  * Note: allParameterTypes, parameterModes, parameterNames are either arrays
56  * of the proper types or NULL.  We declare them Datum, not "ArrayType *",
57  * to avoid importing array.h into pg_proc.h.
58  * ----------------------------------------------------------------
59  */
60 Oid
61 ProcedureCreate(const char *procedureName,
62                                 Oid procNamespace,
63                                 bool replace,
64                                 bool returnsSet,
65                                 Oid returnType,
66                                 Oid languageObjectId,
67                                 Oid languageValidator,
68                                 const char *prosrc,
69                                 const char *probin,
70                                 bool isAgg,
71                                 bool security_definer,
72                                 bool isStrict,
73                                 char volatility,
74                                 oidvector *parameterTypes,
75                                 Datum allParameterTypes,
76                                 Datum parameterModes,
77                                 Datum parameterNames)
78 {
79         Oid                     retval;
80         int                     parameterCount;
81         int                     allParamCount;
82         Oid                *allParams;
83         bool            genericInParam = false;
84         bool            genericOutParam = false;
85         bool            internalInParam = false;
86         bool            internalOutParam = false;
87         Relation        rel;
88         HeapTuple       tup;
89         HeapTuple       oldtup;
90         char            nulls[Natts_pg_proc];
91         Datum           values[Natts_pg_proc];
92         char            replaces[Natts_pg_proc];
93         Oid                     relid;
94         NameData        procname;
95         TupleDesc       tupDesc;
96         bool            is_update;
97         ObjectAddress myself,
98                                 referenced;
99         int                     i;
100
101         /*
102          * sanity checks
103          */
104         Assert(PointerIsValid(prosrc));
105         Assert(PointerIsValid(probin));
106
107         parameterCount = parameterTypes->dim1;
108         if (parameterCount < 0 || parameterCount > FUNC_MAX_ARGS)
109                 ereport(ERROR,
110                                 (errcode(ERRCODE_TOO_MANY_ARGUMENTS),
111                                  errmsg("functions cannot have more than %d arguments",
112                                                 FUNC_MAX_ARGS)));
113         /* note: the above is correct, we do NOT count output arguments */
114
115         if (allParameterTypes != PointerGetDatum(NULL))
116         {
117                 /*
118                  * We expect the array to be a 1-D OID array; verify that. We
119                  * don't need to use deconstruct_array() since the array data is
120                  * just going to look like a C array of OID values.
121                  */
122                 allParamCount = ARR_DIMS(DatumGetPointer(allParameterTypes))[0];
123                 if (ARR_NDIM(DatumGetPointer(allParameterTypes)) != 1 ||
124                         allParamCount <= 0 ||
125                         ARR_ELEMTYPE(DatumGetPointer(allParameterTypes)) != OIDOID)
126                         elog(ERROR, "allParameterTypes is not a 1-D Oid array");
127                 allParams = (Oid *) ARR_DATA_PTR(DatumGetPointer(allParameterTypes));
128                 Assert(allParamCount >= parameterCount);
129                 /* we assume caller got the contents right */
130         }
131         else
132         {
133                 allParamCount = parameterCount;
134                 allParams = parameterTypes->values;
135         }
136
137         /*
138          * Do not allow return type ANYARRAY or ANYELEMENT unless at least one
139          * input argument is ANYARRAY or ANYELEMENT.  Also, do not allow
140          * return type INTERNAL unless at least one input argument is INTERNAL.
141          */
142         for (i = 0; i < parameterCount; i++)
143         {
144                 switch (parameterTypes->values[i])
145                 {
146                         case ANYARRAYOID:
147                         case ANYELEMENTOID:
148                                 genericInParam = true;
149                                 break;
150                         case INTERNALOID:
151                                 internalInParam = true;
152                                 break;
153                 }
154         }
155
156         if (allParameterTypes != PointerGetDatum(NULL))
157         {
158                 for (i = 0; i < allParamCount; i++)
159                 {
160                         /*
161                          * We don't bother to distinguish input and output params here,
162                          * so if there is, say, just an input INTERNAL param then we will
163                          * still set internalOutParam.  This is OK since we don't really
164                          * care.
165                          */
166                         switch (allParams[i])
167                         {
168                                 case ANYARRAYOID:
169                                 case ANYELEMENTOID:
170                                         genericOutParam = true;
171                                         break;
172                                 case INTERNALOID:
173                                         internalOutParam = true;
174                                         break;
175                         }
176                 }
177         }
178
179         if ((returnType == ANYARRAYOID || returnType == ANYELEMENTOID ||
180                  genericOutParam) && !genericInParam)
181                 ereport(ERROR,
182                                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
183                                  errmsg("cannot determine result data type"),
184                                  errdetail("A function returning \"anyarray\" or \"anyelement\" must have at least one argument of either type.")));
185
186         if ((returnType == INTERNALOID || internalOutParam) && !internalInParam)
187                 ereport(ERROR,
188                                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
189                                  errmsg("unsafe use of INTERNAL pseudo-type"),
190                                  errdetail("A function returning \"internal\" must have at least one \"internal\" argument.")));
191
192         /*
193          * don't allow functions of complex types that have the same name as
194          * existing attributes of the type
195          */
196         if (parameterCount == 1 &&
197                 OidIsValid(parameterTypes->values[0]) &&
198                 (relid = typeidTypeRelid(parameterTypes->values[0])) != InvalidOid &&
199                 get_attnum(relid, procedureName) != InvalidAttrNumber)
200                 ereport(ERROR,
201                                 (errcode(ERRCODE_DUPLICATE_COLUMN),
202                                  errmsg("\"%s\" is already an attribute of type %s",
203                                                 procedureName,
204                                                 format_type_be(parameterTypes->values[0]))));
205
206         /*
207          * All seems OK; prepare the data to be inserted into pg_proc.
208          */
209
210         for (i = 0; i < Natts_pg_proc; ++i)
211         {
212                 nulls[i] = ' ';
213                 values[i] = (Datum) 0;
214                 replaces[i] = 'r';
215         }
216
217         namestrcpy(&procname, procedureName);
218         values[Anum_pg_proc_proname - 1] = NameGetDatum(&procname);
219         values[Anum_pg_proc_pronamespace - 1] = ObjectIdGetDatum(procNamespace);
220         values[Anum_pg_proc_proowner - 1] = ObjectIdGetDatum(GetUserId());
221         values[Anum_pg_proc_prolang - 1] = ObjectIdGetDatum(languageObjectId);
222         values[Anum_pg_proc_proisagg - 1] = BoolGetDatum(isAgg);
223         values[Anum_pg_proc_prosecdef - 1] = BoolGetDatum(security_definer);
224         values[Anum_pg_proc_proisstrict - 1] = BoolGetDatum(isStrict);
225         values[Anum_pg_proc_proretset - 1] = BoolGetDatum(returnsSet);
226         values[Anum_pg_proc_provolatile - 1] = CharGetDatum(volatility);
227         values[Anum_pg_proc_pronargs - 1] = UInt16GetDatum(parameterCount);
228         values[Anum_pg_proc_prorettype - 1] = ObjectIdGetDatum(returnType);
229         values[Anum_pg_proc_proargtypes - 1] = PointerGetDatum(parameterTypes);
230         if (allParameterTypes != PointerGetDatum(NULL))
231                 values[Anum_pg_proc_proallargtypes - 1] = allParameterTypes;
232         else
233                 nulls[Anum_pg_proc_proallargtypes - 1] = 'n';
234         if (parameterModes != PointerGetDatum(NULL))
235                 values[Anum_pg_proc_proargmodes - 1] = parameterModes;
236         else
237                 nulls[Anum_pg_proc_proargmodes - 1] = 'n';
238         if (parameterNames != PointerGetDatum(NULL))
239                 values[Anum_pg_proc_proargnames - 1] = parameterNames;
240         else
241                 nulls[Anum_pg_proc_proargnames - 1] = 'n';
242         values[Anum_pg_proc_prosrc - 1] = DirectFunctionCall1(textin,
243                                                                           CStringGetDatum(prosrc));
244         values[Anum_pg_proc_probin - 1] = DirectFunctionCall1(textin,
245                                                                           CStringGetDatum(probin));
246         /* start out with empty permissions */
247         nulls[Anum_pg_proc_proacl - 1] = 'n';
248
249         rel = heap_open(ProcedureRelationId, RowExclusiveLock);
250         tupDesc = RelationGetDescr(rel);
251
252         /* Check for pre-existing definition */
253         oldtup = SearchSysCache(PROCNAMEARGSNSP,
254                                                         PointerGetDatum(procedureName),
255                                                         PointerGetDatum(parameterTypes),
256                                                         ObjectIdGetDatum(procNamespace),
257                                                         0);
258
259         if (HeapTupleIsValid(oldtup))
260         {
261                 /* There is one; okay to replace it? */
262                 Form_pg_proc oldproc = (Form_pg_proc) GETSTRUCT(oldtup);
263
264                 if (!replace)
265                         ereport(ERROR,
266                                         (errcode(ERRCODE_DUPLICATE_FUNCTION),
267                                          errmsg("function \"%s\" already exists with same argument types",
268                                                         procedureName)));
269                 if (!pg_proc_ownercheck(HeapTupleGetOid(oldtup), GetUserId()))
270                         aclcheck_error(ACLCHECK_NOT_OWNER, ACL_KIND_PROC,
271                                                    procedureName);
272
273                 /*
274                  * Not okay to change the return type of the existing proc, since
275                  * existing rules, views, etc may depend on the return type.
276                  */
277                 if (returnType != oldproc->prorettype ||
278                         returnsSet != oldproc->proretset)
279                         ereport(ERROR,
280                                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
281                                          errmsg("cannot change return type of existing function"),
282                                          errhint("Use DROP FUNCTION first.")));
283
284                 /*
285                  * If it returns RECORD, check for possible change of record type
286                  * implied by OUT parameters
287                  */
288                 if (returnType == RECORDOID)
289                 {
290                         TupleDesc       olddesc;
291                         TupleDesc       newdesc;
292
293                         olddesc = build_function_result_tupdesc_t(oldtup);
294                         newdesc = build_function_result_tupdesc_d(allParameterTypes,
295                                                                                                           parameterModes,
296                                                                                                           parameterNames);
297                         if (olddesc == NULL && newdesc == NULL)
298                                 /* ok, both are runtime-defined RECORDs */ ;
299                         else if (olddesc == NULL || newdesc == NULL ||
300                                          !equalTupleDescs(olddesc, newdesc))
301                         ereport(ERROR,
302                                         (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
303                                          errmsg("cannot change return type of existing function"),
304                                          errdetail("Row type defined by OUT parameters is different."),
305                                          errhint("Use DROP FUNCTION first.")));
306                 }
307
308                 /* Can't change aggregate status, either */
309                 if (oldproc->proisagg != isAgg)
310                 {
311                         if (oldproc->proisagg)
312                                 ereport(ERROR,
313                                                 (errcode(ERRCODE_WRONG_OBJECT_TYPE),
314                                                  errmsg("function \"%s\" is an aggregate",
315                                                                 procedureName)));
316                         else
317                                 ereport(ERROR,
318                                                 (errcode(ERRCODE_WRONG_OBJECT_TYPE),
319                                                  errmsg("function \"%s\" is not an aggregate",
320                                                                 procedureName)));
321                 }
322
323                 /* do not change existing ownership or permissions, either */
324                 replaces[Anum_pg_proc_proowner - 1] = ' ';
325                 replaces[Anum_pg_proc_proacl - 1] = ' ';
326
327                 /* Okay, do it... */
328                 tup = heap_modifytuple(oldtup, tupDesc, values, nulls, replaces);
329                 simple_heap_update(rel, &tup->t_self, tup);
330
331                 ReleaseSysCache(oldtup);
332                 is_update = true;
333         }
334         else
335         {
336                 /* Creating a new procedure */
337                 tup = heap_formtuple(tupDesc, values, nulls);
338                 simple_heap_insert(rel, tup);
339                 is_update = false;
340         }
341
342         /* Need to update indexes for either the insert or update case */
343         CatalogUpdateIndexes(rel, tup);
344
345         retval = HeapTupleGetOid(tup);
346
347         /*
348          * Create dependencies for the new function.  If we are updating an
349          * existing function, first delete any existing pg_depend entries.
350          */
351         if (is_update)
352         {
353                 deleteDependencyRecordsFor(ProcedureRelationId, retval);
354                 deleteSharedDependencyRecordsFor(ProcedureRelationId, retval);
355         }
356
357         myself.classId = ProcedureRelationId;
358         myself.objectId = retval;
359         myself.objectSubId = 0;
360
361         /* dependency on namespace */
362         referenced.classId = NamespaceRelationId;
363         referenced.objectId = procNamespace;
364         referenced.objectSubId = 0;
365         recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
366
367         /* dependency on implementation language */
368         referenced.classId = LanguageRelationId;
369         referenced.objectId = languageObjectId;
370         referenced.objectSubId = 0;
371         recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
372
373         /* dependency on return type */
374         referenced.classId = TypeRelationId;
375         referenced.objectId = returnType;
376         referenced.objectSubId = 0;
377         recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
378
379         /* dependency on parameter types */
380         for (i = 0; i < allParamCount; i++)
381         {
382                 referenced.classId = TypeRelationId;
383                 referenced.objectId = allParams[i];
384                 referenced.objectSubId = 0;
385                 recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);
386         }
387
388         /* dependency on owner */
389         recordDependencyOnOwner(ProcedureRelationId, retval, GetUserId());
390
391         heap_freetuple(tup);
392
393         heap_close(rel, RowExclusiveLock);
394
395         /* Verify function body */
396         if (OidIsValid(languageValidator))
397         {
398                 /* Advance command counter so new tuple can be seen by validator */
399                 CommandCounterIncrement();
400                 OidFunctionCall1(languageValidator, ObjectIdGetDatum(retval));
401         }
402
403         return retval;
404 }
405
406
407
408 /*
409  * Validator for internal functions
410  *
411  * Check that the given internal function name (the "prosrc" value) is
412  * a known builtin function.
413  */
414 Datum
415 fmgr_internal_validator(PG_FUNCTION_ARGS)
416 {
417         Oid                     funcoid = PG_GETARG_OID(0);
418         HeapTuple       tuple;
419         Form_pg_proc proc;
420         bool            isnull;
421         Datum           tmp;
422         char       *prosrc;
423
424         /*
425          * We do not honor check_function_bodies since it's unlikely the
426          * function name will be found later if it isn't there now.
427          */
428
429         tuple = SearchSysCache(PROCOID,
430                                                    ObjectIdGetDatum(funcoid),
431                                                    0, 0, 0);
432         if (!HeapTupleIsValid(tuple))
433                 elog(ERROR, "cache lookup failed for function %u", funcoid);
434         proc = (Form_pg_proc) GETSTRUCT(tuple);
435
436         tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_prosrc, &isnull);
437         if (isnull)
438                 elog(ERROR, "null prosrc");
439         prosrc = DatumGetCString(DirectFunctionCall1(textout, tmp));
440
441         if (fmgr_internal_function(prosrc) == InvalidOid)
442                 ereport(ERROR,
443                                 (errcode(ERRCODE_UNDEFINED_FUNCTION),
444                                  errmsg("there is no built-in function named \"%s\"",
445                                                 prosrc)));
446
447         ReleaseSysCache(tuple);
448
449         PG_RETURN_VOID();
450 }
451
452
453
454 /*
455  * Validator for C language functions
456  *
457  * Make sure that the library file exists, is loadable, and contains
458  * the specified link symbol. Also check for a valid function
459  * information record.
460  */
461 Datum
462 fmgr_c_validator(PG_FUNCTION_ARGS)
463 {
464         Oid                     funcoid = PG_GETARG_OID(0);
465         void       *libraryhandle;
466         HeapTuple       tuple;
467         Form_pg_proc proc;
468         bool            isnull;
469         Datum           tmp;
470         char       *prosrc;
471         char       *probin;
472
473         /*
474          * It'd be most consistent to skip the check if
475          * !check_function_bodies, but the purpose of that switch is to be
476          * helpful for pg_dump loading, and for pg_dump loading it's much
477          * better if we *do* check.
478          */
479
480         tuple = SearchSysCache(PROCOID,
481                                                    ObjectIdGetDatum(funcoid),
482                                                    0, 0, 0);
483         if (!HeapTupleIsValid(tuple))
484                 elog(ERROR, "cache lookup failed for function %u", funcoid);
485         proc = (Form_pg_proc) GETSTRUCT(tuple);
486
487         tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_prosrc, &isnull);
488         if (isnull)
489                 elog(ERROR, "null prosrc");
490         prosrc = DatumGetCString(DirectFunctionCall1(textout, tmp));
491
492         tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_probin, &isnull);
493         if (isnull)
494                 elog(ERROR, "null probin");
495         probin = DatumGetCString(DirectFunctionCall1(textout, tmp));
496
497         (void) load_external_function(probin, prosrc, true, &libraryhandle);
498         (void) fetch_finfo_record(libraryhandle, prosrc);
499
500         ReleaseSysCache(tuple);
501
502         PG_RETURN_VOID();
503 }
504
505
506 /*
507  * Validator for SQL language functions
508  *
509  * Parse it here in order to be sure that it contains no syntax errors.
510  */
511 Datum
512 fmgr_sql_validator(PG_FUNCTION_ARGS)
513 {
514         Oid                     funcoid = PG_GETARG_OID(0);
515         HeapTuple       tuple;
516         Form_pg_proc proc;
517         List       *querytree_list;
518         bool            isnull;
519         Datum           tmp;
520         char       *prosrc;
521         ErrorContextCallback sqlerrcontext;
522         bool            haspolyarg;
523         int                     i;
524
525         tuple = SearchSysCache(PROCOID,
526                                                    ObjectIdGetDatum(funcoid),
527                                                    0, 0, 0);
528         if (!HeapTupleIsValid(tuple))
529                 elog(ERROR, "cache lookup failed for function %u", funcoid);
530         proc = (Form_pg_proc) GETSTRUCT(tuple);
531
532         /* Disallow pseudotype result */
533         /* except for RECORD, VOID, ANYARRAY, or ANYELEMENT */
534         if (get_typtype(proc->prorettype) == 'p' &&
535                 proc->prorettype != RECORDOID &&
536                 proc->prorettype != VOIDOID &&
537                 proc->prorettype != ANYARRAYOID &&
538                 proc->prorettype != ANYELEMENTOID)
539                 ereport(ERROR,
540                                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
541                                  errmsg("SQL functions cannot return type %s",
542                                                 format_type_be(proc->prorettype))));
543
544         /* Disallow pseudotypes in arguments */
545         /* except for ANYARRAY or ANYELEMENT */
546         haspolyarg = false;
547         for (i = 0; i < proc->pronargs; i++)
548         {
549                 if (get_typtype(proc->proargtypes.values[i]) == 'p')
550                 {
551                         if (proc->proargtypes.values[i] == ANYARRAYOID ||
552                                 proc->proargtypes.values[i] == ANYELEMENTOID)
553                                 haspolyarg = true;
554                         else
555                                 ereport(ERROR,
556                                                 (errcode(ERRCODE_INVALID_FUNCTION_DEFINITION),
557                                  errmsg("SQL functions cannot have arguments of type %s",
558                                                 format_type_be(proc->proargtypes.values[i]))));
559                 }
560         }
561
562         /* Postpone body checks if !check_function_bodies */
563         if (check_function_bodies)
564         {
565                 tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_prosrc, &isnull);
566                 if (isnull)
567                         elog(ERROR, "null prosrc");
568
569                 prosrc = DatumGetCString(DirectFunctionCall1(textout, tmp));
570
571                 /*
572                  * Setup error traceback support for ereport().
573                  */
574                 sqlerrcontext.callback = sql_function_parse_error_callback;
575                 sqlerrcontext.arg = tuple;
576                 sqlerrcontext.previous = error_context_stack;
577                 error_context_stack = &sqlerrcontext;
578
579                 /*
580                  * We can't do full prechecking of the function definition if
581                  * there are any polymorphic input types, because actual datatypes
582                  * of expression results will be unresolvable.  The check will be
583                  * done at runtime instead.
584                  *
585                  * We can run the text through the raw parser though; this will at
586                  * least catch silly syntactic errors.
587                  */
588                 if (!haspolyarg)
589                 {
590                         querytree_list = pg_parse_and_rewrite(prosrc,
591                                                                                                   proc->proargtypes.values,
592                                                                                                   proc->pronargs);
593                         (void) check_sql_fn_retval(funcoid, proc->prorettype,
594                                                                            querytree_list, NULL);
595                 }
596                 else
597                         querytree_list = pg_parse_query(prosrc);
598
599                 error_context_stack = sqlerrcontext.previous;
600         }
601
602         ReleaseSysCache(tuple);
603
604         PG_RETURN_VOID();
605 }
606
607 /*
608  * Error context callback for handling errors in SQL function definitions
609  */
610 static void
611 sql_function_parse_error_callback(void *arg)
612 {
613         HeapTuple       tuple = (HeapTuple) arg;
614         Form_pg_proc proc = (Form_pg_proc) GETSTRUCT(tuple);
615         bool            isnull;
616         Datum           tmp;
617         char       *prosrc;
618
619         /* See if it's a syntax error; if so, transpose to CREATE FUNCTION */
620         tmp = SysCacheGetAttr(PROCOID, tuple, Anum_pg_proc_prosrc, &isnull);
621         if (isnull)
622                 elog(ERROR, "null prosrc");
623         prosrc = DatumGetCString(DirectFunctionCall1(textout, tmp));
624
625         if (!function_parse_error_transpose(prosrc))
626         {
627                 /* If it's not a syntax error, push info onto context stack */
628                 errcontext("SQL function \"%s\"", NameStr(proc->proname));
629         }
630
631         pfree(prosrc);
632 }
633
634 /*
635  * Adjust a syntax error occurring inside the function body of a CREATE
636  * FUNCTION command.  This can be used by any function validator, not only
637  * for SQL-language functions.  It is assumed that the syntax error position
638  * is initially relative to the function body string (as passed in).  If
639  * possible, we adjust the position to reference the original CREATE command;
640  * if we can't manage that, we set up an "internal query" syntax error instead.
641  *
642  * Returns true if a syntax error was processed, false if not.
643  */
644 bool
645 function_parse_error_transpose(const char *prosrc)
646 {
647         int                     origerrposition;
648         int                     newerrposition;
649         const char *queryText;
650
651         /*
652          * Nothing to do unless we are dealing with a syntax error that has a
653          * cursor position.
654          *
655          * Some PLs may prefer to report the error position as an internal error
656          * to begin with, so check that too.
657          */
658         origerrposition = geterrposition();
659         if (origerrposition <= 0)
660         {
661                 origerrposition = getinternalerrposition();
662                 if (origerrposition <= 0)
663                         return false;
664         }
665
666         /* We can get the original query text from the active portal (hack...) */
667         Assert(ActivePortal && ActivePortal->status == PORTAL_ACTIVE);
668         queryText = ActivePortal->sourceText;
669
670         /* Try to locate the prosrc in the original text */
671         newerrposition = match_prosrc_to_query(prosrc, queryText, origerrposition);
672
673         if (newerrposition > 0)
674         {
675                 /* Successful, so fix error position to reference original query */
676                 errposition(newerrposition);
677                 /* Get rid of any report of the error as an "internal query" */
678                 internalerrposition(0);
679                 internalerrquery(NULL);
680         }
681         else
682         {
683                 /*
684                  * If unsuccessful, convert the position to an internal position
685                  * marker and give the function text as the internal query.
686                  */
687                 errposition(0);
688                 internalerrposition(origerrposition);
689                 internalerrquery(prosrc);
690         }
691
692         return true;
693 }
694
695 /*
696  * Try to locate the string literal containing the function body in the
697  * given text of the CREATE FUNCTION command.  If successful, return the
698  * character (not byte) index within the command corresponding to the
699  * given character index within the literal.  If not successful, return 0.
700  */
701 static int
702 match_prosrc_to_query(const char *prosrc, const char *queryText,
703                                           int cursorpos)
704 {
705         /*
706          * Rather than fully parsing the CREATE FUNCTION command, we just scan
707          * the command looking for $prosrc$ or 'prosrc'.  This could be fooled
708          * (though not in any very probable scenarios), so fail if we find
709          * more than one match.
710          */
711         int                     prosrclen = strlen(prosrc);
712         int                     querylen = strlen(queryText);
713         int                     matchpos = 0;
714         int                     curpos;
715         int                     newcursorpos;
716
717         for (curpos = 0; curpos < querylen - prosrclen; curpos++)
718         {
719                 if (queryText[curpos] == '$' &&
720                         strncmp(prosrc, &queryText[curpos + 1], prosrclen) == 0 &&
721                         queryText[curpos + 1 + prosrclen] == '$')
722                 {
723                         /*
724                          * Found a $foo$ match.  Since there are no embedded quoting
725                          * characters in a dollar-quoted literal, we don't have to do
726                          * any fancy arithmetic; just offset by the starting position.
727                          */
728                         if (matchpos)
729                                 return 0;               /* multiple matches, fail */
730                         matchpos = pg_mbstrlen_with_len(queryText, curpos + 1)
731                                 + cursorpos;
732                 }
733                 else if (queryText[curpos] == '\'' &&
734                                  match_prosrc_to_literal(prosrc, &queryText[curpos + 1],
735                                                                                  cursorpos, &newcursorpos))
736                 {
737                         /*
738                          * Found a 'foo' match.  match_prosrc_to_literal() has
739                          * adjusted for any quotes or backslashes embedded in the
740                          * literal.
741                          */
742                         if (matchpos)
743                                 return 0;               /* multiple matches, fail */
744                         matchpos = pg_mbstrlen_with_len(queryText, curpos + 1)
745                                 + newcursorpos;
746                 }
747         }
748
749         return matchpos;
750 }
751
752 /*
753  * Try to match the given source text to a single-quoted literal.
754  * If successful, adjust newcursorpos to correspond to the character
755  * (not byte) index corresponding to cursorpos in the source text.
756  *
757  * At entry, literal points just past a ' character.  We must check for the
758  * trailing quote.
759  */
760 static bool
761 match_prosrc_to_literal(const char *prosrc, const char *literal,
762                                                 int cursorpos, int *newcursorpos)
763 {
764         int                     newcp = cursorpos;
765         int                     chlen;
766
767         /*
768          * This implementation handles backslashes and doubled quotes in the
769          * string literal.      It does not handle the SQL syntax for literals
770          * continued across line boundaries.
771          *
772          * We do the comparison a character at a time, not a byte at a time, so
773          * that we can do the correct cursorpos math.
774          */
775         while (*prosrc)
776         {
777                 cursorpos--;                    /* characters left before cursor */
778
779                 /*
780                  * Check for backslashes and doubled quotes in the literal; adjust
781                  * newcp when one is found before the cursor.
782                  */
783                 if (*literal == '\\')
784                 {
785                         literal++;
786                         if (cursorpos > 0)
787                                 newcp++;
788                 }
789                 else if (*literal == '\'')
790                 {
791                         if (literal[1] != '\'')
792                                 return false;
793                         literal++;
794                         if (cursorpos > 0)
795                                 newcp++;
796                 }
797                 chlen = pg_mblen(prosrc);
798                 if (strncmp(prosrc, literal, chlen) != 0)
799                         return false;
800                 prosrc += chlen;
801                 literal += chlen;
802         }
803
804         *newcursorpos = newcp;
805
806         if (*literal == '\'' && literal[1] != '\'')
807                 return true;
808         return false;
809 }