PostgreSQL Source Code git master
Loading...
Searching...
No Matches
plperl.c File Reference
#include "postgres.h"
#include <ctype.h>
#include <fcntl.h>
#include <limits.h>
#include <unistd.h>
#include "access/htup_details.h"
#include "access/xact.h"
#include "catalog/pg_language.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "commands/event_trigger.h"
#include "commands/trigger.h"
#include "executor/spi.h"
#include "funcapi.h"
#include "miscadmin.h"
#include "parser/parse_type.h"
#include "storage/ipc.h"
#include "tcop/tcopprot.h"
#include "utils/builtins.h"
#include "utils/fmgroids.h"
#include "utils/guc.h"
#include "utils/hsearch.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/rel.h"
#include "utils/syscache.h"
#include "utils/tuplestore.h"
#include "utils/typcache.h"
#include "perlchunks.h"
#include "plperl.h"
#include "plperl_opmask.h"
Include dependency graph for plperl.c:

Go to the source code of this file.

Data Structures

struct  plperl_interp_desc
 
struct  plperl_proc_desc
 
struct  plperl_proc_key
 
struct  plperl_proc_ptr
 
struct  plperl_call_data
 
struct  plperl_query_desc
 
struct  plperl_query_entry
 
struct  plperl_array_info
 

Macros

#define TEXTDOMAIN   PG_TEXTDOMAIN("plperl")
 
#define increment_prodesc_refcount(prodesc)    ((prodesc)->fn_refcount++)
 
#define decrement_prodesc_refcount(prodesc)
 
#define setlocale_perl(a, b)   Perl_setlocale(a,b)
 

Typedefs

typedef struct plperl_interp_desc plperl_interp_desc
 
typedef struct plperl_proc_desc plperl_proc_desc
 
typedef struct plperl_proc_key plperl_proc_key
 
typedef struct plperl_proc_ptr plperl_proc_ptr
 
typedef struct plperl_call_data plperl_call_data
 
typedef struct plperl_query_desc plperl_query_desc
 
typedef struct plperl_query_entry plperl_query_entry
 
typedef struct plperl_array_info plperl_array_info
 

Functions

EXTERN_C void boot_DynaLoader (pTHX_ CV *cv)
 
EXTERN_C void boot_PostgreSQL__InServer__Util (pTHX_ CV *cv)
 
EXTERN_C void boot_PostgreSQL__InServer__SPI (pTHX_ CV *cv)
 
 PG_MODULE_MAGIC_EXT (.name="plperl",.version=PG_VERSION)
 
static PerlInterpreterplperl_init_interp (void)
 
static void plperl_destroy_interp (PerlInterpreter **)
 
static void plperl_fini (int code, Datum arg)
 
static void set_interp_require (bool trusted)
 
static Datum plperl_func_handler (PG_FUNCTION_ARGS)
 
static Datum plperl_trigger_handler (PG_FUNCTION_ARGS)
 
static void plperl_event_trigger_handler (PG_FUNCTION_ARGS)
 
static void free_plperl_function (plperl_proc_desc *prodesc)
 
static plperl_proc_desccompile_plperl_function (Oid fn_oid, bool is_trigger, bool is_event_trigger)
 
static SVplperl_hash_from_tuple (HeapTuple tuple, TupleDesc tupdesc, bool include_generated)
 
static SVplperl_hash_from_datum (Datum attr)
 
static void check_spi_usage_allowed (void)
 
static SVplperl_ref_from_pg_array (Datum arg, Oid typid)
 
static SVsplit_array (plperl_array_info *info, int first, int last, int nest)
 
static SVmake_array_ref (plperl_array_info *info, int first, int last)
 
static SVget_perl_array_ref (SV *sv)
 
static Datum plperl_sv_to_datum (SV *sv, Oid typid, int32 typmod, FunctionCallInfo fcinfo, FmgrInfo *finfo, Oid typioparam, bool *isnull)
 
static void _sv_to_datum_finfo (Oid typid, FmgrInfo *finfo, Oid *typioparam)
 
static Datum plperl_array_to_datum (SV *src, Oid typid, int32 typmod)
 
static void array_to_datum_internal (AV *av, ArrayBuildState **astatep, int *ndims, int *dims, int cur_depth, Oid elemtypid, int32 typmod, FmgrInfo *finfo, Oid typioparam)
 
static Datum plperl_hash_to_datum (SV *src, TupleDesc td)
 
static void plperl_init_shared_libs (pTHX)
 
static void plperl_trusted_init (void)
 
static void plperl_untrusted_init (void)
 
static HVplperl_spi_execute_fetch_result (SPITupleTable *, uint64, int)
 
static void plperl_return_next_internal (SV *sv)
 
static charhek2cstr (HE *he)
 
static SV ** hv_store_string (HV *hv, const char *key, SV *val)
 
static SV ** hv_fetch_string (HV *hv, const char *key)
 
static void plperl_create_sub (plperl_proc_desc *desc, const char *s, Oid fn_oid)
 
static SVplperl_call_perl_func (plperl_proc_desc *desc, FunctionCallInfo fcinfo)
 
static void plperl_compile_callback (void *arg)
 
static void plperl_exec_callback (void *arg)
 
static void plperl_inline_callback (void *arg)
 
static charstrip_trailing_ws (const char *msg)
 
static OPpp_require_safe (pTHX)
 
static void activate_interpreter (plperl_interp_desc *interp_desc)
 
static void SvREFCNT_dec_current (SV *sv)
 
void _PG_init (void)
 
static void select_perl_context (bool trusted)
 
static HeapTuple plperl_build_tuple_result (HV *perlhash, TupleDesc td)
 
charplperl_sv_to_literal (SV *sv, char *fqtypename)
 
static SVplperl_trigger_build_args (FunctionCallInfo fcinfo)
 
static SVplperl_event_trigger_build_args (FunctionCallInfo fcinfo)
 
static HeapTuple plperl_modify_tuple (HV *hvTD, TriggerData *tdata, HeapTuple otup)
 
 PG_FUNCTION_INFO_V1 (plperl_call_handler)
 
Datum plperl_call_handler (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (plperl_inline_handler)
 
Datum plperl_inline_handler (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (plperl_validator)
 
Datum plperl_validator (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (plperlu_call_handler)
 
Datum plperlu_call_handler (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (plperlu_inline_handler)
 
Datum plperlu_inline_handler (PG_FUNCTION_ARGS)
 
 PG_FUNCTION_INFO_V1 (plperlu_validator)
 
Datum plperlu_validator (PG_FUNCTION_ARGS)
 
static SVplperl_call_perl_trigger_func (plperl_proc_desc *desc, FunctionCallInfo fcinfo, SV *td)
 
static void plperl_call_perl_event_trigger_func (plperl_proc_desc *desc, FunctionCallInfo fcinfo, SV *td)
 
static bool validate_plperl_function (plperl_proc_ptr *proc_ptr, HeapTuple procTup)
 
HVplperl_spi_exec (char *query, int limit)
 
void plperl_return_next (SV *sv)
 
SVplperl_spi_query (char *query)
 
SVplperl_spi_fetchrow (char *cursor)
 
void plperl_spi_cursor_close (char *cursor)
 
SVplperl_spi_prepare (char *query, int argc, SV **argv)
 
HVplperl_spi_exec_prepared (char *query, HV *attr, int argc, SV **argv)
 
SVplperl_spi_query_prepared (char *query, int argc, SV **argv)
 
void plperl_spi_freeplan (char *query)
 
void plperl_spi_commit (void)
 
void plperl_spi_rollback (void)
 
void plperl_util_elog (int level, SV *msg)
 

Variables

static HTABplperl_interp_hash = NULL
 
static HTABplperl_proc_hash = NULL
 
static plperl_interp_descplperl_active_interp = NULL
 
static PerlInterpreterplperl_held_interp = NULL
 
static bool plperl_use_strict = false
 
static charplperl_on_init = NULL
 
static charplperl_on_plperl_init = NULL
 
static charplperl_on_plperlu_init = NULL
 
static bool plperl_ending = false
 
static OP *(* pp_require_orig )(pTHX) = NULL
 
static char plperl_opmask [MAXO]
 
static plperl_call_datacurrent_call_data = NULL
 

Macro Definition Documentation

◆ decrement_prodesc_refcount

#define decrement_prodesc_refcount (   prodesc)
Value:
do { \
Assert((prodesc)->fn_refcount > 0); \
if (--((prodesc)->fn_refcount) == 0) \
} while(0)
static int fb(int x)

Definition at line 132 of file plperl.c.

133 { \
134 Assert((prodesc)->fn_refcount > 0); \
135 if (--((prodesc)->fn_refcount) == 0) \
136 free_plperl_function(prodesc); \
137 } while(0)

◆ increment_prodesc_refcount

#define increment_prodesc_refcount (   prodesc)     ((prodesc)->fn_refcount++)

Definition at line 130 of file plperl.c.

◆ setlocale_perl

#define setlocale_perl (   a,
  b 
)    Perl_setlocale(a,b)

Definition at line 305 of file plperl.c.

◆ TEXTDOMAIN

#define TEXTDOMAIN   PG_TEXTDOMAIN("plperl")

Definition at line 43 of file plperl.c.

Typedef Documentation

◆ plperl_array_info

◆ plperl_call_data

◆ plperl_interp_desc

◆ plperl_proc_desc

◆ plperl_proc_key

◆ plperl_proc_ptr

◆ plperl_query_desc

◆ plperl_query_entry

Function Documentation

◆ _PG_init()

void _PG_init ( void  )

Definition at line 383 of file plperl.c.

384{
385 /*
386 * Be sure we do initialization only once.
387 *
388 * If initialization fails due to, e.g., plperl_init_interp() throwing an
389 * exception, then we'll return here on the next usage and the user will
390 * get a rather cryptic: ERROR: attempt to redefine parameter
391 * "plperl.use_strict"
392 */
393 static bool inited = false;
395
396 if (inited)
397 return;
398
399 /*
400 * Support localized messages.
401 */
403
404 /*
405 * Initialize plperl's GUCs.
406 */
407 DefineCustomBoolVariable("plperl.use_strict",
408 gettext_noop("If true, trusted and untrusted Perl code will be compiled in strict mode."),
409 NULL,
411 false,
412 PGC_USERSET, 0,
413 NULL, NULL, NULL);
414
415 /*
416 * plperl.on_init is marked PGC_SIGHUP to support the idea that it might
417 * be executed in the postmaster (if plperl is loaded into the postmaster
418 * via shared_preload_libraries). This isn't really right either way,
419 * though.
420 */
421 DefineCustomStringVariable("plperl.on_init",
422 gettext_noop("Perl initialization code to execute when a Perl interpreter is initialized."),
423 NULL,
425 NULL,
426 PGC_SIGHUP, 0,
427 NULL, NULL, NULL);
428
429 /*
430 * plperl.on_plperl_init is marked PGC_SUSET to avoid issues whereby a
431 * user who might not even have USAGE privilege on the plperl language
432 * could nonetheless use SET plperl.on_plperl_init='...' to influence the
433 * behaviour of any existing plperl function that they can execute (which
434 * might be SECURITY DEFINER, leading to a privilege escalation). See
435 * http://archives.postgresql.org/pgsql-hackers/2010-02/msg00281.php and
436 * the overall thread.
437 *
438 * Note that because plperl.use_strict is USERSET, a nefarious user could
439 * set it to be applied against other people's functions. This is judged
440 * OK since the worst result would be an error. Your code oughta pass
441 * use_strict anyway ;-)
442 */
443 DefineCustomStringVariable("plperl.on_plperl_init",
444 gettext_noop("Perl initialization code to execute once when plperl is first used."),
445 NULL,
447 NULL,
448 PGC_SUSET, 0,
449 NULL, NULL, NULL);
450
451 DefineCustomStringVariable("plperl.on_plperlu_init",
452 gettext_noop("Perl initialization code to execute once when plperlu is first used."),
453 NULL,
455 NULL,
456 PGC_SUSET, 0,
457 NULL, NULL, NULL);
458
459 MarkGUCPrefixReserved("plperl");
460
461 /*
462 * Create hash tables.
463 */
464 hash_ctl.keysize = sizeof(Oid);
465 hash_ctl.entrysize = sizeof(plperl_interp_desc);
466 plperl_interp_hash = hash_create("PL/Perl interpreters",
467 8,
468 &hash_ctl,
470
471 hash_ctl.keysize = sizeof(plperl_proc_key);
472 hash_ctl.entrysize = sizeof(plperl_proc_ptr);
473 plperl_proc_hash = hash_create("PL/Perl procedures",
474 32,
475 &hash_ctl,
477
478 /*
479 * Save the default opmask.
480 */
482
483 /*
484 * Create the first Perl interpreter, but only partially initialize it.
485 */
487
488 inited = true;
489}
#define gettext_noop(x)
Definition c.h:1287
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition dynahash.c:358
void DefineCustomStringVariable(const char *name, const char *short_desc, const char *long_desc, char **valueAddr, const char *bootValue, GucContext context, int flags, GucStringCheckHook check_hook, GucStringAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5123
void DefineCustomBoolVariable(const char *name, const char *short_desc, const char *long_desc, bool *valueAddr, bool bootValue, GucContext context, int flags, GucBoolCheckHook check_hook, GucBoolAssignHook assign_hook, GucShowHook show_hook)
Definition guc.c:5043
void MarkGUCPrefixReserved(const char *className)
Definition guc.c:5180
@ PGC_SUSET
Definition guc.h:78
@ PGC_USERSET
Definition guc.h:79
@ PGC_SIGHUP
Definition guc.h:75
#define HASH_ELEM
Definition hsearch.h:95
#define HASH_BLOBS
Definition hsearch.h:97
void pg_bindtextdomain(const char *domain)
Definition miscinit.c:1889
static HTAB * plperl_interp_hash
Definition plperl.c:226
static char plperl_opmask[MAXO]
Definition plperl.c:241
static bool plperl_use_strict
Definition plperl.c:234
static HTAB * plperl_proc_hash
Definition plperl.c:227
static PerlInterpreter * plperl_held_interp
Definition plperl.c:231
#define TEXTDOMAIN
Definition plperl.c:43
static char * plperl_on_init
Definition plperl.c:235
static char * plperl_on_plperl_init
Definition plperl.c:236
static PerlInterpreter * plperl_init_interp(void)
Definition plperl.c:708
static char * plperl_on_plperlu_init
Definition plperl.c:237
unsigned int Oid

References DefineCustomBoolVariable(), DefineCustomStringVariable(), fb(), gettext_noop, HASH_BLOBS, hash_create(), HASH_ELEM, MarkGUCPrefixReserved(), pg_bindtextdomain(), PGC_SIGHUP, PGC_SUSET, PGC_USERSET, plperl_held_interp, plperl_init_interp(), plperl_interp_hash, plperl_on_init, plperl_on_plperl_init, plperl_on_plperlu_init, plperl_opmask, plperl_proc_hash, plperl_use_strict, and TEXTDOMAIN.

◆ _sv_to_datum_finfo()

static void _sv_to_datum_finfo ( Oid  typid,
FmgrInfo finfo,
Oid typioparam 
)
static

Definition at line 1303 of file plperl.c.

1304{
1305 Oid typinput;
1306
1307 /* XXX would be better to cache these lookups */
1308 getTypeInputInfo(typid,
1309 &typinput, typioparam);
1310 fmgr_info(typinput, finfo);
1311}
void fmgr_info(Oid functionId, FmgrInfo *finfo)
Definition fmgr.c:129
void getTypeInputInfo(Oid type, Oid *typInput, Oid *typIOParam)
Definition lsyscache.c:3096

References fb(), fmgr_info(), and getTypeInputInfo().

Referenced by plperl_array_to_datum(), and plperl_sv_to_datum().

◆ activate_interpreter()

static void activate_interpreter ( plperl_interp_desc interp_desc)
static

Definition at line 687 of file plperl.c.

688{
689 if (interp_desc && plperl_active_interp != interp_desc)
690 {
691 Assert(interp_desc->interp);
692 PERL_SET_CONTEXT(interp_desc->interp);
693 /* trusted iff user_id isn't InvalidOid */
695 plperl_active_interp = interp_desc;
696 }
697}
#define Assert(condition)
Definition c.h:945
#define OidIsValid(objectId)
Definition c.h:860
static void set_interp_require(bool trusted)
Definition plperl.c:493
static plperl_interp_desc * plperl_active_interp
Definition plperl.c:228
PerlInterpreter * interp
Definition plperl.c:89

References Assert, fb(), plperl_interp_desc::interp, OidIsValid, plperl_active_interp, set_interp_require(), and plperl_interp_desc::user_id.

Referenced by compile_plperl_function(), free_plperl_function(), plperl_call_handler(), plperl_event_trigger_handler(), plperl_fini(), plperl_func_handler(), plperl_inline_handler(), plperl_trigger_handler(), and select_perl_context().

◆ array_to_datum_internal()

static void array_to_datum_internal ( AV av,
ArrayBuildState **  astatep,
int ndims,
int dims,
int  cur_depth,
Oid  elemtypid,
int32  typmod,
FmgrInfo finfo,
Oid  typioparam 
)
static

Definition at line 1173 of file plperl.c.

1177{
1178 dTHX;
1179 int i;
1180 int len = av_len(av) + 1;
1181
1182 for (i = 0; i < len; i++)
1183 {
1184 /* fetch the array element */
1185 SV **svp = av_fetch(av, i, FALSE);
1186
1187 /* see if this element is an array, if so get that */
1189
1190 /* multi-dimensional array? */
1191 if (sav)
1192 {
1193 AV *nav = (AV *) SvRV(sav);
1194
1195 /* set size when at first element in this level, else compare */
1196 if (i == 0 && *ndims == cur_depth)
1197 {
1198 /* array after some scalars at same level? */
1199 if (*astatep != NULL)
1200 ereport(ERROR,
1202 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1203 /* too many dimensions? */
1204 if (cur_depth + 1 > MAXDIM)
1205 ereport(ERROR,
1207 errmsg("number of array dimensions exceeds the maximum allowed (%d)",
1208 MAXDIM)));
1209 /* OK, add a dimension */
1210 dims[*ndims] = av_len(nav) + 1;
1211 (*ndims)++;
1212 }
1213 else if (cur_depth >= *ndims ||
1214 av_len(nav) + 1 != dims[cur_depth])
1215 ereport(ERROR,
1217 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1218
1219 /* recurse to fetch elements of this sub-array */
1221 ndims, dims, cur_depth + 1,
1222 elemtypid, typmod,
1223 finfo, typioparam);
1224 }
1225 else
1226 {
1227 Datum dat;
1228 bool isnull;
1229
1230 /* scalar after some sub-arrays at same level? */
1231 if (*ndims != cur_depth)
1232 ereport(ERROR,
1234 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1235
1237 elemtypid,
1238 typmod,
1239 NULL,
1240 finfo,
1241 typioparam,
1242 &isnull);
1243
1244 /* Create ArrayBuildState if we didn't already */
1245 if (*astatep == NULL)
1247 CurrentMemoryContext, true);
1248
1249 /* ... and save the element value in it */
1250 (void) accumArrayResult(*astatep, dat, isnull,
1252 }
1253 }
1254}
#define MAXDIM
Definition array.h:75
ArrayBuildState * accumArrayResult(ArrayBuildState *astate, Datum dvalue, bool disnull, Oid element_type, MemoryContext rcontext)
ArrayBuildState * initArrayResult(Oid element_type, MemoryContext rcontext, bool subcontext)
int errcode(int sqlerrcode)
Definition elog.c:874
#define ERROR
Definition elog.h:39
#define ereport(elevel,...)
Definition elog.h:150
int i
Definition isn.c:77
MemoryContext CurrentMemoryContext
Definition mcxt.c:160
static char * errmsg
const void size_t len
static Datum plperl_sv_to_datum(SV *sv, Oid typid, int32 typmod, FunctionCallInfo fcinfo, FmgrInfo *finfo, Oid typioparam, bool *isnull)
Definition plperl.c:1326
static SV * get_perl_array_ref(SV *sv)
Definition plperl.c:1141
static void array_to_datum_internal(AV *av, ArrayBuildState **astatep, int *ndims, int *dims, int cur_depth, Oid elemtypid, int32 typmod, FmgrInfo *finfo, Oid typioparam)
Definition plperl.c:1173
uint64_t Datum
Definition postgres.h:70
#define dTHX
Definition ppport.h:11306
struct @10::@11 av[32]

References accumArrayResult(), array_to_datum_internal(), av, CurrentMemoryContext, dTHX, ereport, errcode(), errmsg, ERROR, fb(), get_perl_array_ref(), i, initArrayResult(), len, MAXDIM, and plperl_sv_to_datum().

Referenced by array_to_datum_internal(), and plperl_array_to_datum().

◆ boot_DynaLoader()

EXTERN_C void boot_DynaLoader ( pTHX_ CV cv)

Referenced by plperl_init_shared_libs().

◆ boot_PostgreSQL__InServer__SPI()

EXTERN_C void boot_PostgreSQL__InServer__SPI ( pTHX_ CV cv)

Referenced by select_perl_context().

◆ boot_PostgreSQL__InServer__Util()

EXTERN_C void boot_PostgreSQL__InServer__Util ( pTHX_ CV cv)

Referenced by plperl_init_shared_libs().

◆ check_spi_usage_allowed()

static void check_spi_usage_allowed ( void  )
static

Definition at line 3108 of file plperl.c.

3109{
3110 /* see comment in plperl_fini() */
3111 if (plperl_ending)
3112 {
3113 /* simple croak as we don't want to involve PostgreSQL code */
3114 croak("SPI functions can not be used in END blocks");
3115 }
3116
3117 /*
3118 * Disallow SPI usage if we're not executing a fully-compiled plperl
3119 * function. It might seem impossible to get here in that case, but there
3120 * are cases where Perl will try to execute code during compilation. If
3121 * we proceed we are likely to crash trying to dereference the prodesc
3122 * pointer. Working around that might be possible, but it seems unwise
3123 * because it'd allow code execution to happen while validating a
3124 * function, which is undesirable.
3125 */
3127 {
3128 /* simple croak as we don't want to involve PostgreSQL code */
3129 croak("SPI functions can not be used during function compilation");
3130 }
3131}
static bool plperl_ending
Definition plperl.c:239
static plperl_call_data * current_call_data
Definition plperl.c:244
plperl_proc_desc * prodesc
Definition plperl.c:176

References current_call_data, fb(), plperl_ending, and plperl_call_data::prodesc.

Referenced by plperl_return_next(), plperl_spi_commit(), plperl_spi_cursor_close(), plperl_spi_exec(), plperl_spi_exec_prepared(), plperl_spi_execute_fetch_result(), plperl_spi_fetchrow(), plperl_spi_freeplan(), plperl_spi_prepare(), plperl_spi_query(), plperl_spi_query_prepared(), plperl_spi_rollback(), and plperl_sv_to_literal().

◆ compile_plperl_function()

static plperl_proc_desc * compile_plperl_function ( Oid  fn_oid,
bool  is_trigger,
bool  is_event_trigger 
)
static

Definition at line 2717 of file plperl.c.

2718{
2721 plperl_proc_key proc_key;
2722 plperl_proc_ptr *proc_ptr;
2723 plperl_proc_desc *volatile prodesc = NULL;
2724 volatile MemoryContext proc_cxt = NULL;
2727
2728 /* We'll need the pg_proc tuple in any case... */
2731 elog(ERROR, "cache lookup failed for function %u", fn_oid);
2733
2734 /*
2735 * Try to find function in plperl_proc_hash. The reason for this
2736 * overcomplicated-seeming lookup procedure is that we don't know whether
2737 * it's plperl or plperlu, and don't want to spend a lookup in pg_language
2738 * to find out.
2739 */
2740 proc_key.proc_id = fn_oid;
2741 proc_key.is_trigger = is_trigger;
2742 proc_key.user_id = GetUserId();
2743 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2744 HASH_FIND, NULL);
2745 if (validate_plperl_function(proc_ptr, procTup))
2746 {
2747 /* Found valid plperl entry */
2749 return proc_ptr->proc_ptr;
2750 }
2751
2752 /* If not found or obsolete, maybe it's plperlu */
2753 proc_key.user_id = InvalidOid;
2754 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2755 HASH_FIND, NULL);
2756 if (validate_plperl_function(proc_ptr, procTup))
2757 {
2758 /* Found valid plperlu entry */
2760 return proc_ptr->proc_ptr;
2761 }
2762
2763 /************************************************************
2764 * If we haven't found it in the hashtable, we analyze
2765 * the function's arguments and return type and store
2766 * the in-/out-functions in the prodesc block,
2767 * then we load the procedure into the Perl interpreter,
2768 * and last we create a new hashtable entry for it.
2769 ************************************************************/
2770
2771 /* Set a callback for reporting compilation errors */
2776
2777 PG_TRY();
2778 {
2785 bool isnull;
2786 char *proc_source;
2787 MemoryContext oldcontext;
2788
2789 /************************************************************
2790 * Allocate a context that will hold all PG data for the procedure.
2791 ************************************************************/
2793 "PL/Perl function",
2795
2796 /************************************************************
2797 * Allocate and fill a new procedure description block.
2798 * struct prodesc and subsidiary data must all live in proc_cxt.
2799 ************************************************************/
2800 oldcontext = MemoryContextSwitchTo(proc_cxt);
2802 prodesc->proname = pstrdup(NameStr(procStruct->proname));
2804 prodesc->fn_cxt = proc_cxt;
2805 prodesc->fn_refcount = 0;
2806 prodesc->fn_xmin = HeapTupleHeaderGetRawXmin(procTup->t_data);
2807 prodesc->fn_tid = procTup->t_self;
2808 prodesc->nargs = procStruct->pronargs;
2809 prodesc->arg_out_func = (FmgrInfo *) palloc0(prodesc->nargs * sizeof(FmgrInfo));
2810 prodesc->arg_is_rowtype = (bool *) palloc0(prodesc->nargs * sizeof(bool));
2811 prodesc->arg_arraytype = (Oid *) palloc0(prodesc->nargs * sizeof(Oid));
2812 MemoryContextSwitchTo(oldcontext);
2813
2814 /* Remember if function is STABLE/IMMUTABLE */
2815 prodesc->fn_readonly =
2816 (procStruct->provolatile != PROVOLATILE_VOLATILE);
2817
2818 /* Fetch protrftypes */
2820 Anum_pg_proc_protrftypes, &isnull);
2822 prodesc->trftypes = isnull ? NIL : oid_array_to_list(protrftypes_datum);
2823 MemoryContextSwitchTo(oldcontext);
2824
2825 /************************************************************
2826 * Lookup the pg_language tuple by Oid
2827 ************************************************************/
2829 ObjectIdGetDatum(procStruct->prolang));
2831 elog(ERROR, "cache lookup failed for language %u",
2832 procStruct->prolang);
2834 prodesc->lang_oid = langStruct->oid;
2835 prodesc->lanpltrusted = langStruct->lanpltrusted;
2837
2838 /************************************************************
2839 * Get the required information for input conversion of the
2840 * return value.
2841 ************************************************************/
2842 if (!is_trigger && !is_event_trigger)
2843 {
2844 Oid rettype = procStruct->prorettype;
2845
2848 elog(ERROR, "cache lookup failed for type %u", rettype);
2850
2851 /* Disallow pseudotype result, except VOID or RECORD */
2852 if (typeStruct->typtype == TYPTYPE_PSEUDO)
2853 {
2854 if (rettype == VOIDOID ||
2855 rettype == RECORDOID)
2856 /* okay */ ;
2857 else if (rettype == TRIGGEROID ||
2858 rettype == EVENT_TRIGGEROID)
2859 ereport(ERROR,
2861 errmsg("trigger functions can only be called "
2862 "as triggers")));
2863 else
2864 ereport(ERROR,
2866 errmsg("PL/Perl functions cannot return type %s",
2867 format_type_be(rettype))));
2868 }
2869
2870 prodesc->result_oid = rettype;
2871 prodesc->fn_retisset = procStruct->proretset;
2872 prodesc->fn_retistuple = type_is_rowtype(rettype);
2874
2875 fmgr_info_cxt(typeStruct->typinput,
2876 &(prodesc->result_in_func),
2877 proc_cxt);
2879
2881 }
2882
2883 /************************************************************
2884 * Get the required information for output conversion
2885 * of all procedure arguments
2886 ************************************************************/
2887 if (!is_trigger && !is_event_trigger)
2888 {
2889 int i;
2890
2891 for (i = 0; i < prodesc->nargs; i++)
2892 {
2893 Oid argtype = procStruct->proargtypes.values[i];
2894
2897 elog(ERROR, "cache lookup failed for type %u", argtype);
2899
2900 /* Disallow pseudotype argument, except RECORD */
2901 if (typeStruct->typtype == TYPTYPE_PSEUDO &&
2902 argtype != RECORDOID)
2903 ereport(ERROR,
2905 errmsg("PL/Perl functions cannot accept type %s",
2906 format_type_be(argtype))));
2907
2908 if (type_is_rowtype(argtype))
2909 prodesc->arg_is_rowtype[i] = true;
2910 else
2911 {
2912 prodesc->arg_is_rowtype[i] = false;
2913 fmgr_info_cxt(typeStruct->typoutput,
2914 &(prodesc->arg_out_func[i]),
2915 proc_cxt);
2916 }
2917
2918 /* Identify array-type arguments */
2920 prodesc->arg_arraytype[i] = argtype;
2921 else
2922 prodesc->arg_arraytype[i] = InvalidOid;
2923
2925 }
2926 }
2927
2928 /************************************************************
2929 * create the text of the anonymous subroutine.
2930 * we do not use a named subroutine so that we can call directly
2931 * through the reference.
2932 ************************************************************/
2935 proc_source = TextDatumGetCString(prosrcdatum);
2936
2937 /************************************************************
2938 * Create the procedure in the appropriate interpreter
2939 ************************************************************/
2940
2942
2943 prodesc->interp = plperl_active_interp;
2944
2945 plperl_create_sub(prodesc, proc_source, fn_oid);
2946
2948
2949 pfree(proc_source);
2950
2951 if (!prodesc->reference) /* can this happen? */
2952 elog(ERROR, "could not create PL/Perl internal procedure");
2953
2954 /************************************************************
2955 * OK, link the procedure into the correct hashtable entry.
2956 * Note we assume that the hashtable entry either doesn't exist yet,
2957 * or we already cleared its proc_ptr during the validation attempts
2958 * above. So no need to decrement an old refcount here.
2959 ************************************************************/
2960 proc_key.user_id = prodesc->lanpltrusted ? GetUserId() : InvalidOid;
2961
2962 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2963 HASH_ENTER, NULL);
2964 /* We assume these two steps can't throw an error: */
2965 proc_ptr->proc_ptr = prodesc;
2967 }
2968 PG_CATCH();
2969 {
2970 /*
2971 * If we got as far as creating a reference, we should be able to use
2972 * free_plperl_function() to clean up. If not, then at most we have
2973 * some PG memory resources in proc_cxt, which we can just delete.
2974 */
2975 if (prodesc && prodesc->reference)
2976 free_plperl_function(prodesc);
2977 else if (proc_cxt)
2979
2980 /* Be sure to restore the previous interpreter, too, for luck */
2982
2983 PG_RE_THROW();
2984 }
2985 PG_END_TRY();
2986
2987 /* restore previous error callback */
2989
2991
2992 return prodesc;
2993}
#define TextDatumGetCString(d)
Definition builtins.h:99
#define NameStr(name)
Definition c.h:837
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition dynahash.c:952
ErrorContextCallback * error_context_stack
Definition elog.c:99
#define PG_RE_THROW()
Definition elog.h:405
#define PG_TRY(...)
Definition elog.h:372
#define PG_END_TRY(...)
Definition elog.h:397
#define PG_CATCH(...)
Definition elog.h:382
#define elog(elevel,...)
Definition elog.h:226
#define palloc0_object(type)
Definition fe_memutils.h:75
void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt)
Definition fmgr.c:139
char * format_type_be(Oid type_oid)
@ HASH_FIND
Definition hsearch.h:113
@ HASH_ENTER
Definition hsearch.h:114
#define HeapTupleIsValid(tuple)
Definition htup.h:78
static TransactionId HeapTupleHeaderGetRawXmin(const HeapTupleHeaderData *tup)
static void * GETSTRUCT(const HeapTupleData *tuple)
bool type_is_rowtype(Oid typid)
Definition lsyscache.c:2877
Oid getTypeIOParam(HeapTuple typeTuple)
Definition lsyscache.c:2523
char * pstrdup(const char *in)
Definition mcxt.c:1781
void pfree(void *pointer)
Definition mcxt.c:1616
void * palloc0(Size size)
Definition mcxt.c:1417
MemoryContext TopMemoryContext
Definition mcxt.c:166
void MemoryContextDelete(MemoryContext context)
Definition mcxt.c:472
void MemoryContextSetIdentifier(MemoryContext context, const char *id)
Definition mcxt.c:661
#define AllocSetContextCreate
Definition memutils.h:129
#define ALLOCSET_SMALL_SIZES
Definition memutils.h:170
Oid GetUserId(void)
Definition miscinit.c:470
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition palloc.h:124
END_CATALOG_STRUCT typedef FormData_pg_language * Form_pg_language
Definition pg_language.h:69
#define NIL
Definition pg_list.h:68
List * oid_array_to_list(Datum datum)
Definition pg_proc.c:1230
END_CATALOG_STRUCT typedef FormData_pg_proc * Form_pg_proc
Definition pg_proc.h:140
END_CATALOG_STRUCT typedef FormData_pg_type * Form_pg_type
Definition pg_type.h:265
static void plperl_create_sub(plperl_proc_desc *desc, const char *s, Oid fn_oid)
Definition plperl.c:2097
#define increment_prodesc_refcount(prodesc)
Definition plperl.c:130
static void free_plperl_function(plperl_proc_desc *prodesc)
Definition plperl.c:2699
static void select_perl_context(bool trusted)
Definition plperl.c:556
static void plperl_compile_callback(void *arg)
Definition plperl.c:4157
static bool validate_plperl_function(plperl_proc_ptr *proc_ptr, HeapTuple procTup)
Definition plperl.c:2670
static void activate_interpreter(plperl_interp_desc *interp_desc)
Definition plperl.c:687
static Datum ObjectIdGetDatum(Oid X)
Definition postgres.h:252
#define InvalidOid
struct ErrorContextCallback * previous
Definition elog.h:297
char * proname
Definition plperl.c:105
FmgrInfo result_in_func
Definition plperl.c:121
unsigned long fn_refcount
Definition plperl.c:107
MemoryContext fn_cxt
Definition plperl.c:106
bool fn_retisarray
Definition plperl.c:118
FmgrInfo * arg_out_func
Definition plperl.c:125
Oid * arg_arraytype
Definition plperl.c:127
ItemPointerData fn_tid
Definition plperl.c:109
plperl_interp_desc * interp
Definition plperl.c:111
bool fn_retistuple
Definition plperl.c:116
TransactionId fn_xmin
Definition plperl.c:108
bool * arg_is_rowtype
Definition plperl.c:126
Oid result_typioparam
Definition plperl.c:122
List * trftypes
Definition plperl.c:114
bool lanpltrusted
Definition plperl.c:115
plperl_proc_desc * proc_ptr
Definition plperl.c:167
void ReleaseSysCache(HeapTuple tuple)
Definition syscache.c:264
Datum SysCacheGetAttrNotNull(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber)
Definition syscache.c:625
HeapTuple SearchSysCache1(SysCacheIdentifier cacheId, Datum key1)
Definition syscache.c:220
Datum SysCacheGetAttr(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
Definition syscache.c:595

References activate_interpreter(), ALLOCSET_SMALL_SIZES, AllocSetContextCreate, ErrorContextCallback::arg, plperl_proc_desc::arg_arraytype, plperl_proc_desc::arg_is_rowtype, plperl_proc_desc::arg_out_func, elog, ereport, errcode(), errmsg, ERROR, error_context_stack, fb(), fmgr_info_cxt(), plperl_proc_desc::fn_cxt, plperl_proc_desc::fn_readonly, plperl_proc_desc::fn_refcount, plperl_proc_desc::fn_retisarray, plperl_proc_desc::fn_retisset, plperl_proc_desc::fn_retistuple, plperl_proc_desc::fn_tid, plperl_proc_desc::fn_xmin, Form_pg_language, Form_pg_proc, Form_pg_type, format_type_be(), free_plperl_function(), GETSTRUCT(), getTypeIOParam(), GetUserId(), HASH_ENTER, HASH_FIND, hash_search(), HeapTupleHeaderGetRawXmin(), HeapTupleIsValid, i, increment_prodesc_refcount, plperl_proc_desc::interp, InvalidOid, plperl_proc_key::is_trigger, plperl_proc_desc::lang_oid, plperl_proc_desc::lanpltrusted, MemoryContextDelete(), MemoryContextSetIdentifier(), MemoryContextSwitchTo(), NameStr, plperl_proc_desc::nargs, NIL, ObjectIdGetDatum(), oid_array_to_list(), palloc0(), palloc0_object, pfree(), PG_CATCH, PG_END_TRY, PG_RE_THROW, PG_TRY, plperl_active_interp, plperl_compile_callback(), plperl_create_sub(), plperl_proc_hash, ErrorContextCallback::previous, plperl_proc_key::proc_id, plperl_proc_ptr::proc_ptr, plperl_proc_desc::proname, pstrdup(), plperl_proc_desc::reference, ReleaseSysCache(), plperl_proc_desc::result_in_func, plperl_proc_desc::result_oid, plperl_proc_desc::result_typioparam, SearchSysCache1(), select_perl_context(), SysCacheGetAttr(), SysCacheGetAttrNotNull(), TextDatumGetCString, TopMemoryContext, plperl_proc_desc::trftypes, type_is_rowtype(), plperl_proc_key::user_id, and validate_plperl_function().

Referenced by plperl_event_trigger_handler(), plperl_func_handler(), plperl_trigger_handler(), and plperl_validator().

◆ free_plperl_function()

static void free_plperl_function ( plperl_proc_desc prodesc)
static

Definition at line 2699 of file plperl.c.

2700{
2701 Assert(prodesc->fn_refcount == 0);
2702 /* Release CODE reference, if we have one, from the appropriate interp */
2703 if (prodesc->reference)
2704 {
2706
2707 activate_interpreter(prodesc->interp);
2710 }
2711 /* Release all PG-owned data for this proc */
2712 MemoryContextDelete(prodesc->fn_cxt);
2713}
static void SvREFCNT_dec_current(SV *sv)
Definition plperl.c:315

References activate_interpreter(), Assert, fb(), plperl_proc_desc::fn_cxt, plperl_proc_desc::fn_refcount, plperl_proc_desc::interp, MemoryContextDelete(), plperl_active_interp, plperl_proc_desc::reference, and SvREFCNT_dec_current().

Referenced by compile_plperl_function().

◆ get_perl_array_ref()

static SV * get_perl_array_ref ( SV sv)
static

Definition at line 1141 of file plperl.c.

1142{
1143 dTHX;
1144
1145 if (SvOK(sv) && SvROK(sv))
1146 {
1147 if (SvTYPE(SvRV(sv)) == SVt_PVAV)
1148 return sv;
1149 else if (sv_isa(sv, "PostgreSQL::InServer::ARRAY"))
1150 {
1151 HV *hv = (HV *) SvRV(sv);
1152 SV **sav = hv_fetch_string(hv, "array");
1153
1154 if (*sav && SvOK(*sav) && SvROK(*sav) &&
1155 SvTYPE(SvRV(*sav)) == SVt_PVAV)
1156 return *sav;
1157
1158 elog(ERROR, "could not get array reference from PostgreSQL::InServer::ARRAY object");
1159 }
1160 }
1161 return NULL;
1162}
static SV ** hv_fetch_string(HV *hv, const char *key)
Definition plperl.c:4122

References dTHX, elog, ERROR, fb(), and hv_fetch_string().

Referenced by array_to_datum_internal(), plperl_func_handler(), and plperl_sv_to_datum().

◆ hek2cstr()

static char * hek2cstr ( HE he)
static

Definition at line 326 of file plperl.c.

327{
328 dTHX;
329 char *ret;
330 SV *sv;
331
332 /*
333 * HeSVKEY_force will return a temporary mortal SV*, so we need to make
334 * sure to free it with ENTER/SAVE/FREE/LEAVE
335 */
336 ENTER;
337 SAVETMPS;
338
339 /*-------------------------
340 * Unfortunately, while HeUTF8 is true for most things > 256, for values
341 * 128..255 it's not, but perl will treat them as unicode code points if
342 * the utf8 flag is not set ( see The "Unicode Bug" in perldoc perlunicode
343 * for more)
344 *
345 * So if we did the expected:
346 * if (HeUTF8(he))
347 * utf_u2e(key...);
348 * else // must be ascii
349 * return HePV(he);
350 * we won't match columns with codepoints from 128..255
351 *
352 * For a more concrete example given a column with the name of the unicode
353 * codepoint U+00ae (registered sign) and a UTF8 database and the perl
354 * return_next { "\N{U+00ae}=>'text } would always fail as heUTF8 returns
355 * 0 and HePV() would give us a char * with 1 byte contains the decimal
356 * value 174
357 *
358 * Perl has the brains to know when it should utf8 encode 174 properly, so
359 * here we force it into an SV so that perl will figure it out and do the
360 * right thing
361 *-------------------------
362 */
363
365 if (HeUTF8(he))
366 SvUTF8_on(sv);
367 ret = sv2cstr(sv);
368
369 /* free sv */
370 FREETMPS;
371 LEAVE;
372
373 return ret;
374}
static char * sv2cstr(SV *sv)
Definition plperl.h:89
#define HeUTF8(he)

References dTHX, fb(), HeUTF8, and sv2cstr().

Referenced by plperl_build_tuple_result(), and plperl_modify_tuple().

◆ hv_fetch_string()

static SV ** hv_fetch_string ( HV hv,
const char key 
)
static

Definition at line 4122 of file plperl.c.

4123{
4124 dTHX;
4125 int32 hlen;
4126 char *hkey;
4127 SV **ret;
4128
4129 hkey = pg_server_to_any(key, strlen(key), PG_UTF8);
4130
4131 /* See notes in hv_store_string */
4132 hlen = -(int) strlen(hkey);
4133 ret = hv_fetch(hv, hkey, hlen, 0);
4134
4135 if (hkey != key)
4136 pfree(hkey);
4137
4138 return ret;
4139}
int32_t int32
Definition c.h:614
#define PG_UTF8
Definition mbprint.c:43
char * pg_server_to_any(const char *s, int len, int encoding)
Definition mbutils.c:760

References dTHX, fb(), pfree(), pg_server_to_any(), and PG_UTF8.

Referenced by get_perl_array_ref(), plperl_modify_tuple(), and plperl_spi_exec_prepared().

◆ hv_store_string()

static SV ** hv_store_string ( HV hv,
const char key,
SV val 
)
static

Definition at line 4095 of file plperl.c.

4096{
4097 dTHX;
4098 int32 hlen;
4099 char *hkey;
4100 SV **ret;
4101
4102 hkey = pg_server_to_any(key, strlen(key), PG_UTF8);
4103
4104 /*
4105 * hv_store() recognizes a negative klen parameter as meaning a UTF-8
4106 * encoded key.
4107 */
4108 hlen = -(int) strlen(hkey);
4109 ret = hv_store(hv, hkey, hlen, val, 0);
4110
4111 if (hkey != key)
4112 pfree(hkey);
4113
4114 return ret;
4115}
long val
Definition informix.c:689

References dTHX, fb(), pfree(), pg_server_to_any(), PG_UTF8, and val.

Referenced by plperl_create_sub(), plperl_event_trigger_build_args(), plperl_hash_from_tuple(), plperl_spi_execute_fetch_result(), and plperl_trigger_build_args().

◆ make_array_ref()

static SV * make_array_ref ( plperl_array_info info,
int  first,
int  last 
)
static

Definition at line 1596 of file plperl.c.

1597{
1598 dTHX;
1599 int i;
1600 AV *result = newAV();
1601
1602 for (i = first; i < last; i++)
1603 {
1604 if (info->nulls[i])
1605 {
1606 /*
1607 * We can't use &PL_sv_undef here. See "AVs, HVs and undefined
1608 * values" in perlguts.
1609 */
1610 av_push(result, newSV(0));
1611 }
1612 else
1613 {
1614 Datum itemvalue = info->elements[i];
1615
1616 if (info->transform_proc.fn_oid)
1618 else if (info->elem_is_rowtype)
1619 /* Handle composite type elements */
1621 else
1622 {
1623 char *val = OutputFunctionCall(&info->proc, itemvalue);
1624
1625 av_push(result, cstr2sv(val));
1626 }
1627 }
1628 }
1629 return newRV_noinc((SV *) result);
1630}
char * OutputFunctionCall(FmgrInfo *flinfo, Datum val)
Definition fmgr.c:1684
#define FunctionCall1(flinfo, arg1)
Definition fmgr.h:702
static SV * plperl_hash_from_datum(Datum attr)
Definition plperl.c:2997
static SV * cstr2sv(const char *str)
Definition plperl.h:147
static Pointer DatumGetPointer(Datum X)
Definition postgres.h:332
#define newRV_noinc(sv)
Definition ppport.h:15247
Oid fn_oid
Definition fmgr.h:59
bool elem_is_rowtype
Definition plperl.c:214
FmgrInfo transform_proc
Definition plperl.c:219
FmgrInfo proc
Definition plperl.c:218
Datum * elements
Definition plperl.c:215

References cstr2sv(), DatumGetPointer(), dTHX, plperl_array_info::elem_is_rowtype, plperl_array_info::elements, fb(), FmgrInfo::fn_oid, FunctionCall1, i, newRV_noinc, plperl_array_info::nulls, OutputFunctionCall(), plperl_hash_from_datum(), plperl_array_info::proc, plperl_array_info::transform_proc, and val.

Referenced by split_array().

◆ PG_FUNCTION_INFO_V1() [1/6]

PG_FUNCTION_INFO_V1 ( plperl_call_handler  )

◆ PG_FUNCTION_INFO_V1() [2/6]

PG_FUNCTION_INFO_V1 ( plperl_inline_handler  )

◆ PG_FUNCTION_INFO_V1() [3/6]

PG_FUNCTION_INFO_V1 ( plperl_validator  )

◆ PG_FUNCTION_INFO_V1() [4/6]

PG_FUNCTION_INFO_V1 ( plperlu_call_handler  )

◆ PG_FUNCTION_INFO_V1() [5/6]

PG_FUNCTION_INFO_V1 ( plperlu_inline_handler  )

◆ PG_FUNCTION_INFO_V1() [6/6]

PG_FUNCTION_INFO_V1 ( plperlu_validator  )

◆ PG_MODULE_MAGIC_EXT()

PG_MODULE_MAGIC_EXT ( name = "plperl",
version = PG_VERSION 
)

◆ plperl_array_to_datum()

static Datum plperl_array_to_datum ( SV src,
Oid  typid,
int32  typmod 
)
static

Definition at line 1260 of file plperl.c.

1261{
1262 dTHX;
1263 AV *nav = (AV *) SvRV(src);
1264 ArrayBuildState *astate = NULL;
1265 Oid elemtypid;
1266 FmgrInfo finfo;
1267 Oid typioparam;
1268 int dims[MAXDIM];
1269 int lbs[MAXDIM];
1270 int ndims = 1;
1271 int i;
1272
1273 elemtypid = get_element_type(typid);
1274 if (!elemtypid)
1275 ereport(ERROR,
1277 errmsg("cannot convert Perl array to non-array type %s",
1278 format_type_be(typid))));
1279
1280 _sv_to_datum_finfo(elemtypid, &finfo, &typioparam);
1281
1282 memset(dims, 0, sizeof(dims));
1283 dims[0] = av_len(nav) + 1;
1284
1286 &ndims, dims, 1,
1287 elemtypid, typmod,
1288 &finfo, typioparam);
1289
1290 /* ensure we get zero-D array for no inputs, as per PG convention */
1291 if (astate == NULL)
1293
1294 for (i = 0; i < ndims; i++)
1295 lbs[i] = 1;
1296
1297 return makeMdArrayResult(astate, ndims, dims, lbs,
1298 CurrentMemoryContext, true);
1299}
ArrayType * construct_empty_array(Oid elmtype)
Datum makeMdArrayResult(ArrayBuildState *astate, int ndims, int *dims, int *lbs, MemoryContext rcontext, bool release)
Oid get_element_type(Oid typid)
Definition lsyscache.c:2981
static void _sv_to_datum_finfo(Oid typid, FmgrInfo *finfo, Oid *typioparam)
Definition plperl.c:1303
static Datum PointerGetDatum(const void *X)
Definition postgres.h:342

References _sv_to_datum_finfo(), array_to_datum_internal(), construct_empty_array(), CurrentMemoryContext, dTHX, ereport, errcode(), errmsg, ERROR, fb(), format_type_be(), get_element_type(), i, makeMdArrayResult(), MAXDIM, and PointerGetDatum().

Referenced by plperl_sv_to_datum().

◆ plperl_build_tuple_result()

static HeapTuple plperl_build_tuple_result ( HV perlhash,
TupleDesc  td 
)
static

Definition at line 1078 of file plperl.c.

1079{
1080 dTHX;
1081 Datum *values;
1082 bool *nulls;
1083 HE *he;
1084 HeapTuple tup;
1085
1087 nulls = palloc_array(bool, td->natts);
1088 memset(nulls, true, sizeof(bool) * td->natts);
1089
1091 while ((he = hv_iternext(perlhash)))
1092 {
1093 SV *val = HeVAL(he);
1094 char *key = hek2cstr(he);
1095 int attn = SPI_fnumber(td, key);
1096 Form_pg_attribute attr = TupleDescAttr(td, attn - 1);
1097
1099 ereport(ERROR,
1101 errmsg("Perl hash contains nonexistent column \"%s\"",
1102 key)));
1103 if (attn <= 0)
1104 ereport(ERROR,
1106 errmsg("cannot set system attribute \"%s\"",
1107 key)));
1108
1110 attr->atttypid,
1111 attr->atttypmod,
1112 NULL,
1113 NULL,
1114 InvalidOid,
1115 &nulls[attn - 1]);
1116
1117 pfree(key);
1118 }
1120
1121 tup = heap_form_tuple(td, values, nulls);
1122 pfree(values);
1123 pfree(nulls);
1124 return tup;
1125}
static Datum values[MAXATTR]
Definition bootstrap.c:188
#define palloc_array(type, count)
Definition fe_memutils.h:76
#define palloc0_array(type, count)
Definition fe_memutils.h:77
HeapTuple heap_form_tuple(TupleDesc tupleDescriptor, const Datum *values, const bool *isnull)
Definition heaptuple.c:1037
FormData_pg_attribute * Form_pg_attribute
static char * hek2cstr(HE *he)
Definition plperl.c:326
int SPI_fnumber(TupleDesc tupdesc, const char *fname)
Definition spi.c:1176
#define SPI_ERROR_NOATTRIBUTE
Definition spi.h:76
static FormData_pg_attribute * TupleDescAttr(TupleDesc tupdesc, int i)
Definition tupdesc.h:178

References dTHX, ereport, errcode(), errmsg, ERROR, fb(), heap_form_tuple(), hek2cstr(), InvalidOid, TupleDescData::natts, palloc0_array, palloc_array, pfree(), plperl_sv_to_datum(), SPI_ERROR_NOATTRIBUTE, SPI_fnumber(), TupleDescAttr(), val, and values.

Referenced by plperl_hash_to_datum(), and plperl_return_next_internal().

◆ plperl_call_handler()

Datum plperl_call_handler ( PG_FUNCTION_ARGS  )

Definition at line 1855 of file plperl.c.

1856{
1857 Datum retval = (Datum) 0;
1861
1862 /* Initialize current-call status record */
1863 MemSet(&this_call_data, 0, sizeof(this_call_data));
1864 this_call_data.fcinfo = fcinfo;
1865
1866 PG_TRY();
1867 {
1869 if (CALLED_AS_TRIGGER(fcinfo))
1870 retval = plperl_trigger_handler(fcinfo);
1871 else if (CALLED_AS_EVENT_TRIGGER(fcinfo))
1872 {
1874 retval = (Datum) 0;
1875 }
1876 else
1877 retval = plperl_func_handler(fcinfo);
1878 }
1879 PG_FINALLY();
1880 {
1883 if (this_call_data.prodesc)
1885 }
1886 PG_END_TRY();
1887
1888 return retval;
1889}
#define MemSet(start, val, len)
Definition c.h:1109
#define PG_FINALLY(...)
Definition elog.h:389
#define CALLED_AS_EVENT_TRIGGER(fcinfo)
static void plperl_event_trigger_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2634
static Datum plperl_func_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2404
#define decrement_prodesc_refcount(prodesc)
Definition plperl.c:132
static Datum plperl_trigger_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2522
#define CALLED_AS_TRIGGER(fcinfo)
Definition trigger.h:26

References activate_interpreter(), CALLED_AS_EVENT_TRIGGER, CALLED_AS_TRIGGER, current_call_data, decrement_prodesc_refcount, fb(), MemSet, PG_END_TRY, PG_FINALLY, PG_TRY, plperl_active_interp, plperl_event_trigger_handler(), plperl_func_handler(), and plperl_trigger_handler().

Referenced by plperlu_call_handler().

◆ plperl_call_perl_event_trigger_func()

static void plperl_call_perl_event_trigger_func ( plperl_proc_desc desc,
FunctionCallInfo  fcinfo,
SV td 
)
static

Definition at line 2343 of file plperl.c.

2346{
2347 dTHX;
2348 dSP;
2349 SV *retval,
2350 *TDsv;
2351 int count;
2352
2353 ENTER;
2354 SAVETMPS;
2355
2356 TDsv = get_sv("main::_TD", 0);
2357 if (!TDsv)
2358 ereport(ERROR,
2360 errmsg("couldn't fetch $_TD")));
2361
2362 save_item(TDsv); /* local $_TD */
2363 sv_setsv(TDsv, td);
2364
2365 PUSHMARK(sp);
2366 PUTBACK;
2367
2368 /* Do NOT use G_KEEPERR here */
2369 count = call_sv(desc->reference, G_SCALAR | G_EVAL);
2370
2371 SPAGAIN;
2372
2373 if (count != 1)
2374 {
2375 PUTBACK;
2376 FREETMPS;
2377 LEAVE;
2378 ereport(ERROR,
2380 errmsg("didn't get a return item from trigger function")));
2381 }
2382
2383 if (SvTRUE(ERRSV))
2384 {
2385 (void) POPs;
2386 PUTBACK;
2387 FREETMPS;
2388 LEAVE;
2389 /* XXX need to find a way to determine a better errcode here */
2390 ereport(ERROR,
2393 }
2394
2395 retval = newSVsv(POPs);
2396 (void) retval; /* silence compiler warning */
2397
2398 PUTBACK;
2399 FREETMPS;
2400 LEAVE;
2401}
static char * strip_trailing_ws(const char *msg)
Definition plperl.c:1064
#define call_sv
Definition ppport.h:14994
#define get_sv
Definition ppport.h:12463
#define ERRSV
Definition ppport.h:12444

References call_sv, dTHX, ereport, errcode(), errmsg, ERROR, ERRSV, fb(), get_sv, plperl_proc_desc::reference, strip_trailing_ws(), and sv2cstr().

Referenced by plperl_event_trigger_handler().

◆ plperl_call_perl_func()

static SV * plperl_call_perl_func ( plperl_proc_desc desc,
FunctionCallInfo  fcinfo 
)
static

Definition at line 2182 of file plperl.c.

2183{
2184 dTHX;
2185 dSP;
2186 SV *retval;
2187 int i;
2188 int count;
2189 Oid *argtypes = NULL;
2190 int nargs = 0;
2191
2192 ENTER;
2193 SAVETMPS;
2194
2195 PUSHMARK(SP);
2196 EXTEND(sp, desc->nargs);
2197
2198 /* Get signature for true functions; inline blocks have no args. */
2199 if (fcinfo->flinfo->fn_oid)
2200 get_func_signature(fcinfo->flinfo->fn_oid, &argtypes, &nargs);
2201 Assert(nargs == desc->nargs);
2202
2203 for (i = 0; i < desc->nargs; i++)
2204 {
2205 if (fcinfo->args[i].isnull)
2207 else if (desc->arg_is_rowtype[i])
2208 {
2209 SV *sv = plperl_hash_from_datum(fcinfo->args[i].value);
2210
2212 }
2213 else
2214 {
2215 SV *sv;
2216 Oid funcid;
2217
2218 if (OidIsValid(desc->arg_arraytype[i]))
2221 sv = (SV *) DatumGetPointer(OidFunctionCall1(funcid, fcinfo->args[i].value));
2222 else
2223 {
2224 char *tmp;
2225
2226 tmp = OutputFunctionCall(&(desc->arg_out_func[i]),
2227 fcinfo->args[i].value);
2228 sv = cstr2sv(tmp);
2229 pfree(tmp);
2230 }
2231
2233 }
2234 }
2235 PUTBACK;
2236
2237 /* Do NOT use G_KEEPERR here */
2238 count = call_sv(desc->reference, G_SCALAR | G_EVAL);
2239
2240 SPAGAIN;
2241
2242 if (count != 1)
2243 {
2244 PUTBACK;
2245 FREETMPS;
2246 LEAVE;
2247 ereport(ERROR,
2249 errmsg("didn't get a return item from function")));
2250 }
2251
2252 if (SvTRUE(ERRSV))
2253 {
2254 (void) POPs;
2255 PUTBACK;
2256 FREETMPS;
2257 LEAVE;
2258 /* XXX need to find a way to determine a better errcode here */
2259 ereport(ERROR,
2262 }
2263
2264 retval = newSVsv(POPs);
2265
2266 PUTBACK;
2267 FREETMPS;
2268 LEAVE;
2269
2270 return retval;
2271}
#define OidFunctionCall1(functionId, arg1)
Definition fmgr.h:722
Oid get_func_signature(Oid funcid, Oid **argtypes, int *nargs)
Definition lsyscache.c:1916
Oid get_transform_fromsql(Oid typid, Oid langid, List *trftypes)
Definition lsyscache.c:2340
static SV * plperl_ref_from_pg_array(Datum arg, Oid typid)
Definition plperl.c:1483
#define PL_sv_undef
Definition ppport.h:11780
FmgrInfo * flinfo
Definition fmgr.h:87
NullableDatum args[FLEXIBLE_ARRAY_MEMBER]
Definition fmgr.h:95
Datum value
Definition postgres.h:87

References plperl_proc_desc::arg_arraytype, plperl_proc_desc::arg_is_rowtype, plperl_proc_desc::arg_out_func, FunctionCallInfoBaseData::args, Assert, call_sv, cstr2sv(), current_call_data, DatumGetPointer(), dTHX, ereport, errcode(), errmsg, ERROR, ERRSV, fb(), FunctionCallInfoBaseData::flinfo, FmgrInfo::fn_oid, get_func_signature(), get_transform_fromsql(), i, NullableDatum::isnull, plperl_proc_desc::lang_oid, plperl_proc_desc::nargs, OidFunctionCall1, OidIsValid, OutputFunctionCall(), pfree(), PL_sv_undef, plperl_hash_from_datum(), plperl_ref_from_pg_array(), plperl_call_data::prodesc, plperl_proc_desc::reference, strip_trailing_ws(), sv2cstr(), plperl_proc_desc::trftypes, and NullableDatum::value.

Referenced by plperl_func_handler(), and plperl_inline_handler().

◆ plperl_call_perl_trigger_func()

static SV * plperl_call_perl_trigger_func ( plperl_proc_desc desc,
FunctionCallInfo  fcinfo,
SV td 
)
static

Definition at line 2275 of file plperl.c.

2277{
2278 dTHX;
2279 dSP;
2280 SV *retval,
2281 *TDsv;
2282 int i,
2283 count;
2284 Trigger *tg_trigger = ((TriggerData *) fcinfo->context)->tg_trigger;
2285
2286 ENTER;
2287 SAVETMPS;
2288
2289 TDsv = get_sv("main::_TD", 0);
2290 if (!TDsv)
2291 ereport(ERROR,
2293 errmsg("couldn't fetch $_TD")));
2294
2295 save_item(TDsv); /* local $_TD */
2296 sv_setsv(TDsv, td);
2297
2298 PUSHMARK(sp);
2299 EXTEND(sp, tg_trigger->tgnargs);
2300
2301 for (i = 0; i < tg_trigger->tgnargs; i++)
2302 PUSHs(sv_2mortal(cstr2sv(tg_trigger->tgargs[i])));
2303 PUTBACK;
2304
2305 /* Do NOT use G_KEEPERR here */
2306 count = call_sv(desc->reference, G_SCALAR | G_EVAL);
2307
2308 SPAGAIN;
2309
2310 if (count != 1)
2311 {
2312 PUTBACK;
2313 FREETMPS;
2314 LEAVE;
2315 ereport(ERROR,
2317 errmsg("didn't get a return item from trigger function")));
2318 }
2319
2320 if (SvTRUE(ERRSV))
2321 {
2322 (void) POPs;
2323 PUTBACK;
2324 FREETMPS;
2325 LEAVE;
2326 /* XXX need to find a way to determine a better errcode here */
2327 ereport(ERROR,
2330 }
2331
2332 retval = newSVsv(POPs);
2333
2334 PUTBACK;
2335 FREETMPS;
2336 LEAVE;
2337
2338 return retval;
2339}
int16 tgnargs
Definition reltrigger.h:38
char ** tgargs
Definition reltrigger.h:41

References call_sv, FunctionCallInfoBaseData::context, cstr2sv(), dTHX, ereport, errcode(), errmsg, ERROR, ERRSV, fb(), get_sv, i, plperl_proc_desc::reference, strip_trailing_ws(), sv2cstr(), Trigger::tgargs, and Trigger::tgnargs.

Referenced by plperl_trigger_handler().

◆ plperl_compile_callback()

static void plperl_compile_callback ( void arg)
static

Definition at line 4157 of file plperl.c.

4158{
4159 char *procname = (char *) arg;
4160
4161 if (procname)
4162 errcontext("compilation of PL/Perl function \"%s\"", procname);
4163}
Datum arg
Definition elog.c:1322
#define errcontext
Definition elog.h:198

References arg, and errcontext.

Referenced by compile_plperl_function().

◆ plperl_create_sub()

static void plperl_create_sub ( plperl_proc_desc desc,
const char s,
Oid  fn_oid 
)
static

Definition at line 2097 of file plperl.c.

2098{
2099 dTHX;
2100 dSP;
2101 char subname[NAMEDATALEN + 40];
2102 HV *pragma_hv = newHV();
2103 SV *subref = NULL;
2104 int count;
2105
2106 sprintf(subname, "%s__%u", prodesc->proname, fn_oid);
2107
2109 hv_store_string(pragma_hv, "strict", (SV *) newAV());
2110
2111 ENTER;
2112 SAVETMPS;
2113 PUSHMARK(SP);
2114 EXTEND(SP, 4);
2117
2118 /*
2119 * Use 'false' for $prolog in mkfunc, which is kept for compatibility in
2120 * case a module such as PostgreSQL::PLPerl::NYTprof replaces the function
2121 * compiler.
2122 */
2123 PUSHs(&PL_sv_no);
2125 PUTBACK;
2126
2127 /*
2128 * G_KEEPERR seems to be needed here, else we don't recognize compile
2129 * errors properly. Perhaps it's because there's another level of eval
2130 * inside mkfunc?
2131 */
2132 count = call_pv("PostgreSQL::InServer::mkfunc",
2134 SPAGAIN;
2135
2136 if (count == 1)
2137 {
2138 SV *sub_rv = (SV *) POPs;
2139
2140 if (sub_rv && SvROK(sub_rv) && SvTYPE(SvRV(sub_rv)) == SVt_PVCV)
2141 {
2143 }
2144 }
2145
2146 PUTBACK;
2147 FREETMPS;
2148 LEAVE;
2149
2150 if (SvTRUE(ERRSV))
2151 ereport(ERROR,
2154
2155 if (!subref)
2156 ereport(ERROR,
2158 errmsg("didn't get a CODE reference from compiling function \"%s\"",
2159 prodesc->proname)));
2160
2161 prodesc->reference = subref;
2162}
#define NAMEDATALEN
NameData subname
static SV ** hv_store_string(HV *hv, const char *key, SV *val)
Definition plperl.c:4095
#define sprintf
Definition port.h:262
#define newRV_inc(sv)
Definition ppport.h:15240
#define call_pv
Definition ppport.h:14998
#define PL_sv_no
Definition ppport.h:11779

References call_pv, cstr2sv(), dTHX, ereport, errcode(), errmsg, ERROR, ERRSV, fb(), hv_store_string(), NAMEDATALEN, newRV_inc, newRV_noinc, PL_sv_no, plperl_use_strict, plperl_proc_desc::proname, plperl_proc_desc::reference, sprintf, strip_trailing_ws(), subname, and sv2cstr().

Referenced by compile_plperl_function(), and plperl_inline_handler().

◆ plperl_destroy_interp()

static void plperl_destroy_interp ( PerlInterpreter **  interp)
static

Definition at line 921 of file plperl.c.

922{
923 if (interp && *interp)
924 {
925 /*
926 * Only a very minimal destruction is performed: - just call END
927 * blocks.
928 *
929 * We could call perl_destruct() but we'd need to audit its actions
930 * very carefully and work-around any that impact us. (Calling
931 * sv_clean_objs() isn't an option because it's not part of perl's
932 * public API so isn't portably available.) Meanwhile END blocks can
933 * be used to perform manual cleanup.
934 */
935 dTHX;
936
937 /* Run END blocks - based on perl's perl_destruct() */
939 {
940 dJMPENV;
941 int x = 0;
942
943 JMPENV_PUSH(x);
945 if (PL_endav && !PL_minus_c)
948 }
949 LEAVE;
950 FREETMPS;
951
952 *interp = NULL;
953 }
954}
int x
Definition isn.c:75
#define PERL_UNUSED_VAR(x)
Definition ppport.h:12293

References dTHX, fb(), PERL_UNUSED_VAR, and x.

Referenced by plperl_fini().

◆ plperl_event_trigger_build_args()

static SV * plperl_event_trigger_build_args ( FunctionCallInfo  fcinfo)
static

Definition at line 1747 of file plperl.c.

1748{
1749 dTHX;
1751 HV *hv;
1752
1753 hv = newHV();
1754
1755 tdata = (EventTriggerData *) fcinfo->context;
1756
1757 hv_store_string(hv, "event", cstr2sv(tdata->event));
1759
1760 return newRV_noinc((SV *) hv);
1761}
const char * GetCommandTagName(CommandTag commandTag)
Definition cmdtag.c:47

References FunctionCallInfoBaseData::context, cstr2sv(), dTHX, fb(), GetCommandTagName(), hv_store_string(), and newRV_noinc.

Referenced by plperl_event_trigger_handler().

◆ plperl_event_trigger_handler()

static void plperl_event_trigger_handler ( PG_FUNCTION_ARGS  )
static

Definition at line 2634 of file plperl.c.

2635{
2636 plperl_proc_desc *prodesc;
2637 SV *svTD;
2639
2640 /* Connect to SPI manager */
2641 SPI_connect();
2642
2643 /* Find or compile the function */
2644 prodesc = compile_plperl_function(fcinfo->flinfo->fn_oid, false, true);
2645 current_call_data->prodesc = prodesc;
2647
2648 /* Set a callback for error reporting */
2651 pl_error_context.arg = prodesc->proname;
2653
2654 activate_interpreter(prodesc->interp);
2655
2657 plperl_call_perl_event_trigger_func(prodesc, fcinfo, svTD);
2658
2659 if (SPI_finish() != SPI_OK_FINISH)
2660 elog(ERROR, "SPI_finish() failed");
2661
2662 /* Restore the previous error callback */
2664
2666}
static SV * plperl_event_trigger_build_args(FunctionCallInfo fcinfo)
Definition plperl.c:1747
static void plperl_exec_callback(void *arg)
Definition plperl.c:4145
static plperl_proc_desc * compile_plperl_function(Oid fn_oid, bool is_trigger, bool is_event_trigger)
Definition plperl.c:2717
static void plperl_call_perl_event_trigger_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo, SV *td)
Definition plperl.c:2343
int SPI_connect(void)
Definition spi.c:95
int SPI_finish(void)
Definition spi.c:183
#define SPI_OK_FINISH
Definition spi.h:83

References activate_interpreter(), ErrorContextCallback::arg, compile_plperl_function(), current_call_data, elog, ERROR, error_context_stack, fb(), increment_prodesc_refcount, plperl_proc_desc::interp, plperl_call_perl_event_trigger_func(), plperl_event_trigger_build_args(), plperl_exec_callback(), ErrorContextCallback::previous, plperl_call_data::prodesc, plperl_proc_desc::proname, SPI_connect(), SPI_finish(), SPI_OK_FINISH, and SvREFCNT_dec_current().

Referenced by plperl_call_handler().

◆ plperl_exec_callback()

static void plperl_exec_callback ( void arg)
static

Definition at line 4145 of file plperl.c.

4146{
4147 char *procname = (char *) arg;
4148
4149 if (procname)
4150 errcontext("PL/Perl function \"%s\"", procname);
4151}

References arg, and errcontext.

Referenced by plperl_event_trigger_handler(), plperl_func_handler(), and plperl_trigger_handler().

◆ plperl_fini()

static void plperl_fini ( int  code,
Datum  arg 
)
static

Definition at line 512 of file plperl.c.

513{
515 plperl_interp_desc *interp_desc;
516
517 elog(DEBUG3, "plperl_fini");
518
519 /*
520 * Indicate that perl is terminating. Disables use of spi_* functions when
521 * running END/DESTROY code. See check_spi_usage_allowed(). Could be
522 * enabled in future, with care, using a transaction
523 * http://archives.postgresql.org/pgsql-hackers/2010-01/msg02743.php
524 */
525 plperl_ending = true;
526
527 /* Only perform perl cleanup if we're exiting cleanly */
528 if (code)
529 {
530 elog(DEBUG3, "plperl_fini: skipped");
531 return;
532 }
533
534 /* Zap the "held" interpreter, if we still have it */
536
537 /* Zap any fully-initialized interpreters */
539 while ((interp_desc = hash_seq_search(&hash_seq)) != NULL)
540 {
541 if (interp_desc->interp)
542 {
543 activate_interpreter(interp_desc);
544 plperl_destroy_interp(&interp_desc->interp);
545 }
546 }
547
548 elog(DEBUG3, "plperl_fini: done");
549}
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition dynahash.c:1415
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition dynahash.c:1380
#define DEBUG3
Definition elog.h:28
static void plperl_destroy_interp(PerlInterpreter **)
Definition plperl.c:921

References activate_interpreter(), DEBUG3, elog, fb(), hash_seq_init(), hash_seq_search(), plperl_interp_desc::interp, plperl_destroy_interp(), plperl_ending, plperl_held_interp, and plperl_interp_hash.

Referenced by select_perl_context().

◆ plperl_func_handler()

static Datum plperl_func_handler ( PG_FUNCTION_ARGS  )
static

Definition at line 2404 of file plperl.c.

2405{
2406 bool nonatomic;
2407 plperl_proc_desc *prodesc;
2408 SV *perlret;
2409 Datum retval = 0;
2410 ReturnSetInfo *rsi;
2412
2413 nonatomic = fcinfo->context &&
2414 IsA(fcinfo->context, CallContext) &&
2415 !castNode(CallContext, fcinfo->context)->atomic;
2416
2418
2419 prodesc = compile_plperl_function(fcinfo->flinfo->fn_oid, false, false);
2420 current_call_data->prodesc = prodesc;
2422
2423 /* Set a callback for error reporting */
2426 pl_error_context.arg = prodesc->proname;
2428
2429 rsi = (ReturnSetInfo *) fcinfo->resultinfo;
2430
2431 if (prodesc->fn_retisset)
2432 {
2433 /* Check context before allowing the call to go through */
2434 if (!rsi || !IsA(rsi, ReturnSetInfo))
2435 ereport(ERROR,
2437 errmsg("set-valued function called in context that cannot accept a set")));
2438
2439 if (!(rsi->allowedModes & SFRM_Materialize))
2440 ereport(ERROR,
2442 errmsg("materialize mode required, but it is not allowed in this context")));
2443 }
2444
2445 activate_interpreter(prodesc->interp);
2446
2447 perlret = plperl_call_perl_func(prodesc, fcinfo);
2448
2449 /************************************************************
2450 * Disconnect from SPI manager and then create the return
2451 * values datum (if the input function does a palloc for it
2452 * this must not be allocated in the SPI memory context
2453 * because SPI_finish would free it).
2454 ************************************************************/
2455 if (SPI_finish() != SPI_OK_FINISH)
2456 elog(ERROR, "SPI_finish() failed");
2457
2458 if (prodesc->fn_retisset)
2459 {
2460 SV *sav;
2461
2462 /*
2463 * If the Perl function returned an arrayref, we pretend that it
2464 * called return_next() for each element of the array, to handle old
2465 * SRFs that didn't know about return_next(). Any other sort of return
2466 * value is an error, except undef which means return an empty set.
2467 */
2469 if (sav)
2470 {
2471 dTHX;
2472 int i = 0;
2473 SV **svp = 0;
2474 AV *rav = (AV *) SvRV(sav);
2475
2476 while ((svp = av_fetch(rav, i, FALSE)) != NULL)
2477 {
2479 i++;
2480 }
2481 }
2482 else if (SvOK(perlret))
2483 {
2484 ereport(ERROR,
2486 errmsg("set-returning PL/Perl function must return "
2487 "reference to array or use return_next")));
2488 }
2489
2492 {
2495 }
2496 retval = (Datum) 0;
2497 }
2498 else if (prodesc->result_oid)
2499 {
2500 retval = plperl_sv_to_datum(perlret,
2501 prodesc->result_oid,
2502 -1,
2503 fcinfo,
2504 &prodesc->result_in_func,
2505 prodesc->result_typioparam,
2506 &fcinfo->isnull);
2507
2508 if (fcinfo->isnull && rsi && IsA(rsi, ReturnSetInfo))
2509 rsi->isDone = ExprEndResult;
2510 }
2511
2512 /* Restore the previous error callback */
2514
2516
2517 return retval;
2518}
@ ExprEndResult
Definition execnodes.h:340
@ SFRM_Materialize
Definition execnodes.h:352
#define IsA(nodeptr, _type_)
Definition nodes.h:164
#define castNode(_type_, nodeptr)
Definition nodes.h:182
static SV * plperl_call_perl_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo)
Definition plperl.c:2182
static void plperl_return_next_internal(SV *sv)
Definition plperl.c:3277
int SPI_connect_ext(int options)
Definition spi.c:101
#define SPI_OPT_NONATOMIC
Definition spi.h:102
SetFunctionReturnMode returnMode
Definition execnodes.h:371
TupleDesc setDesc
Definition execnodes.h:375
Tuplestorestate * setResult
Definition execnodes.h:374
ExprDoneCond isDone
Definition execnodes.h:372
TupleDesc ret_tdesc
Definition plperl.c:180
Tuplestorestate * tuple_store
Definition plperl.c:179

References activate_interpreter(), ReturnSetInfo::allowedModes, ErrorContextCallback::arg, castNode, compile_plperl_function(), current_call_data, dTHX, elog, ereport, errcode(), errmsg, ERROR, error_context_stack, ExprEndResult, fb(), plperl_proc_desc::fn_retisset, get_perl_array_ref(), i, increment_prodesc_refcount, plperl_proc_desc::interp, IsA, ReturnSetInfo::isDone, plperl_call_perl_func(), plperl_exec_callback(), plperl_return_next_internal(), plperl_sv_to_datum(), ErrorContextCallback::previous, plperl_call_data::prodesc, plperl_proc_desc::proname, plperl_proc_desc::result_in_func, plperl_proc_desc::result_oid, plperl_proc_desc::result_typioparam, plperl_call_data::ret_tdesc, ReturnSetInfo::returnMode, ReturnSetInfo::setDesc, ReturnSetInfo::setResult, SFRM_Materialize, SPI_connect_ext(), SPI_finish(), SPI_OK_FINISH, SPI_OPT_NONATOMIC, SvREFCNT_dec_current(), and plperl_call_data::tuple_store.

Referenced by plperl_call_handler().

◆ plperl_hash_from_datum()

static SV * plperl_hash_from_datum ( Datum  attr)
static

Definition at line 2997 of file plperl.c.

2998{
2999 HeapTupleHeader td;
3000 Oid tupType;
3002 TupleDesc tupdesc;
3004 SV *sv;
3005
3006 td = DatumGetHeapTupleHeader(attr);
3007
3008 /* Extract rowtype info and find a tupdesc */
3012
3013 /* Build a temporary HeapTuple control structure */
3015 tmptup.t_data = td;
3016
3017 sv = plperl_hash_from_tuple(&tmptup, tupdesc, true);
3018 ReleaseTupleDesc(tupdesc);
3019
3020 return sv;
3021}
#define DatumGetHeapTupleHeader(X)
Definition fmgr.h:296
static int32 HeapTupleHeaderGetTypMod(const HeapTupleHeaderData *tup)
static uint32 HeapTupleHeaderGetDatumLength(const HeapTupleHeaderData *tup)
static Oid HeapTupleHeaderGetTypeId(const HeapTupleHeaderData *tup)
static SV * plperl_hash_from_tuple(HeapTuple tuple, TupleDesc tupdesc, bool include_generated)
Definition plperl.c:3025
#define ReleaseTupleDesc(tupdesc)
Definition tupdesc.h:238
TupleDesc lookup_rowtype_tupdesc(Oid type_id, int32 typmod)
Definition typcache.c:1947

References DatumGetHeapTupleHeader, fb(), HeapTupleHeaderGetDatumLength(), HeapTupleHeaderGetTypeId(), HeapTupleHeaderGetTypMod(), lookup_rowtype_tupdesc(), plperl_hash_from_tuple(), and ReleaseTupleDesc.

Referenced by make_array_ref(), plperl_call_perl_func(), and plperl_hash_from_tuple().

◆ plperl_hash_from_tuple()

static SV * plperl_hash_from_tuple ( HeapTuple  tuple,
TupleDesc  tupdesc,
bool  include_generated 
)
static

Definition at line 3025 of file plperl.c.

3026{
3027 dTHX;
3028 HV *hv;
3029 int i;
3030
3031 /* since this function recurses, it could be driven to stack overflow */
3033
3034 hv = newHV();
3035 hv_ksplit(hv, tupdesc->natts); /* pre-grow the hash */
3036
3037 for (i = 0; i < tupdesc->natts; i++)
3038 {
3039 Datum attr;
3040 bool isnull,
3041 typisvarlena;
3042 char *attname;
3043 Oid typoutput;
3045
3046 if (att->attisdropped)
3047 continue;
3048
3049 if (att->attgenerated)
3050 {
3051 /* don't include unless requested */
3052 if (!include_generated)
3053 continue;
3054 /* never include virtual columns */
3055 if (att->attgenerated == ATTRIBUTE_GENERATED_VIRTUAL)
3056 continue;
3057 }
3058
3059 attname = NameStr(att->attname);
3060 attr = heap_getattr(tuple, i + 1, tupdesc, &isnull);
3061
3062 if (isnull)
3063 {
3064 /*
3065 * Store (attname => undef) and move on. Note we can't use
3066 * &PL_sv_undef here; see "AVs, HVs and undefined values" in
3067 * perlguts for an explanation.
3068 */
3070 continue;
3071 }
3072
3073 if (type_is_rowtype(att->atttypid))
3074 {
3075 SV *sv = plperl_hash_from_datum(attr);
3076
3078 }
3079 else
3080 {
3081 SV *sv;
3082 Oid funcid;
3083
3084 if (OidIsValid(get_base_element_type(att->atttypid)))
3085 sv = plperl_ref_from_pg_array(attr, att->atttypid);
3087 sv = (SV *) DatumGetPointer(OidFunctionCall1(funcid, attr));
3088 else
3089 {
3090 char *outputstr;
3091
3092 /* XXX should have a way to cache these lookups */
3093 getTypeOutputInfo(att->atttypid, &typoutput, &typisvarlena);
3094
3095 outputstr = OidOutputFunctionCall(typoutput, attr);
3096 sv = cstr2sv(outputstr);
3098 }
3099
3101 }
3102 }
3103 return newRV_noinc((SV *) hv);
3104}
char * OidOutputFunctionCall(Oid functionId, Datum val)
Definition fmgr.c:1764
static Datum heap_getattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull)
void getTypeOutputInfo(Oid type, Oid *typOutput, bool *typIsVarlena)
Definition lsyscache.c:3129
Oid get_base_element_type(Oid typid)
Definition lsyscache.c:3054
NameData attname
void check_stack_depth(void)
Definition stack_depth.c:95

References attname, check_stack_depth(), cstr2sv(), current_call_data, DatumGetPointer(), dTHX, fb(), get_base_element_type(), get_transform_fromsql(), getTypeOutputInfo(), heap_getattr(), hv_store_string(), i, plperl_proc_desc::lang_oid, NameStr, TupleDescData::natts, newRV_noinc, OidFunctionCall1, OidIsValid, OidOutputFunctionCall(), pfree(), plperl_hash_from_datum(), plperl_ref_from_pg_array(), plperl_call_data::prodesc, plperl_proc_desc::trftypes, TupleDescAttr(), and type_is_rowtype().

Referenced by plperl_hash_from_datum(), plperl_spi_execute_fetch_result(), plperl_spi_fetchrow(), and plperl_trigger_build_args().

◆ plperl_hash_to_datum()

static Datum plperl_hash_to_datum ( SV src,
TupleDesc  td 
)
static

Definition at line 1129 of file plperl.c.

1130{
1132
1133 return HeapTupleGetDatum(tup);
1134}
static Datum HeapTupleGetDatum(const HeapTupleData *tuple)
Definition funcapi.h:230
static HeapTuple plperl_build_tuple_result(HV *perlhash, TupleDesc td)
Definition plperl.c:1078

References fb(), HeapTupleGetDatum(), and plperl_build_tuple_result().

Referenced by plperl_sv_to_datum().

◆ plperl_init_interp()

static PerlInterpreter * plperl_init_interp ( void  )
static

Definition at line 708 of file plperl.c.

709{
711
712 static char *embedding[3 + 2] = {
713 "", "-e", PLC_PERLBOOT
714 };
715 int nargs = 3;
716
717#ifdef WIN32
718
719 /*
720 * The perl library on startup does horrible things like call
721 * setlocale(LC_ALL,""). We have protected against that on most platforms
722 * by setting the environment appropriately. However, on Windows,
723 * setlocale() does not consult the environment, so we need to save the
724 * existing locale settings before perl has a chance to mangle them and
725 * restore them after its dirty deeds are done.
726 *
727 * MSDN ref:
728 * http://msdn.microsoft.com/library/en-us/vclib/html/_crt_locale.asp
729 *
730 * It appears that we only need to do this on interpreter startup, and
731 * subsequent calls to the interpreter don't mess with the locale
732 * settings.
733 *
734 * We restore them using setlocale_perl(), defined below, so that Perl
735 * doesn't have a different idea of the locale from Postgres.
736 *
737 */
738
739 char *loc;
740 char *save_collate,
741 *save_ctype,
744 *save_time;
745
746 loc = setlocale(LC_COLLATE, NULL);
747 save_collate = loc ? pstrdup(loc) : NULL;
748 loc = setlocale(LC_CTYPE, NULL);
749 save_ctype = loc ? pstrdup(loc) : NULL;
750 loc = setlocale(LC_MONETARY, NULL);
751 save_monetary = loc ? pstrdup(loc) : NULL;
752 loc = setlocale(LC_NUMERIC, NULL);
753 save_numeric = loc ? pstrdup(loc) : NULL;
754 loc = setlocale(LC_TIME, NULL);
755 save_time = loc ? pstrdup(loc) : NULL;
756
757#define PLPERL_RESTORE_LOCALE(name, saved) \
758 STMT_START { \
759 if (saved != NULL) { setlocale_perl(name, saved); pfree(saved); } \
760 } STMT_END
761#endif /* WIN32 */
762
764 {
765 embedding[nargs++] = "-e";
766 embedding[nargs++] = plperl_on_init;
767 }
768
769 /*
770 * The perl API docs state that PERL_SYS_INIT3 should be called before
771 * allocating interpreters. Unfortunately, on some platforms this fails in
772 * the Perl_do_taint() routine, which is called when the platform is using
773 * the system's malloc() instead of perl's own. Other platforms, notably
774 * Windows, fail if PERL_SYS_INIT3 is not called. So we call it if it's
775 * available, unless perl is using the system malloc(), which is true when
776 * MYMALLOC is set.
777 */
778#if defined(PERL_SYS_INIT3) && !defined(MYMALLOC)
779 {
780 static int perl_sys_init_done;
781
782 /* only call this the first time through, as per perlembed man page */
784 {
785 char *dummy_env[1] = {NULL};
786
787 PERL_SYS_INIT3(&nargs, (char ***) &embedding, (char ***) &dummy_env);
788
789 /*
790 * For unclear reasons, PERL_SYS_INIT3 sets the SIGFPE handler to
791 * SIG_IGN. Aside from being extremely unfriendly behavior for a
792 * library, this is dumb on the grounds that the results of a
793 * SIGFPE in this state are undefined according to POSIX, and in
794 * fact you get a forced process kill at least on Linux. Hence,
795 * restore the SIGFPE handler to the backend's standard setting.
796 * (See Perl bug 114574 for more information.)
797 */
799
801 /* quiet warning if PERL_SYS_INIT3 doesn't use the third argument */
802 dummy_env[0] = NULL;
803 }
804 }
805#endif
806
807 plperl = perl_alloc();
808 if (!plperl)
809 elog(ERROR, "could not allocate Perl interpreter");
810
813
814 /*
815 * Run END blocks in perl_destruct instead of perl_run. Note that dTHX
816 * loads up a pointer to the current interpreter, so we have to postpone
817 * it to here rather than put it at the function head.
818 */
819 {
820 dTHX;
821
823
824 /*
825 * Record the original function for the 'require' and 'dofile'
826 * opcodes. (They share the same implementation.) Ensure it's used
827 * for new interpreters.
828 */
829 if (!pp_require_orig)
831 else
832 {
835 }
836
837#ifdef PLPERL_ENABLE_OPMASK_EARLY
838
839 /*
840 * For regression testing to prove that the PLC_PERLBOOT and
841 * PLC_TRUSTED code doesn't even compile any unsafe ops. In future
842 * there may be a valid need for them to do so, in which case this
843 * could be softened (perhaps moved to plperl_trusted_init()) or
844 * removed.
845 */
847#endif
848
850 nargs, embedding, NULL) != 0)
854 errcontext("while parsing Perl initialization")));
855
856 if (perl_run(plperl) != 0)
860 errcontext("while running Perl initialization")));
861
862#ifdef PLPERL_RESTORE_LOCALE
868#endif
869 }
870
871 return plperl;
872}
static OP *(* pp_require_orig)(pTHX)
Definition plperl.c:240
static void plperl_init_shared_libs(pTHX)
Definition plperl.c:2170
#define pqsignal
Definition port.h:547
void FloatExceptionHandler(SIGNAL_ARGS)
Definition postgres.c:3059
#define PL_ppaddr
Definition ppport.h:11735
#define setlocale(a, b)
Definition win32_port.h:472

References dTHX, elog, ereport, errcode(), errcontext, errmsg, ERROR, ERRSV, fb(), FloatExceptionHandler(), PL_ppaddr, plperl_init_shared_libs(), plperl_on_init, plperl_opmask, pp_require_orig, pqsignal, pstrdup(), setlocale, strip_trailing_ws(), and sv2cstr().

Referenced by _PG_init(), and select_perl_context().

◆ plperl_init_shared_libs()

static void plperl_init_shared_libs ( pTHX  )
static

Definition at line 2170 of file plperl.c.

2171{
2172 char *file = __FILE__;
2173
2174 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
2175 newXS("PostgreSQL::InServer::Util::bootstrap",
2177 /* newXS for...::SPI::bootstrap is in select_perl_context() */
2178}
EXTERN_C void boot_DynaLoader(pTHX_ CV *cv)
EXTERN_C void boot_PostgreSQL__InServer__Util(pTHX_ CV *cv)

References boot_DynaLoader(), boot_PostgreSQL__InServer__Util(), and fb().

Referenced by plperl_init_interp().

◆ plperl_inline_callback()

static void plperl_inline_callback ( void arg)
static

Definition at line 4169 of file plperl.c.

4170{
4171 errcontext("PL/Perl anonymous code block");
4172}

References errcontext.

Referenced by plperl_inline_handler().

◆ plperl_inline_handler()

Datum plperl_inline_handler ( PG_FUNCTION_ARGS  )

Definition at line 1897 of file plperl.c.

1898{
1901 FmgrInfo flinfo;
1902 plperl_proc_desc desc;
1907
1908 /* Initialize current-call status record */
1909 MemSet(&this_call_data, 0, sizeof(this_call_data));
1910
1911 /* Set up a callback for error reporting */
1916
1917 /*
1918 * Set up a fake fcinfo and descriptor with just enough info to satisfy
1919 * plperl_call_perl_func(). In particular note that this sets things up
1920 * with no arguments passed, and a result type of VOID.
1921 */
1923 MemSet(&flinfo, 0, sizeof(flinfo));
1924 MemSet(&desc, 0, sizeof(desc));
1925 fake_fcinfo->flinfo = &flinfo;
1926 flinfo.fn_oid = InvalidOid;
1928
1929 desc.proname = "inline_code_block";
1930 desc.fn_readonly = false;
1931
1932 desc.lang_oid = codeblock->langOid;
1933 desc.trftypes = NIL;
1934 desc.lanpltrusted = codeblock->langIsTrusted;
1935
1936 desc.fn_retistuple = false;
1937 desc.fn_retisset = false;
1938 desc.fn_retisarray = false;
1939 desc.result_oid = InvalidOid;
1940 desc.nargs = 0;
1941 desc.reference = NULL;
1942
1943 this_call_data.fcinfo = fake_fcinfo;
1944 this_call_data.prodesc = &desc;
1945 /* we do not bother with refcounting the fake prodesc */
1946
1947 PG_TRY();
1948 {
1949 SV *perlret;
1950
1952
1954
1956
1957 plperl_create_sub(&desc, codeblock->source_text, 0);
1958
1959 if (!desc.reference) /* can this happen? */
1960 elog(ERROR, "could not create internal procedure for anonymous code block");
1961
1963
1965
1966 if (SPI_finish() != SPI_OK_FINISH)
1967 elog(ERROR, "SPI_finish() failed");
1968 }
1969 PG_FINALLY();
1970 {
1971 if (desc.reference)
1975 }
1976 PG_END_TRY();
1977
1979
1981}
#define PG_RETURN_VOID()
Definition fmgr.h:350
#define PG_GETARG_POINTER(n)
Definition fmgr.h:277
#define SizeForFunctionCallInfo(nargs)
Definition fmgr.h:102
#define LOCAL_FCINFO(name, nargs)
Definition fmgr.h:110
static void plperl_inline_callback(void *arg)
Definition plperl.c:4169
MemoryContext fn_mcxt
Definition fmgr.h:65

References activate_interpreter(), ErrorContextCallback::arg, current_call_data, CurrentMemoryContext, elog, ERROR, error_context_stack, fb(), FmgrInfo::fn_mcxt, FmgrInfo::fn_oid, plperl_proc_desc::fn_readonly, plperl_proc_desc::fn_retisarray, plperl_proc_desc::fn_retisset, plperl_proc_desc::fn_retistuple, InvalidOid, plperl_proc_desc::lang_oid, plperl_proc_desc::lanpltrusted, LOCAL_FCINFO, MemSet, plperl_proc_desc::nargs, NIL, PG_END_TRY, PG_FINALLY, PG_GETARG_POINTER, PG_RETURN_VOID, PG_TRY, plperl_active_interp, plperl_call_perl_func(), plperl_create_sub(), plperl_inline_callback(), ErrorContextCallback::previous, plperl_proc_desc::proname, plperl_proc_desc::reference, plperl_proc_desc::result_oid, select_perl_context(), SizeForFunctionCallInfo, SPI_connect_ext(), SPI_finish(), SPI_OK_FINISH, SPI_OPT_NONATOMIC, SvREFCNT_dec_current(), and plperl_proc_desc::trftypes.

Referenced by plperlu_inline_handler().

◆ plperl_modify_tuple()

static HeapTuple plperl_modify_tuple ( HV hvTD,
TriggerData tdata,
HeapTuple  otup 
)
static

Definition at line 1765 of file plperl.c.

1766{
1767 dTHX;
1768 SV **svp;
1769 HV *hvNew;
1770 HE *he;
1772 TupleDesc tupdesc;
1773 int natts;
1775 bool *modnulls;
1776 bool *modrepls;
1777
1778 svp = hv_fetch_string(hvTD, "new");
1779 if (!svp)
1780 ereport(ERROR,
1782 errmsg("$_TD->{new} does not exist")));
1783 if (!SvOK(*svp) || !SvROK(*svp) || SvTYPE(SvRV(*svp)) != SVt_PVHV)
1784 ereport(ERROR,
1786 errmsg("$_TD->{new} is not a hash reference")));
1787 hvNew = (HV *) SvRV(*svp);
1788
1789 tupdesc = tdata->tg_relation->rd_att;
1790 natts = tupdesc->natts;
1791
1792 modvalues = (Datum *) palloc0(natts * sizeof(Datum));
1793 modnulls = (bool *) palloc0(natts * sizeof(bool));
1794 modrepls = (bool *) palloc0(natts * sizeof(bool));
1795
1797 while ((he = hv_iternext(hvNew)))
1798 {
1799 char *key = hek2cstr(he);
1800 SV *val = HeVAL(he);
1801 int attn = SPI_fnumber(tupdesc, key);
1802 Form_pg_attribute attr = TupleDescAttr(tupdesc, attn - 1);
1803
1805 ereport(ERROR,
1807 errmsg("Perl hash contains nonexistent column \"%s\"",
1808 key)));
1809 if (attn <= 0)
1810 ereport(ERROR,
1812 errmsg("cannot set system attribute \"%s\"",
1813 key)));
1814 if (attr->attgenerated)
1815 ereport(ERROR,
1817 errmsg("cannot set generated column \"%s\"",
1818 key)));
1819
1821 attr->atttypid,
1822 attr->atttypmod,
1823 NULL,
1824 NULL,
1825 InvalidOid,
1826 &modnulls[attn - 1]);
1827 modrepls[attn - 1] = true;
1828
1829 pfree(key);
1830 }
1832
1834
1836 pfree(modnulls);
1837 pfree(modrepls);
1838
1839 return rtup;
1840}
HeapTuple heap_modify_tuple(HeapTuple tuple, TupleDesc tupleDesc, const Datum *replValues, const bool *replIsnull, const bool *doReplace)
Definition heaptuple.c:1130

References dTHX, ereport, errcode(), errmsg, ERROR, fb(), heap_modify_tuple(), hek2cstr(), hv_fetch_string(), InvalidOid, TupleDescData::natts, palloc0(), pfree(), plperl_sv_to_datum(), SPI_ERROR_NOATTRIBUTE, SPI_fnumber(), TupleDescAttr(), and val.

Referenced by plperl_trigger_handler().

◆ plperl_ref_from_pg_array()

static SV * plperl_ref_from_pg_array ( Datum  arg,
Oid  typid 
)
static

Definition at line 1483 of file plperl.c.

1484{
1485 dTHX;
1488 int16 typlen;
1489 bool typbyval;
1490 char typalign,
1491 typdelim;
1492 Oid typioparam;
1495 int i,
1496 nitems,
1497 *dims;
1498 plperl_array_info *info;
1499 SV *av;
1500 HV *hv;
1501
1502 /*
1503 * Currently we make no effort to cache any of the stuff we look up here,
1504 * which is bad.
1505 */
1507
1508 /* get element type information, including output conversion function */
1510 &typlen, &typbyval, &typalign,
1511 &typdelim, &typioparam, &typoutputfunc);
1512
1513 /* Check for a transform function */
1517
1518 /* Look up transform or output function as appropriate */
1521 else
1522 fmgr_info(typoutputfunc, &info->proc);
1523
1525
1526 /* Get the number and bounds of array dimensions */
1527 info->ndims = ARR_NDIM(ar);
1528 dims = ARR_DIMS(ar);
1529
1530 /* No dimensions? Return an empty array */
1531 if (info->ndims == 0)
1532 {
1533 av = newRV_noinc((SV *) newAV());
1534 }
1535 else
1536 {
1537 deconstruct_array(ar, elementtype, typlen, typbyval,
1538 typalign, &info->elements, &info->nulls,
1539 &nitems);
1540
1541 /* Get total number of elements in each dimension */
1542 info->nelems = palloc_array(int, info->ndims);
1543 info->nelems[0] = nitems;
1544 for (i = 1; i < info->ndims; i++)
1545 info->nelems[i] = info->nelems[i - 1] / dims[i - 1];
1546
1547 av = split_array(info, 0, nitems, 0);
1548 }
1549
1550 hv = newHV();
1551 (void) hv_store(hv, "array", 5, av, 0);
1552 (void) hv_store(hv, "typeoid", 7, newSVuv(typid), 0);
1553
1554 return sv_bless(newRV_noinc((SV *) hv),
1555 gv_stashpv("PostgreSQL::InServer::ARRAY", 0));
1556}
#define ARR_NDIM(a)
Definition array.h:290
#define DatumGetArrayTypeP(X)
Definition array.h:261
#define ARR_ELEMTYPE(a)
Definition array.h:292
#define ARR_DIMS(a)
Definition array.h:294
void deconstruct_array(const ArrayType *array, Oid elmtype, int elmlen, bool elmbyval, char elmalign, Datum **elemsp, bool **nullsp, int *nelemsp)
int16_t int16
Definition c.h:613
#define nitems(x)
Definition indent.h:31
void get_type_io_data(Oid typid, IOFuncSelector which_func, int16 *typlen, bool *typbyval, char *typalign, char *typdelim, Oid *typioparam, Oid *func)
Definition lsyscache.c:2545
@ IOFunc_output
Definition lsyscache.h:37
char typalign
Definition pg_type.h:178
static SV * split_array(plperl_array_info *info, int first, int last, int nest)
Definition plperl.c:1562
#define newSVuv(uv)
Definition ppport.h:14511

References arg, ARR_DIMS, ARR_ELEMTYPE, ARR_NDIM, av, current_call_data, DatumGetArrayTypeP, deconstruct_array(), dTHX, plperl_array_info::elem_is_rowtype, plperl_array_info::elements, fb(), fmgr_info(), get_transform_fromsql(), get_type_io_data(), i, IOFunc_output, plperl_proc_desc::lang_oid, plperl_array_info::ndims, plperl_array_info::nelems, newRV_noinc, newSVuv, nitems, plperl_array_info::nulls, OidIsValid, palloc0_object, palloc_array, plperl_array_info::proc, plperl_call_data::prodesc, split_array(), plperl_array_info::transform_proc, plperl_proc_desc::trftypes, typalign, and type_is_rowtype().

Referenced by plperl_call_perl_func(), and plperl_hash_from_tuple().

◆ plperl_return_next()

void plperl_return_next ( SV sv)

Definition at line 3247 of file plperl.c.

3248{
3250
3252
3253 PG_TRY();
3254 {
3256 }
3257 PG_CATCH();
3258 {
3260
3261 /* Must reset elog.c's state */
3262 MemoryContextSwitchTo(oldcontext);
3263 edata = CopyErrorData();
3265
3266 /* Punt the error to Perl */
3267 croak_cstr(edata->message);
3268 }
3269 PG_END_TRY();
3270}
ErrorData * CopyErrorData(void)
Definition elog.c:1941
void FlushErrorState(void)
Definition elog.c:2062
static void check_spi_usage_allowed(void)
Definition plperl.c:3108
static void croak_cstr(const char *str)
Definition plperl.h:175

References check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), CurrentMemoryContext, fb(), FlushErrorState(), MemoryContextSwitchTo(), PG_CATCH, PG_END_TRY, PG_TRY, and plperl_return_next_internal().

◆ plperl_return_next_internal()

static void plperl_return_next_internal ( SV sv)
static

Definition at line 3277 of file plperl.c.

3278{
3279 plperl_proc_desc *prodesc;
3280 FunctionCallInfo fcinfo;
3281 ReturnSetInfo *rsi;
3283
3284 if (!sv)
3285 return;
3286
3287 prodesc = current_call_data->prodesc;
3288 fcinfo = current_call_data->fcinfo;
3289 rsi = (ReturnSetInfo *) fcinfo->resultinfo;
3290
3291 if (!prodesc->fn_retisset)
3292 ereport(ERROR,
3294 errmsg("cannot use return_next in a non-SETOF function")));
3295
3297 {
3298 TupleDesc tupdesc;
3299
3301
3302 /*
3303 * This is the first call to return_next in the current PL/Perl
3304 * function call, so identify the output tuple type and create a
3305 * tuplestore to hold the result rows.
3306 */
3307 if (prodesc->fn_retistuple)
3308 {
3310 Oid typid;
3311
3312 funcclass = get_call_result_type(fcinfo, &typid, &tupdesc);
3315 ereport(ERROR,
3317 errmsg("function returning record called in context "
3318 "that cannot accept type record")));
3319 /* if domain-over-composite, remember the domain's type OID */
3322 }
3323 else
3324 {
3325 tupdesc = rsi->expectedDesc;
3326 /* Protect assumption below that we return exactly one column */
3327 if (tupdesc == NULL || tupdesc->natts != 1)
3328 elog(ERROR, "expected single-column result descriptor for non-composite SETOF result");
3329 }
3330
3331 /*
3332 * Make sure the tuple_store and ret_tdesc are sufficiently
3333 * long-lived.
3334 */
3336
3340 false, work_mem);
3341
3343 }
3344
3345 /*
3346 * Producing the tuple we want to return requires making plenty of
3347 * palloc() allocations that are not cleaned up. Since this function can
3348 * be called many times before the current memory context is reset, we
3349 * need to do those allocations in a temporary context.
3350 */
3352 {
3355 "PL/Perl return_next temporary cxt",
3357 }
3358
3360
3361 if (prodesc->fn_retistuple)
3362 {
3363 HeapTuple tuple;
3364
3365 if (!(SvOK(sv) && SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVHV))
3366 ereport(ERROR,
3368 errmsg("SETOF-composite-returning PL/Perl function "
3369 "must call return_next with reference to hash")));
3370
3371 tuple = plperl_build_tuple_result((HV *) SvRV(sv),
3373
3375 domain_check(HeapTupleGetDatum(tuple), false,
3379
3381 }
3382 else if (prodesc->result_oid)
3383 {
3384 Datum ret[1];
3385 bool isNull[1];
3386
3387 ret[0] = plperl_sv_to_datum(sv,
3388 prodesc->result_oid,
3389 -1,
3390 fcinfo,
3391 &prodesc->result_in_func,
3392 prodesc->result_typioparam,
3393 &isNull[0]);
3394
3397 ret, isNull);
3398 }
3399
3402}
void domain_check(Datum value, bool isnull, Oid domainType, void **extra, MemoryContext mcxt)
Definition domains.c:346
@ SFRM_Materialize_Random
Definition execnodes.h:353
TypeFuncClass get_call_result_type(FunctionCallInfo fcinfo, Oid *resultTypeId, TupleDesc *resultTupleDesc)
Definition funcapi.c:276
TypeFuncClass
Definition funcapi.h:147
@ TYPEFUNC_COMPOSITE
Definition funcapi.h:149
@ TYPEFUNC_COMPOSITE_DOMAIN
Definition funcapi.h:150
int work_mem
Definition globals.c:131
void MemoryContextReset(MemoryContext context)
Definition mcxt.c:403
#define ALLOCSET_DEFAULT_SIZES
Definition memutils.h:160
MemoryContext ecxt_per_query_memory
Definition execnodes.h:291
ExprContext * econtext
Definition execnodes.h:367
TupleDesc expectedDesc
Definition execnodes.h:368
FunctionCallInfo fcinfo
Definition plperl.c:177
void * cdomain_info
Definition plperl.c:182
MemoryContext tmp_cxt
Definition plperl.c:183
TupleDesc CreateTupleDescCopy(TupleDesc tupdesc)
Definition tupdesc.c:242
Tuplestorestate * tuplestore_begin_heap(bool randomAccess, bool interXact, int maxKBytes)
Definition tuplestore.c:331
void tuplestore_putvalues(Tuplestorestate *state, TupleDesc tdesc, const Datum *values, const bool *isnull)
Definition tuplestore.c:785
void tuplestore_puttuple(Tuplestorestate *state, HeapTuple tuple)
Definition tuplestore.c:765

References ALLOCSET_DEFAULT_SIZES, AllocSetContextCreate, ReturnSetInfo::allowedModes, Assert, plperl_call_data::cdomain_info, plperl_call_data::cdomain_oid, CreateTupleDescCopy(), current_call_data, CurrentMemoryContext, domain_check(), ReturnSetInfo::econtext, ExprContext::ecxt_per_query_memory, elog, ereport, errcode(), errmsg, ERROR, ReturnSetInfo::expectedDesc, fb(), plperl_call_data::fcinfo, plperl_proc_desc::fn_retisset, plperl_proc_desc::fn_retistuple, get_call_result_type(), HeapTupleGetDatum(), MemoryContextReset(), MemoryContextSwitchTo(), TupleDescData::natts, OidIsValid, plperl_build_tuple_result(), plperl_sv_to_datum(), plperl_call_data::prodesc, plperl_proc_desc::result_in_func, plperl_proc_desc::result_oid, plperl_proc_desc::result_typioparam, FunctionCallInfoBaseData::resultinfo, plperl_call_data::ret_tdesc, SFRM_Materialize_Random, plperl_call_data::tmp_cxt, plperl_call_data::tuple_store, tuplestore_begin_heap(), tuplestore_puttuple(), tuplestore_putvalues(), TYPEFUNC_COMPOSITE, TYPEFUNC_COMPOSITE_DOMAIN, and work_mem.

Referenced by plperl_func_handler(), and plperl_return_next().

◆ plperl_spi_commit()

void plperl_spi_commit ( void  )

Definition at line 3993 of file plperl.c.

3994{
3996
3998
3999 PG_TRY();
4000 {
4001 SPI_commit();
4002 }
4003 PG_CATCH();
4004 {
4006
4007 /* Save error info */
4008 MemoryContextSwitchTo(oldcontext);
4009 edata = CopyErrorData();
4011
4012 /* Punt the error to Perl */
4013 croak_cstr(edata->message);
4014 }
4015 PG_END_TRY();
4016}
void SPI_commit(void)
Definition spi.c:321

References check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), CurrentMemoryContext, fb(), FlushErrorState(), MemoryContextSwitchTo(), PG_CATCH, PG_END_TRY, PG_TRY, and SPI_commit().

◆ plperl_spi_cursor_close()

void plperl_spi_cursor_close ( char cursor)

Definition at line 3553 of file plperl.c.

3554{
3555 Portal p;
3556
3558
3560
3561 if (p)
3562 {
3563 UnpinPortal(p);
3565 }
3566}
void UnpinPortal(Portal portal)
Definition portalmem.c:381
Portal SPI_cursor_find(const char *name)
Definition spi.c:1795
void SPI_cursor_close(Portal portal)
Definition spi.c:1863
Definition type.h:138

References check_spi_usage_allowed(), SPI_cursor_close(), SPI_cursor_find(), and UnpinPortal().

◆ plperl_spi_exec()

HV * plperl_spi_exec ( char query,
int  limit 
)

Definition at line 3135 of file plperl.c.

3136{
3137 HV *ret_hv;
3138
3139 /*
3140 * Execute the query inside a sub-transaction, so we can cope with errors
3141 * sanely
3142 */
3145
3147
3149 /* Want to run inside function's memory context */
3150 MemoryContextSwitchTo(oldcontext);
3151
3152 PG_TRY();
3153 {
3154 int spi_rv;
3155
3156 pg_verifymbstr(query, strlen(query), false);
3157
3159 limit);
3161 spi_rv);
3162
3163 /* Commit the inner transaction, return to outer xact context */
3165 MemoryContextSwitchTo(oldcontext);
3166 CurrentResourceOwner = oldowner;
3167 }
3168 PG_CATCH();
3169 {
3171
3172 /* Save error info */
3173 MemoryContextSwitchTo(oldcontext);
3174 edata = CopyErrorData();
3176
3177 /* Abort the inner transaction */
3179 MemoryContextSwitchTo(oldcontext);
3180 CurrentResourceOwner = oldowner;
3181
3182 /* Punt the error to Perl */
3183 croak_cstr(edata->message);
3184
3185 /* Can't get here, but keep compiler quiet */
3186 return NULL;
3187 }
3188 PG_END_TRY();
3189
3190 return ret_hv;
3191}
bool pg_verifymbstr(const char *mbstr, int len, bool noError)
Definition mbutils.c:1684
static HV * plperl_spi_execute_fetch_result(SPITupleTable *, uint64, int)
Definition plperl.c:3195
ResourceOwner CurrentResourceOwner
Definition resowner.c:173
uint64 SPI_processed
Definition spi.c:45
SPITupleTable * SPI_tuptable
Definition spi.c:46
int SPI_execute(const char *src, bool read_only, long tcount)
Definition spi.c:597
void BeginInternalSubTransaction(const char *name)
Definition xact.c:4717
void RollbackAndReleaseCurrentSubTransaction(void)
Definition xact.c:4819
void ReleaseCurrentSubTransaction(void)
Definition xact.c:4791

References BeginInternalSubTransaction(), check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), current_call_data, CurrentMemoryContext, CurrentResourceOwner, fb(), FlushErrorState(), plperl_proc_desc::fn_readonly, MemoryContextSwitchTo(), PG_CATCH, PG_END_TRY, PG_TRY, pg_verifymbstr(), plperl_spi_execute_fetch_result(), plperl_call_data::prodesc, ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), SPI_execute(), SPI_processed, and SPI_tuptable.

◆ plperl_spi_exec_prepared()

HV * plperl_spi_exec_prepared ( char query,
HV attr,
int  argc,
SV **  argv 
)

Definition at line 3717 of file plperl.c.

3718{
3719 HV *ret_hv;
3720 SV **sv;
3721 int i,
3722 limit,
3723 spi_rv;
3724 char *nulls;
3728
3729 /*
3730 * Execute the query inside a sub-transaction, so we can cope with errors
3731 * sanely
3732 */
3735
3737
3739 /* Want to run inside function's memory context */
3740 MemoryContextSwitchTo(oldcontext);
3741
3742 PG_TRY();
3743 {
3744 dTHX;
3745
3746 /************************************************************
3747 * Fetch the saved plan descriptor, see if it's o.k.
3748 ************************************************************/
3750 HASH_FIND, NULL);
3751 if (hash_entry == NULL)
3752 elog(ERROR, "spi_exec_prepared: Invalid prepared query passed");
3753
3754 qdesc = hash_entry->query_data;
3755 if (qdesc == NULL)
3756 elog(ERROR, "spi_exec_prepared: plperl query_hash value vanished");
3757
3758 if (qdesc->nargs != argc)
3759 elog(ERROR, "spi_exec_prepared: expected %d argument(s), %d passed",
3760 qdesc->nargs, argc);
3761
3762 /************************************************************
3763 * Parse eventual attributes
3764 ************************************************************/
3765 limit = 0;
3766 if (attr != NULL)
3767 {
3768 sv = hv_fetch_string(attr, "limit");
3769 if (sv && *sv && SvIOK(*sv))
3770 limit = SvIV(*sv);
3771 }
3772 /************************************************************
3773 * Set up arguments
3774 ************************************************************/
3775 if (argc > 0)
3776 {
3777 nulls = (char *) palloc(argc);
3778 argvalues = (Datum *) palloc(argc * sizeof(Datum));
3779 }
3780 else
3781 {
3782 nulls = NULL;
3783 argvalues = NULL;
3784 }
3785
3786 for (i = 0; i < argc; i++)
3787 {
3788 bool isnull;
3789
3791 qdesc->argtypes[i],
3792 -1,
3793 NULL,
3794 &qdesc->arginfuncs[i],
3795 qdesc->argtypioparams[i],
3796 &isnull);
3797 nulls[i] = isnull ? 'n' : ' ';
3798 }
3799
3800 /************************************************************
3801 * go
3802 ************************************************************/
3803 spi_rv = SPI_execute_plan(qdesc->plan, argvalues, nulls,
3806 spi_rv);
3807 if (argc > 0)
3808 {
3810 pfree(nulls);
3811 }
3812
3813 /* Commit the inner transaction, return to outer xact context */
3815 MemoryContextSwitchTo(oldcontext);
3816 CurrentResourceOwner = oldowner;
3817 }
3818 PG_CATCH();
3819 {
3821
3822 /* Save error info */
3823 MemoryContextSwitchTo(oldcontext);
3824 edata = CopyErrorData();
3826
3827 /* Abort the inner transaction */
3829 MemoryContextSwitchTo(oldcontext);
3830 CurrentResourceOwner = oldowner;
3831
3832 /* Punt the error to Perl */
3833 croak_cstr(edata->message);
3834
3835 /* Can't get here, but keep compiler quiet */
3836 return NULL;
3837 }
3838 PG_END_TRY();
3839
3840 return ret_hv;
3841}
void * palloc(Size size)
Definition mcxt.c:1387
int SPI_execute_plan(SPIPlanPtr plan, const Datum *Values, const char *Nulls, bool read_only, long tcount)
Definition spi.c:673
HTAB * query_hash
Definition plperl.c:90
Definition plperl.c:203

References BeginInternalSubTransaction(), check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), current_call_data, CurrentMemoryContext, CurrentResourceOwner, dTHX, elog, ERROR, fb(), FlushErrorState(), plperl_proc_desc::fn_readonly, HASH_FIND, hash_search(), hv_fetch_string(), i, MemoryContextSwitchTo(), palloc(), pfree(), PG_CATCH, PG_END_TRY, PG_TRY, plperl_active_interp, plperl_spi_execute_fetch_result(), plperl_sv_to_datum(), plperl_call_data::prodesc, plperl_interp_desc::query_hash, ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), SPI_execute_plan(), SPI_processed, and SPI_tuptable.

◆ plperl_spi_execute_fetch_result()

static HV * plperl_spi_execute_fetch_result ( SPITupleTable tuptable,
uint64  processed,
int  status 
)
static

Definition at line 3195 of file plperl.c.

3197{
3198 dTHX;
3199 HV *result;
3200
3202
3203 result = newHV();
3204
3205 hv_store_string(result, "status",
3207 hv_store_string(result, "processed",
3208 (processed > (uint64) UV_MAX) ?
3209 newSVnv((NV) processed) :
3210 newSVuv((UV) processed));
3211
3212 if (status > 0 && tuptable)
3213 {
3214 AV *rows;
3215 SV *row;
3216 uint64 i;
3217
3218 /* Prevent overflow in call to av_extend() */
3219 if (processed > (uint64) AV_SIZE_MAX)
3220 ereport(ERROR,
3222 errmsg("query result has too many rows to fit in a Perl array")));
3223
3224 rows = newAV();
3225 av_extend(rows, processed);
3226 for (i = 0; i < processed; i++)
3227 {
3228 row = plperl_hash_from_tuple(tuptable->vals[i], tuptable->tupdesc, true);
3229 av_push(rows, row);
3230 }
3231 hv_store_string(result, "rows",
3232 newRV_noinc((SV *) rows));
3233 }
3234
3235 SPI_freetuptable(tuptable);
3236
3237 return result;
3238}
uint64_t uint64
Definition c.h:619
#define AV_SIZE_MAX
NVTYPE NV
Definition ppport.h:12325
#define UV_MAX
Definition ppport.h:11685
const char * SPI_result_code_string(int code)
Definition spi.c:1973
void SPI_freetuptable(SPITupleTable *tuptable)
Definition spi.c:1387
TupleDesc tupdesc
Definition spi.h:25
HeapTuple * vals
Definition spi.h:26

References AV_SIZE_MAX, check_spi_usage_allowed(), cstr2sv(), dTHX, ereport, errcode(), errmsg, ERROR, fb(), hv_store_string(), i, newRV_noinc, newSVuv, plperl_hash_from_tuple(), SPI_freetuptable(), SPI_result_code_string(), SPITupleTable::tupdesc, UV_MAX, and SPITupleTable::vals.

Referenced by plperl_spi_exec(), and plperl_spi_exec_prepared().

◆ plperl_spi_fetchrow()

SV * plperl_spi_fetchrow ( char cursor)

Definition at line 3478 of file plperl.c.

3479{
3480 SV *row;
3481
3482 /*
3483 * Execute the FETCH inside a sub-transaction, so we can cope with errors
3484 * sanely
3485 */
3488
3490
3492 /* Want to run inside function's memory context */
3493 MemoryContextSwitchTo(oldcontext);
3494
3495 PG_TRY();
3496 {
3497 dTHX;
3499
3500 if (!p)
3501 {
3502 row = &PL_sv_undef;
3503 }
3504 else
3505 {
3506 SPI_cursor_fetch(p, true, 1);
3507 if (SPI_processed == 0)
3508 {
3509 UnpinPortal(p);
3511 row = &PL_sv_undef;
3512 }
3513 else
3514 {
3517 true);
3518 }
3520 }
3521
3522 /* Commit the inner transaction, return to outer xact context */
3524 MemoryContextSwitchTo(oldcontext);
3525 CurrentResourceOwner = oldowner;
3526 }
3527 PG_CATCH();
3528 {
3530
3531 /* Save error info */
3532 MemoryContextSwitchTo(oldcontext);
3533 edata = CopyErrorData();
3535
3536 /* Abort the inner transaction */
3538 MemoryContextSwitchTo(oldcontext);
3539 CurrentResourceOwner = oldowner;
3540
3541 /* Punt the error to Perl */
3542 croak_cstr(edata->message);
3543
3544 /* Can't get here, but keep compiler quiet */
3545 return NULL;
3546 }
3547 PG_END_TRY();
3548
3549 return row;
3550}
void SPI_cursor_fetch(Portal portal, bool forward, long count)
Definition spi.c:1807

References BeginInternalSubTransaction(), check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), CurrentMemoryContext, CurrentResourceOwner, dTHX, fb(), FlushErrorState(), MemoryContextSwitchTo(), PG_CATCH, PG_END_TRY, PG_TRY, PL_sv_undef, plperl_hash_from_tuple(), ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), SPI_cursor_close(), SPI_cursor_fetch(), SPI_cursor_find(), SPI_freetuptable(), SPI_processed, SPI_tuptable, SPITupleTable::tupdesc, UnpinPortal(), and SPITupleTable::vals.

◆ plperl_spi_freeplan()

void plperl_spi_freeplan ( char query)

Definition at line 3962 of file plperl.c.

3963{
3967
3969
3971 HASH_FIND, NULL);
3972 if (hash_entry == NULL)
3973 elog(ERROR, "spi_freeplan: Invalid prepared query passed");
3974
3975 qdesc = hash_entry->query_data;
3976 if (qdesc == NULL)
3977 elog(ERROR, "spi_freeplan: plperl query_hash value vanished");
3978 plan = qdesc->plan;
3979
3980 /*
3981 * free all memory before SPI_freeplan, so if it dies, nothing will be
3982 * left over
3983 */
3985 HASH_REMOVE, NULL);
3986
3987 MemoryContextDelete(qdesc->plan_cxt);
3988
3990}
@ HASH_REMOVE
Definition hsearch.h:115
#define plan(x)
Definition pg_regress.c:161
int SPI_freeplan(SPIPlanPtr plan)
Definition spi.c:1026

References check_spi_usage_allowed(), elog, ERROR, fb(), HASH_FIND, HASH_REMOVE, hash_search(), MemoryContextDelete(), plan, plperl_active_interp, plperl_interp_desc::query_hash, and SPI_freeplan().

◆ plperl_spi_prepare()

SV * plperl_spi_prepare ( char query,
int  argc,
SV **  argv 
)

Definition at line 3569 of file plperl.c.

3570{
3571 volatile SPIPlanPtr plan = NULL;
3572 volatile MemoryContext plan_cxt = NULL;
3573 plperl_query_desc *volatile qdesc = NULL;
3578 bool found;
3579 int i;
3580
3582
3584 MemoryContextSwitchTo(oldcontext);
3585
3586 PG_TRY();
3587 {
3589
3590 /************************************************************
3591 * Allocate the new querydesc structure
3592 *
3593 * The qdesc struct, as well as all its subsidiary data, lives in its
3594 * plan_cxt. But note that the SPIPlan does not.
3595 ************************************************************/
3597 "PL/Perl spi_prepare query",
3599 MemoryContextSwitchTo(plan_cxt);
3601 snprintf(qdesc->qname, sizeof(qdesc->qname), "%p", qdesc);
3602 qdesc->plan_cxt = plan_cxt;
3603 qdesc->nargs = argc;
3604 qdesc->argtypes = (Oid *) palloc(argc * sizeof(Oid));
3605 qdesc->arginfuncs = (FmgrInfo *) palloc(argc * sizeof(FmgrInfo));
3606 qdesc->argtypioparams = (Oid *) palloc(argc * sizeof(Oid));
3607 MemoryContextSwitchTo(oldcontext);
3608
3609 /************************************************************
3610 * Do the following work in a short-lived context so that we don't
3611 * leak a lot of memory in the PL/Perl function's SPI Proc context.
3612 ************************************************************/
3614 "PL/Perl spi_prepare workspace",
3617
3618 /************************************************************
3619 * Resolve argument type names and then look them up by oid
3620 * in the system cache, and remember the required information
3621 * for input conversion.
3622 ************************************************************/
3623 for (i = 0; i < argc; i++)
3624 {
3625 Oid typId,
3626 typInput,
3627 typIOParam;
3628 int32 typmod;
3629 char *typstr;
3630
3631 typstr = sv2cstr(argv[i]);
3632 (void) parseTypeString(typstr, &typId, &typmod, NULL);
3633 pfree(typstr);
3634
3636
3637 qdesc->argtypes[i] = typId;
3638 fmgr_info_cxt(typInput, &(qdesc->arginfuncs[i]), plan_cxt);
3639 qdesc->argtypioparams[i] = typIOParam;
3640 }
3641
3642 /* Make sure the query is validly encoded */
3643 pg_verifymbstr(query, strlen(query), false);
3644
3645 /************************************************************
3646 * Prepare the plan and check for errors
3647 ************************************************************/
3648 plan = SPI_prepare(query, argc, qdesc->argtypes);
3649
3650 if (plan == NULL)
3651 elog(ERROR, "SPI_prepare() failed:%s",
3653
3654 /************************************************************
3655 * Save the plan into permanent memory (right now it's in the
3656 * SPI procCxt, which will go away at function end).
3657 ************************************************************/
3658 if (SPI_keepplan(plan))
3659 elog(ERROR, "SPI_keepplan() failed");
3660 qdesc->plan = plan;
3661
3662 /************************************************************
3663 * Insert a hashtable entry for the plan.
3664 ************************************************************/
3666 qdesc->qname,
3667 HASH_ENTER, &found);
3668 hash_entry->query_data = qdesc;
3669
3670 /* Get rid of workspace */
3672
3673 /* Commit the inner transaction, return to outer xact context */
3675 MemoryContextSwitchTo(oldcontext);
3676 CurrentResourceOwner = oldowner;
3677 }
3678 PG_CATCH();
3679 {
3681
3682 /* Save error info */
3683 MemoryContextSwitchTo(oldcontext);
3684 edata = CopyErrorData();
3686
3687 /* Drop anything we managed to allocate */
3688 if (hash_entry)
3690 qdesc->qname,
3691 HASH_REMOVE, NULL);
3692 if (plan_cxt)
3693 MemoryContextDelete(plan_cxt);
3694 if (plan)
3696
3697 /* Abort the inner transaction */
3699 MemoryContextSwitchTo(oldcontext);
3700 CurrentResourceOwner = oldowner;
3701
3702 /* Punt the error to Perl */
3703 croak_cstr(edata->message);
3704
3705 /* Can't get here, but keep compiler quiet */
3706 return NULL;
3707 }
3708 PG_END_TRY();
3709
3710 /************************************************************
3711 * Return the query's hash key to the caller.
3712 ************************************************************/
3713 return cstr2sv(qdesc->qname);
3714}
#define CHECK_FOR_INTERRUPTS()
Definition miscadmin.h:123
bool parseTypeString(const char *str, Oid *typeid_p, int32 *typmod_p, Node *escontext)
Definition parse_type.c:785
#define snprintf
Definition port.h:260
int SPI_result
Definition spi.c:47
SPIPlanPtr SPI_prepare(const char *src, int nargs, Oid *argtypes)
Definition spi.c:861
int SPI_keepplan(SPIPlanPtr plan)
Definition spi.c:977

References ALLOCSET_DEFAULT_SIZES, ALLOCSET_SMALL_SIZES, AllocSetContextCreate, BeginInternalSubTransaction(), CHECK_FOR_INTERRUPTS, check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), cstr2sv(), CurrentMemoryContext, CurrentResourceOwner, elog, ERROR, fb(), FlushErrorState(), fmgr_info_cxt(), getTypeInputInfo(), HASH_ENTER, HASH_REMOVE, hash_search(), i, MemoryContextDelete(), MemoryContextSwitchTo(), palloc(), palloc0_object, parseTypeString(), pfree(), PG_CATCH, PG_END_TRY, PG_TRY, pg_verifymbstr(), plan, plperl_active_interp, plperl_interp_desc::query_hash, ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), snprintf, SPI_freeplan(), SPI_keepplan(), SPI_prepare(), SPI_result, SPI_result_code_string(), sv2cstr(), and TopMemoryContext.

◆ plperl_spi_query()

SV * plperl_spi_query ( char query)

Definition at line 3406 of file plperl.c.

3407{
3408 SV *cursor;
3409
3410 /*
3411 * Execute the query inside a sub-transaction, so we can cope with errors
3412 * sanely
3413 */
3416
3418
3420 /* Want to run inside function's memory context */
3421 MemoryContextSwitchTo(oldcontext);
3422
3423 PG_TRY();
3424 {
3426 Portal portal;
3427
3428 /* Make sure the query is validly encoded */
3429 pg_verifymbstr(query, strlen(query), false);
3430
3431 /* Create a cursor for the query */
3432 plan = SPI_prepare(query, 0, NULL);
3433 if (plan == NULL)
3434 elog(ERROR, "SPI_prepare() failed:%s",
3436
3437 portal = SPI_cursor_open(NULL, plan, NULL, NULL, false);
3439 if (portal == NULL)
3440 elog(ERROR, "SPI_cursor_open() failed:%s",
3442 cursor = cstr2sv(portal->name);
3443
3444 PinPortal(portal);
3445
3446 /* Commit the inner transaction, return to outer xact context */
3448 MemoryContextSwitchTo(oldcontext);
3449 CurrentResourceOwner = oldowner;
3450 }
3451 PG_CATCH();
3452 {
3454
3455 /* Save error info */
3456 MemoryContextSwitchTo(oldcontext);
3457 edata = CopyErrorData();
3459
3460 /* Abort the inner transaction */
3462 MemoryContextSwitchTo(oldcontext);
3463 CurrentResourceOwner = oldowner;
3464
3465 /* Punt the error to Perl */
3466 croak_cstr(edata->message);
3467
3468 /* Can't get here, but keep compiler quiet */
3469 return NULL;
3470 }
3471 PG_END_TRY();
3472
3473 return cursor;
3474}
void PinPortal(Portal portal)
Definition portalmem.c:372
Portal SPI_cursor_open(const char *name, SPIPlanPtr plan, const Datum *Values, const char *Nulls, bool read_only)
Definition spi.c:1446
const char * name
Definition portal.h:118

References BeginInternalSubTransaction(), check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), cstr2sv(), CurrentMemoryContext, CurrentResourceOwner, elog, ERROR, fb(), FlushErrorState(), MemoryContextSwitchTo(), PortalData::name, PG_CATCH, PG_END_TRY, PG_TRY, pg_verifymbstr(), PinPortal(), plan, ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), SPI_cursor_open(), SPI_freeplan(), SPI_prepare(), SPI_result, and SPI_result_code_string().

◆ plperl_spi_query_prepared()

SV * plperl_spi_query_prepared ( char query,
int  argc,
SV **  argv 
)

Definition at line 3844 of file plperl.c.

3845{
3846 int i;
3847 char *nulls;
3851 SV *cursor;
3852 Portal portal = NULL;
3853
3854 /*
3855 * Execute the query inside a sub-transaction, so we can cope with errors
3856 * sanely
3857 */
3860
3862
3864 /* Want to run inside function's memory context */
3865 MemoryContextSwitchTo(oldcontext);
3866
3867 PG_TRY();
3868 {
3869 /************************************************************
3870 * Fetch the saved plan descriptor, see if it's o.k.
3871 ************************************************************/
3873 HASH_FIND, NULL);
3874 if (hash_entry == NULL)
3875 elog(ERROR, "spi_query_prepared: Invalid prepared query passed");
3876
3877 qdesc = hash_entry->query_data;
3878 if (qdesc == NULL)
3879 elog(ERROR, "spi_query_prepared: plperl query_hash value vanished");
3880
3881 if (qdesc->nargs != argc)
3882 elog(ERROR, "spi_query_prepared: expected %d argument(s), %d passed",
3883 qdesc->nargs, argc);
3884
3885 /************************************************************
3886 * Set up arguments
3887 ************************************************************/
3888 if (argc > 0)
3889 {
3890 nulls = (char *) palloc(argc);
3891 argvalues = (Datum *) palloc(argc * sizeof(Datum));
3892 }
3893 else
3894 {
3895 nulls = NULL;
3896 argvalues = NULL;
3897 }
3898
3899 for (i = 0; i < argc; i++)
3900 {
3901 bool isnull;
3902
3904 qdesc->argtypes[i],
3905 -1,
3906 NULL,
3907 &qdesc->arginfuncs[i],
3908 qdesc->argtypioparams[i],
3909 &isnull);
3910 nulls[i] = isnull ? 'n' : ' ';
3911 }
3912
3913 /************************************************************
3914 * go
3915 ************************************************************/
3916 portal = SPI_cursor_open(NULL, qdesc->plan, argvalues, nulls,
3918 if (argc > 0)
3919 {
3921 pfree(nulls);
3922 }
3923 if (portal == NULL)
3924 elog(ERROR, "SPI_cursor_open() failed:%s",
3926
3927 cursor = cstr2sv(portal->name);
3928
3929 PinPortal(portal);
3930
3931 /* Commit the inner transaction, return to outer xact context */
3933 MemoryContextSwitchTo(oldcontext);
3934 CurrentResourceOwner = oldowner;
3935 }
3936 PG_CATCH();
3937 {
3939
3940 /* Save error info */
3941 MemoryContextSwitchTo(oldcontext);
3942 edata = CopyErrorData();
3944
3945 /* Abort the inner transaction */
3947 MemoryContextSwitchTo(oldcontext);
3948 CurrentResourceOwner = oldowner;
3949
3950 /* Punt the error to Perl */
3951 croak_cstr(edata->message);
3952
3953 /* Can't get here, but keep compiler quiet */
3954 return NULL;
3955 }
3956 PG_END_TRY();
3957
3958 return cursor;
3959}

References BeginInternalSubTransaction(), check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), cstr2sv(), current_call_data, CurrentMemoryContext, CurrentResourceOwner, elog, ERROR, fb(), FlushErrorState(), plperl_proc_desc::fn_readonly, HASH_FIND, hash_search(), i, MemoryContextSwitchTo(), PortalData::name, palloc(), pfree(), PG_CATCH, PG_END_TRY, PG_TRY, PinPortal(), plperl_active_interp, plperl_sv_to_datum(), plperl_call_data::prodesc, plperl_interp_desc::query_hash, ReleaseCurrentSubTransaction(), RollbackAndReleaseCurrentSubTransaction(), SPI_cursor_open(), SPI_result, and SPI_result_code_string().

◆ plperl_spi_rollback()

void plperl_spi_rollback ( void  )

Definition at line 4019 of file plperl.c.

4020{
4022
4024
4025 PG_TRY();
4026 {
4027 SPI_rollback();
4028 }
4029 PG_CATCH();
4030 {
4032
4033 /* Save error info */
4034 MemoryContextSwitchTo(oldcontext);
4035 edata = CopyErrorData();
4037
4038 /* Punt the error to Perl */
4039 croak_cstr(edata->message);
4040 }
4041 PG_END_TRY();
4042}
void SPI_rollback(void)
Definition spi.c:414

References check_spi_usage_allowed(), CopyErrorData(), croak_cstr(), CurrentMemoryContext, fb(), FlushErrorState(), MemoryContextSwitchTo(), PG_CATCH, PG_END_TRY, PG_TRY, and SPI_rollback().

◆ plperl_sv_to_datum()

static Datum plperl_sv_to_datum ( SV sv,
Oid  typid,
int32  typmod,
FunctionCallInfo  fcinfo,
FmgrInfo finfo,
Oid  typioparam,
bool isnull 
)
static

Definition at line 1326 of file plperl.c.

1330{
1331 FmgrInfo tmp;
1332 Oid funcid;
1333
1334 /* we might recurse */
1336
1337 *isnull = false;
1338
1339 /*
1340 * Return NULL if result is undef, or if we're in a function returning
1341 * VOID. In the latter case, we should pay no attention to the last Perl
1342 * statement's result, and this is a convenient means to ensure that.
1343 */
1344 if (!sv || !SvOK(sv) || typid == VOIDOID)
1345 {
1346 /* look up type info if they did not pass it */
1347 if (!finfo)
1348 {
1349 _sv_to_datum_finfo(typid, &tmp, &typioparam);
1350 finfo = &tmp;
1351 }
1352 *isnull = true;
1353 /* must call typinput in case it wants to reject NULL */
1354 return InputFunctionCall(finfo, NULL, typioparam, typmod);
1355 }
1357 return OidFunctionCall1(funcid, PointerGetDatum(sv));
1358 else if (SvROK(sv))
1359 {
1360 /* handle references */
1362
1363 if (sav)
1364 {
1365 /* handle an arrayref */
1366 return plperl_array_to_datum(sav, typid, typmod);
1367 }
1368 else if (SvTYPE(SvRV(sv)) == SVt_PVHV)
1369 {
1370 /* handle a hashref */
1371 Datum ret;
1372 TupleDesc td;
1373 bool isdomain;
1374
1375 if (!type_is_rowtype(typid))
1376 ereport(ERROR,
1378 errmsg("cannot convert Perl hash to non-composite type %s",
1379 format_type_be(typid))));
1380
1381 td = lookup_rowtype_tupdesc_domain(typid, typmod, true);
1382 if (td != NULL)
1383 {
1384 /* Did we look through a domain? */
1385 isdomain = (typid != td->tdtypeid);
1386 }
1387 else
1388 {
1389 /* Must be RECORD, try to resolve based on call info */
1391
1392 if (fcinfo)
1393 funcclass = get_call_result_type(fcinfo, &typid, &td);
1394 else
1398 ereport(ERROR,
1400 errmsg("function returning record called in context "
1401 "that cannot accept type record")));
1402 Assert(td);
1404 }
1405
1406 ret = plperl_hash_to_datum(sv, td);
1407
1408 if (isdomain)
1409 domain_check(ret, false, typid, NULL, NULL);
1410
1411 /* Release on the result of get_call_result_type is harmless */
1412 ReleaseTupleDesc(td);
1413
1414 return ret;
1415 }
1416
1417 /*
1418 * If it's a reference to something else, such as a scalar, just
1419 * recursively look through the reference.
1420 */
1421 return plperl_sv_to_datum(SvRV(sv), typid, typmod,
1422 fcinfo, finfo, typioparam,
1423 isnull);
1424 }
1425 else
1426 {
1427 /* handle a string/number */
1428 Datum ret;
1429 char *str = sv2cstr(sv);
1430
1431 /* did not pass in any typeinfo? look it up */
1432 if (!finfo)
1433 {
1434 _sv_to_datum_finfo(typid, &tmp, &typioparam);
1435 finfo = &tmp;
1436 }
1437
1438 ret = InputFunctionCall(finfo, str, typioparam, typmod);
1439 pfree(str);
1440
1441 return ret;
1442 }
1443}
Datum InputFunctionCall(FmgrInfo *flinfo, char *str, Oid typioparam, int32 typmod)
Definition fmgr.c:1532
@ TYPEFUNC_OTHER
Definition funcapi.h:152
const char * str
Oid get_transform_tosql(Oid typid, Oid langid, List *trftypes)
Definition lsyscache.c:2362
static Datum plperl_array_to_datum(SV *src, Oid typid, int32 typmod)
Definition plperl.c:1260
static Datum plperl_hash_to_datum(SV *src, TupleDesc td)
Definition plperl.c:1129
TupleDesc lookup_rowtype_tupdesc_domain(Oid type_id, int32 typmod, bool noError)
Definition typcache.c:2003

References _sv_to_datum_finfo(), Assert, check_stack_depth(), current_call_data, domain_check(), ereport, errcode(), errmsg, ERROR, fb(), format_type_be(), get_call_result_type(), get_perl_array_ref(), get_transform_tosql(), InputFunctionCall(), plperl_proc_desc::lang_oid, lookup_rowtype_tupdesc_domain(), OidFunctionCall1, pfree(), plperl_array_to_datum(), plperl_hash_to_datum(), plperl_sv_to_datum(), PointerGetDatum(), plperl_call_data::prodesc, ReleaseTupleDesc, str, sv2cstr(), TupleDescData::tdtypeid, plperl_proc_desc::trftypes, type_is_rowtype(), TYPEFUNC_COMPOSITE, TYPEFUNC_COMPOSITE_DOMAIN, and TYPEFUNC_OTHER.

Referenced by array_to_datum_internal(), plperl_build_tuple_result(), plperl_func_handler(), plperl_modify_tuple(), plperl_return_next_internal(), plperl_spi_exec_prepared(), plperl_spi_query_prepared(), plperl_sv_to_datum(), and plperl_sv_to_literal().

◆ plperl_sv_to_literal()

char * plperl_sv_to_literal ( SV sv,
char fqtypename 
)

Definition at line 1447 of file plperl.c.

1448{
1449 Oid typid;
1450 Oid typoutput;
1451 Datum datum;
1452 bool typisvarlena,
1453 isnull;
1454
1456
1458 if (!OidIsValid(typid))
1459 ereport(ERROR,
1461 errmsg("lookup failed for type %s", fqtypename)));
1462
1463 datum = plperl_sv_to_datum(sv,
1464 typid, -1,
1466 &isnull);
1467
1468 if (isnull)
1469 return NULL;
1470
1471 getTypeOutputInfo(typid,
1472 &typoutput, &typisvarlena);
1473
1474 return OidOutputFunctionCall(typoutput, datum);
1475}
#define DirectFunctionCall1(func, arg1)
Definition fmgr.h:684
static Oid DatumGetObjectId(Datum X)
Definition postgres.h:242
static Datum CStringGetDatum(const char *X)
Definition postgres.h:370
Datum regtypein(PG_FUNCTION_ARGS)
Definition regproc.c:1184

References check_spi_usage_allowed(), CStringGetDatum(), DatumGetObjectId(), DirectFunctionCall1, ereport, errcode(), errmsg, ERROR, fb(), getTypeOutputInfo(), InvalidOid, OidIsValid, OidOutputFunctionCall(), plperl_sv_to_datum(), and regtypein().

◆ plperl_trigger_build_args()

static SV * plperl_trigger_build_args ( FunctionCallInfo  fcinfo)
static

Definition at line 1634 of file plperl.c.

1635{
1636 dTHX;
1638 TupleDesc tupdesc;
1639 int i;
1640 char *level;
1641 char *event;
1642 char *relid;
1643 char *when;
1644 HV *hv;
1645
1646 hv = newHV();
1647 hv_ksplit(hv, 12); /* pre-grow the hash */
1648
1649 tdata = (TriggerData *) fcinfo->context;
1650 tupdesc = tdata->tg_relation->rd_att;
1651
1653 ObjectIdGetDatum(tdata->tg_relation->rd_id)));
1654
1655 hv_store_string(hv, "name", cstr2sv(tdata->tg_trigger->tgname));
1656 hv_store_string(hv, "relid", cstr2sv(relid));
1657
1658 /*
1659 * Note: In BEFORE trigger, stored generated columns are not computed yet,
1660 * so don't make them accessible in NEW row.
1661 */
1662
1663 if (TRIGGER_FIRED_BY_INSERT(tdata->tg_event))
1664 {
1665 event = "INSERT";
1666 if (TRIGGER_FIRED_FOR_ROW(tdata->tg_event))
1667 hv_store_string(hv, "new",
1668 plperl_hash_from_tuple(tdata->tg_trigtuple,
1669 tupdesc,
1670 !TRIGGER_FIRED_BEFORE(tdata->tg_event)));
1671 }
1672 else if (TRIGGER_FIRED_BY_DELETE(tdata->tg_event))
1673 {
1674 event = "DELETE";
1675 if (TRIGGER_FIRED_FOR_ROW(tdata->tg_event))
1676 hv_store_string(hv, "old",
1677 plperl_hash_from_tuple(tdata->tg_trigtuple,
1678 tupdesc,
1679 true));
1680 }
1681 else if (TRIGGER_FIRED_BY_UPDATE(tdata->tg_event))
1682 {
1683 event = "UPDATE";
1684 if (TRIGGER_FIRED_FOR_ROW(tdata->tg_event))
1685 {
1686 hv_store_string(hv, "old",
1687 plperl_hash_from_tuple(tdata->tg_trigtuple,
1688 tupdesc,
1689 true));
1690 hv_store_string(hv, "new",
1691 plperl_hash_from_tuple(tdata->tg_newtuple,
1692 tupdesc,
1693 !TRIGGER_FIRED_BEFORE(tdata->tg_event)));
1694 }
1695 }
1696 else if (TRIGGER_FIRED_BY_TRUNCATE(tdata->tg_event))
1697 event = "TRUNCATE";
1698 else
1699 event = "UNKNOWN";
1700
1701 hv_store_string(hv, "event", cstr2sv(event));
1702 hv_store_string(hv, "argc", newSViv(tdata->tg_trigger->tgnargs));
1703
1704 if (tdata->tg_trigger->tgnargs > 0)
1705 {
1706 AV *av = newAV();
1707
1708 av_extend(av, tdata->tg_trigger->tgnargs);
1709 for (i = 0; i < tdata->tg_trigger->tgnargs; i++)
1710 av_push(av, cstr2sv(tdata->tg_trigger->tgargs[i]));
1711 hv_store_string(hv, "args", newRV_noinc((SV *) av));
1712 }
1713
1714 hv_store_string(hv, "relname",
1715 cstr2sv(SPI_getrelname(tdata->tg_relation)));
1716
1717 hv_store_string(hv, "table_name",
1718 cstr2sv(SPI_getrelname(tdata->tg_relation)));
1719
1720 hv_store_string(hv, "table_schema",
1721 cstr2sv(SPI_getnspname(tdata->tg_relation)));
1722
1723 if (TRIGGER_FIRED_BEFORE(tdata->tg_event))
1724 when = "BEFORE";
1725 else if (TRIGGER_FIRED_AFTER(tdata->tg_event))
1726 when = "AFTER";
1727 else if (TRIGGER_FIRED_INSTEAD(tdata->tg_event))
1728 when = "INSTEAD OF";
1729 else
1730 when = "UNKNOWN";
1731 hv_store_string(hv, "when", cstr2sv(when));
1732
1733 if (TRIGGER_FIRED_FOR_ROW(tdata->tg_event))
1734 level = "ROW";
1735 else if (TRIGGER_FIRED_FOR_STATEMENT(tdata->tg_event))
1736 level = "STATEMENT";
1737 else
1738 level = "UNKNOWN";
1739 hv_store_string(hv, "level", cstr2sv(level));
1740
1741 return newRV_noinc((SV *) hv);
1742}
Datum oidout(PG_FUNCTION_ARGS)
Definition oid.c:47
static char * DatumGetCString(Datum X)
Definition postgres.h:355
char * SPI_getnspname(Relation rel)
Definition spi.c:1333
char * SPI_getrelname(Relation rel)
Definition spi.c:1327
Definition type.h:89
#define TRIGGER_FIRED_FOR_STATEMENT(event)
Definition trigger.h:127
#define TRIGGER_FIRED_BY_DELETE(event)
Definition trigger.h:115
#define TRIGGER_FIRED_BEFORE(event)
Definition trigger.h:130
#define TRIGGER_FIRED_FOR_ROW(event)
Definition trigger.h:124
#define TRIGGER_FIRED_AFTER(event)
Definition trigger.h:133
#define TRIGGER_FIRED_BY_TRUNCATE(event)
Definition trigger.h:121
#define TRIGGER_FIRED_BY_INSERT(event)
Definition trigger.h:112
#define TRIGGER_FIRED_BY_UPDATE(event)
Definition trigger.h:118
#define TRIGGER_FIRED_INSTEAD(event)
Definition trigger.h:136

References av, FunctionCallInfoBaseData::context, cstr2sv(), DatumGetCString(), DirectFunctionCall1, dTHX, fb(), hv_store_string(), i, newRV_noinc, ObjectIdGetDatum(), oidout(), plperl_hash_from_tuple(), SPI_getnspname(), SPI_getrelname(), TRIGGER_FIRED_AFTER, TRIGGER_FIRED_BEFORE, TRIGGER_FIRED_BY_DELETE, TRIGGER_FIRED_BY_INSERT, TRIGGER_FIRED_BY_TRUNCATE, TRIGGER_FIRED_BY_UPDATE, TRIGGER_FIRED_FOR_ROW, TRIGGER_FIRED_FOR_STATEMENT, and TRIGGER_FIRED_INSTEAD.

Referenced by plperl_trigger_handler().

◆ plperl_trigger_handler()

static Datum plperl_trigger_handler ( PG_FUNCTION_ARGS  )
static

Definition at line 2522 of file plperl.c.

2523{
2524 plperl_proc_desc *prodesc;
2525 SV *perlret;
2526 Datum retval;
2527 SV *svTD;
2528 HV *hvTD;
2532
2533 /* Connect to SPI manager */
2534 SPI_connect();
2535
2536 /* Make transition tables visible to this SPI connection */
2537 tdata = (TriggerData *) fcinfo->context;
2539 Assert(rc >= 0);
2540
2541 /* Find or compile the function */
2542 prodesc = compile_plperl_function(fcinfo->flinfo->fn_oid, true, false);
2543 current_call_data->prodesc = prodesc;
2545
2546 /* Set a callback for error reporting */
2549 pl_error_context.arg = prodesc->proname;
2551
2552 activate_interpreter(prodesc->interp);
2553
2555 perlret = plperl_call_perl_trigger_func(prodesc, fcinfo, svTD);
2556 hvTD = (HV *) SvRV(svTD);
2557
2558 /************************************************************
2559 * Disconnect from SPI manager and then create the return
2560 * values datum (if the input function does a palloc for it
2561 * this must not be allocated in the SPI memory context
2562 * because SPI_finish would free it).
2563 ************************************************************/
2564 if (SPI_finish() != SPI_OK_FINISH)
2565 elog(ERROR, "SPI_finish() failed");
2566
2567 if (perlret == NULL || !SvOK(perlret))
2568 {
2569 /* undef result means go ahead with original tuple */
2570 TriggerData *trigdata = ((TriggerData *) fcinfo->context);
2571
2572 if (TRIGGER_FIRED_BY_INSERT(trigdata->tg_event))
2573 retval = PointerGetDatum(trigdata->tg_trigtuple);
2574 else if (TRIGGER_FIRED_BY_UPDATE(trigdata->tg_event))
2575 retval = PointerGetDatum(trigdata->tg_newtuple);
2576 else if (TRIGGER_FIRED_BY_DELETE(trigdata->tg_event))
2577 retval = PointerGetDatum(trigdata->tg_trigtuple);
2578 else if (TRIGGER_FIRED_BY_TRUNCATE(trigdata->tg_event))
2579 retval = PointerGetDatum(trigdata->tg_trigtuple);
2580 else
2581 retval = (Datum) 0; /* can this happen? */
2582 }
2583 else
2584 {
2585 HeapTuple trv;
2586 char *tmp;
2587
2588 tmp = sv2cstr(perlret);
2589
2590 if (pg_strcasecmp(tmp, "SKIP") == 0)
2591 trv = NULL;
2592 else if (pg_strcasecmp(tmp, "MODIFY") == 0)
2593 {
2594 TriggerData *trigdata = (TriggerData *) fcinfo->context;
2595
2596 if (TRIGGER_FIRED_BY_INSERT(trigdata->tg_event))
2597 trv = plperl_modify_tuple(hvTD, trigdata,
2598 trigdata->tg_trigtuple);
2599 else if (TRIGGER_FIRED_BY_UPDATE(trigdata->tg_event))
2600 trv = plperl_modify_tuple(hvTD, trigdata,
2601 trigdata->tg_newtuple);
2602 else
2603 {
2606 errmsg("ignoring modified row in DELETE trigger")));
2607 trv = NULL;
2608 }
2609 }
2610 else
2611 {
2612 ereport(ERROR,
2614 errmsg("result of PL/Perl trigger function must be undef, "
2615 "\"SKIP\", or \"MODIFY\"")));
2616 trv = NULL;
2617 }
2618 retval = PointerGetDatum(trv);
2619 pfree(tmp);
2620 }
2621
2622 /* Restore the previous error callback */
2624
2626 if (perlret)
2628
2629 return retval;
2630}
#define PG_USED_FOR_ASSERTS_ONLY
Definition c.h:243
#define WARNING
Definition elog.h:36
static SV * plperl_trigger_build_args(FunctionCallInfo fcinfo)
Definition plperl.c:1634
static SV * plperl_call_perl_trigger_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo, SV *td)
Definition plperl.c:2275
static HeapTuple plperl_modify_tuple(HV *hvTD, TriggerData *tdata, HeapTuple otup)
Definition plperl.c:1765
int pg_strcasecmp(const char *s1, const char *s2)
int SPI_register_trigger_data(TriggerData *tdata)
Definition spi.c:3364
TriggerEvent tg_event
Definition trigger.h:34
HeapTuple tg_newtuple
Definition trigger.h:37
HeapTuple tg_trigtuple
Definition trigger.h:36

References activate_interpreter(), ErrorContextCallback::arg, Assert, compile_plperl_function(), current_call_data, elog, ereport, errcode(), errmsg, ERROR, error_context_stack, fb(), increment_prodesc_refcount, plperl_proc_desc::interp, pfree(), pg_strcasecmp(), PG_USED_FOR_ASSERTS_ONLY, plperl_call_perl_trigger_func(), plperl_exec_callback(), plperl_modify_tuple(), plperl_trigger_build_args(), PointerGetDatum(), ErrorContextCallback::previous, plperl_call_data::prodesc, plperl_proc_desc::proname, SPI_connect(), SPI_finish(), SPI_OK_FINISH, SPI_register_trigger_data(), sv2cstr(), SvREFCNT_dec_current(), TriggerData::tg_event, TriggerData::tg_newtuple, TriggerData::tg_trigtuple, TRIGGER_FIRED_BY_DELETE, TRIGGER_FIRED_BY_INSERT, TRIGGER_FIRED_BY_TRUNCATE, TRIGGER_FIRED_BY_UPDATE, and WARNING.

Referenced by plperl_call_handler().

◆ plperl_trusted_init()

static void plperl_trusted_init ( void  )
static

Definition at line 960 of file plperl.c.

961{
962 dTHX;
963 HV *stash;
964 SV *sv;
965 char *key;
966 I32 klen;
967
968 /* use original require while we set up */
971
973 if (SvTRUE(ERRSV))
977 errcontext("while executing PLC_TRUSTED")));
978
979 /*
980 * Force loading of utf8 module now to prevent errors that can arise from
981 * the regex code later trying to load utf8 modules. See
982 * http://rt.perl.org/rt3/Ticket/Display.html?id=47576
983 */
984 eval_pv("my $a=chr(0x100); return $a =~ /\\xa9/i", FALSE);
985 if (SvTRUE(ERRSV))
989 errcontext("while executing utf8fix")));
990
991 /*
992 * Lock down the interpreter
993 */
994
995 /* switch to the safe require/dofile opcode for future code */
998
999 /*
1000 * prevent (any more) unsafe opcodes being compiled PL_op_mask is per
1001 * interpreter, so this only needs to be set once
1002 */
1004
1005 /* delete the DynaLoader:: namespace so extensions can't be loaded */
1006 stash = gv_stashpv("DynaLoader", GV_ADDWARN);
1008 while ((sv = hv_iternextsv(stash, &key, &klen)))
1009 {
1010 if (!isGV_with_GP(sv) || !GvCV(sv))
1011 continue;
1012 SvREFCNT_dec(GvCV(sv)); /* free the CV */
1013 GvCV_set(sv, NULL); /* prevent call via GV */
1014 }
1015 hv_clear(stash);
1016
1017 /* invalidate assorted caches */
1020
1021 /*
1022 * Execute plperl.on_plperl_init in the locked-down interpreter
1023 */
1025 {
1027 /* XXX need to find a way to determine a better errcode here */
1028 if (SvTRUE(ERRSV))
1029 ereport(ERROR,
1032 errcontext("while executing plperl.on_plperl_init")));
1033 }
1034}
static OP * pp_require_safe(pTHX)
Definition plperl.c:883
#define GvCV_set(gv, cv)
#define isGV_with_GP(gv)
Definition ppport.h:15703

References dTHX, ereport, errcode(), errcontext, errmsg, ERROR, ERRSV, fb(), GvCV_set, isGV_with_GP, PL_ppaddr, plperl_on_plperl_init, plperl_opmask, pp_require_orig, pp_require_safe(), strip_trailing_ws(), and sv2cstr().

Referenced by select_perl_context().

◆ plperl_untrusted_init()

static void plperl_untrusted_init ( void  )
static

Definition at line 1041 of file plperl.c.

1042{
1043 dTHX;
1044
1045 /*
1046 * Nothing to do except execute plperl.on_plperlu_init
1047 */
1049 {
1051 if (SvTRUE(ERRSV))
1052 ereport(ERROR,
1055 errcontext("while executing plperl.on_plperlu_init")));
1056 }
1057}

References dTHX, ereport, errcode(), errcontext, errmsg, ERROR, ERRSV, fb(), plperl_on_plperlu_init, strip_trailing_ws(), and sv2cstr().

Referenced by select_perl_context().

◆ plperl_util_elog()

void plperl_util_elog ( int  level,
SV msg 
)

Definition at line 4056 of file plperl.c.

4057{
4059 char *volatile cmsg = NULL;
4060
4061 /*
4062 * We intentionally omit check_spi_usage_allowed() here, as this seems
4063 * safe to allow even in the contexts that that function rejects.
4064 */
4065
4066 PG_TRY();
4067 {
4068 cmsg = sv2cstr(msg);
4069 elog(level, "%s", cmsg);
4070 pfree(cmsg);
4071 }
4072 PG_CATCH();
4073 {
4075
4076 /* Must reset elog.c's state */
4077 MemoryContextSwitchTo(oldcontext);
4078 edata = CopyErrorData();
4080
4081 if (cmsg)
4082 pfree(cmsg);
4083
4084 /* Punt the error to Perl */
4085 croak_cstr(edata->message);
4086 }
4087 PG_END_TRY();
4088}

References CopyErrorData(), croak_cstr(), CurrentMemoryContext, elog, fb(), FlushErrorState(), MemoryContextSwitchTo(), pfree(), PG_CATCH, PG_END_TRY, PG_TRY, and sv2cstr().

◆ plperl_validator()

Datum plperl_validator ( PG_FUNCTION_ARGS  )

Definition at line 1991 of file plperl.c.

1992{
1994 HeapTuple tuple;
1995 Form_pg_proc proc;
1996 char functyptype;
1997 int numargs;
1998 Oid *argtypes;
1999 char **argnames;
2000 char *argmodes;
2001 bool is_trigger = false;
2002 bool is_event_trigger = false;
2003 int i;
2004
2005 if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, funcoid))
2007
2008 /* Get the new function's pg_proc entry */
2010 if (!HeapTupleIsValid(tuple))
2011 elog(ERROR, "cache lookup failed for function %u", funcoid);
2012 proc = (Form_pg_proc) GETSTRUCT(tuple);
2013
2014 functyptype = get_typtype(proc->prorettype);
2015
2016 /* Disallow pseudotype result */
2017 /* except for TRIGGER, EVTTRIGGER, RECORD, or VOID */
2019 {
2020 if (proc->prorettype == TRIGGEROID)
2021 is_trigger = true;
2022 else if (proc->prorettype == EVENT_TRIGGEROID)
2023 is_event_trigger = true;
2024 else if (proc->prorettype != RECORDOID &&
2025 proc->prorettype != VOIDOID)
2026 ereport(ERROR,
2028 errmsg("PL/Perl functions cannot return type %s",
2029 format_type_be(proc->prorettype))));
2030 }
2031
2032 /* Disallow pseudotypes in arguments (either IN or OUT) */
2033 numargs = get_func_arg_info(tuple,
2034 &argtypes, &argnames, &argmodes);
2035 for (i = 0; i < numargs; i++)
2036 {
2037 if (get_typtype(argtypes[i]) == TYPTYPE_PSEUDO &&
2038 argtypes[i] != RECORDOID)
2039 ereport(ERROR,
2041 errmsg("PL/Perl functions cannot accept type %s",
2042 format_type_be(argtypes[i]))));
2043 }
2044
2045 ReleaseSysCache(tuple);
2046
2047 /* Postpone body checks if !check_function_bodies */
2049 {
2051 }
2052
2053 /* the result of a validator is ignored */
2055}
bool CheckFunctionValidatorAccess(Oid validatorOid, Oid functionOid)
Definition fmgr.c:2111
#define PG_GETARG_OID(n)
Definition fmgr.h:275
int get_func_arg_info(HeapTuple procTup, Oid **p_argtypes, char ***p_argnames, char **p_argmodes)
Definition funcapi.c:1382
bool check_function_bodies
Definition guc_tables.c:539
char get_typtype(Oid typid)
Definition lsyscache.c:2851

References check_function_bodies, CheckFunctionValidatorAccess(), compile_plperl_function(), elog, ereport, errcode(), errmsg, ERROR, fb(), Form_pg_proc, format_type_be(), get_func_arg_info(), get_typtype(), GETSTRUCT(), HeapTupleIsValid, i, ObjectIdGetDatum(), PG_GETARG_OID, PG_RETURN_VOID, ReleaseSysCache(), and SearchSysCache1().

Referenced by plperlu_validator().

◆ plperlu_call_handler()

Datum plperlu_call_handler ( PG_FUNCTION_ARGS  )

Definition at line 2069 of file plperl.c.

2070{
2071 return plperl_call_handler(fcinfo);
2072}
Datum plperl_call_handler(PG_FUNCTION_ARGS)
Definition plperl.c:1855

References plperl_call_handler().

◆ plperlu_inline_handler()

Datum plperlu_inline_handler ( PG_FUNCTION_ARGS  )

Definition at line 2077 of file plperl.c.

2078{
2079 return plperl_inline_handler(fcinfo);
2080}
Datum plperl_inline_handler(PG_FUNCTION_ARGS)
Definition plperl.c:1897

References plperl_inline_handler().

◆ plperlu_validator()

Datum plperlu_validator ( PG_FUNCTION_ARGS  )

Definition at line 2085 of file plperl.c.

2086{
2087 /* call plperl validator with our fcinfo so it gets our oid */
2088 return plperl_validator(fcinfo);
2089}
Datum plperl_validator(PG_FUNCTION_ARGS)
Definition plperl.c:1991

References plperl_validator().

◆ pp_require_safe()

static OP * pp_require_safe ( pTHX  )
static

Definition at line 883 of file plperl.c.

884{
885 dVAR;
886 dSP;
887 SV *sv,
888 **svp;
889 char *name;
890 STRLEN len;
891
892 sv = POPs;
893 name = SvPV(sv, len);
894 if (!(name && len > 0 && *name))
895 RETPUSHNO;
896
898 if (svp && *svp != &PL_sv_undef)
900
901 DIE(aTHX_ "Unable to load %s into plperl", name);
902
903 /*
904 * In most Perl versions, DIE() expands to a return statement, so the next
905 * line is not necessary. But in versions between but not including
906 * 5.11.1 and 5.13.3 it does not, so the next line is necessary to avoid a
907 * "control reaches end of non-void function" warning from gcc. Other
908 * compilers such as Solaris Studio will, however, issue a "statement not
909 * reached" warning instead.
910 */
911 return NULL;
912}
#define aTHX_
Definition ppport.h:11333
#define dVAR
Definition ppport.h:12519
const char * name

References aTHX_, dVAR, fb(), len, name, and PL_sv_undef.

Referenced by plperl_trusted_init(), and set_interp_require().

◆ select_perl_context()

static void select_perl_context ( bool  trusted)
static

Definition at line 556 of file plperl.c.

557{
558 Oid user_id;
559 plperl_interp_desc *interp_desc;
560 bool found;
561 PerlInterpreter *interp = NULL;
562
563 /* Find or create the interpreter hashtable entry for this userid */
564 if (trusted)
565 user_id = GetUserId();
566 else
567 user_id = InvalidOid;
568
569 interp_desc = hash_search(plperl_interp_hash, &user_id,
571 &found);
572 if (!found)
573 {
574 /* Initialize newly-created hashtable entry */
575 interp_desc->interp = NULL;
576 interp_desc->query_hash = NULL;
577 }
578
579 /* Make sure we have a query_hash for this interpreter */
580 if (interp_desc->query_hash == NULL)
581 {
583
585 hash_ctl.entrysize = sizeof(plperl_query_entry);
586 interp_desc->query_hash = hash_create("PL/Perl queries",
587 32,
588 &hash_ctl,
590 }
591
592 /*
593 * Quick exit if already have an interpreter
594 */
595 if (interp_desc->interp)
596 {
597 activate_interpreter(interp_desc);
598 return;
599 }
600
601 /*
602 * adopt held interp if free, else create new one if possible
603 */
605 {
606 /* first actual use of a perl interpreter */
607 interp = plperl_held_interp;
608
609 /*
610 * Reset the plperl_held_interp pointer first; if we fail during init
611 * we don't want to try again with the partially-initialized interp.
612 */
614
615 if (trusted)
617 else
619
620 /* successfully initialized, so arrange for cleanup */
622 }
623 else
624 {
625#ifdef MULTIPLICITY
626
627 /*
628 * plperl_init_interp will change Perl's idea of the active
629 * interpreter. Reset plperl_active_interp temporarily, so that if we
630 * hit an error partway through here, we'll make sure to switch back
631 * to a non-broken interpreter before running any other Perl
632 * functions.
633 */
635
636 /* Now build the new interpreter */
637 interp = plperl_init_interp();
638
639 if (trusted)
641 else
643#else
646 errmsg("cannot allocate multiple Perl interpreters on this platform")));
647#endif
648 }
649
650 set_interp_require(trusted);
651
652 /*
653 * Since the timing of first use of PL/Perl can't be predicted, any
654 * database interaction during initialization is problematic. Including,
655 * but not limited to, security definer issues. So we only enable access
656 * to the database AFTER on_*_init code has run. See
657 * http://archives.postgresql.org/pgsql-hackers/2010-01/msg02669.php
658 */
659 {
660 dTHX;
661
662 newXS("PostgreSQL::InServer::SPI::bootstrap",
664
665 eval_pv("PostgreSQL::InServer::SPI::bootstrap()", FALSE);
666 if (SvTRUE(ERRSV))
670 errcontext("while executing PostgreSQL::InServer::SPI::bootstrap")));
671 }
672
673 /* Fully initialized, so mark the hashtable entry valid */
674 interp_desc->interp = interp;
675
676 /* And mark this as the active interpreter */
677 plperl_active_interp = interp_desc;
678}
#define HASH_STRINGS
Definition hsearch.h:96
void on_proc_exit(pg_on_exit_callback function, Datum arg)
Definition ipc.c:316
static void plperl_trusted_init(void)
Definition plperl.c:960
static void plperl_untrusted_init(void)
Definition plperl.c:1041
static void plperl_fini(int code, Datum arg)
Definition plperl.c:512
EXTERN_C void boot_PostgreSQL__InServer__SPI(pTHX_ CV *cv)
Size keysize
Definition hsearch.h:75

References activate_interpreter(), boot_PostgreSQL__InServer__SPI(), dTHX, ereport, errcode(), errcontext, errmsg, ERROR, ERRSV, fb(), GetUserId(), hash_create(), HASH_ELEM, HASH_ENTER, hash_search(), HASH_STRINGS, plperl_interp_desc::interp, InvalidOid, HASHCTL::keysize, NAMEDATALEN, on_proc_exit(), plperl_active_interp, plperl_fini(), plperl_held_interp, plperl_init_interp(), plperl_interp_hash, plperl_trusted_init(), plperl_untrusted_init(), plperl_interp_desc::query_hash, set_interp_require(), strip_trailing_ws(), and sv2cstr().

Referenced by compile_plperl_function(), and plperl_inline_handler().

◆ set_interp_require()

static void set_interp_require ( bool  trusted)
static

Definition at line 493 of file plperl.c.

494{
495 if (trusted)
496 {
499 }
500 else
501 {
504 }
505}

References fb(), PL_ppaddr, pp_require_orig, and pp_require_safe().

Referenced by activate_interpreter(), and select_perl_context().

◆ split_array()

static SV * split_array ( plperl_array_info info,
int  first,
int  last,
int  nest 
)
static

Definition at line 1562 of file plperl.c.

1563{
1564 dTHX;
1565 int i;
1566 AV *result;
1567
1568 /* we should only be called when we have something to split */
1569 Assert(info->ndims > 0);
1570
1571 /* since this function recurses, it could be driven to stack overflow */
1573
1574 /*
1575 * Base case, return a reference to a single-dimensional array
1576 */
1577 if (nest >= info->ndims - 1)
1578 return make_array_ref(info, first, last);
1579
1580 result = newAV();
1581 for (i = first; i < last; i += info->nelems[nest + 1])
1582 {
1583 /* Recursively form references to arrays of lower dimensions */
1584 SV *ref = split_array(info, i, i + info->nelems[nest + 1], nest + 1);
1585
1586 av_push(result, ref);
1587 }
1588 return newRV_noinc((SV *) result);
1589}
static SV * make_array_ref(plperl_array_info *info, int first, int last)
Definition plperl.c:1596

References Assert, check_stack_depth(), dTHX, fb(), i, make_array_ref(), plperl_array_info::ndims, plperl_array_info::nelems, newRV_noinc, and split_array().

Referenced by plperl_ref_from_pg_array(), and split_array().

◆ strip_trailing_ws()

static char * strip_trailing_ws ( const char msg)
static

Definition at line 1064 of file plperl.c.

1065{
1066 char *res = pstrdup(msg);
1067 int len = strlen(res);
1068
1069 while (len > 0 && isspace((unsigned char) res[len - 1]))
1070 res[--len] = '\0';
1071 return res;
1072}

References fb(), len, and pstrdup().

Referenced by plperl_call_perl_event_trigger_func(), plperl_call_perl_func(), plperl_call_perl_trigger_func(), plperl_create_sub(), plperl_init_interp(), plperl_trusted_init(), plperl_untrusted_init(), and select_perl_context().

◆ SvREFCNT_dec_current()

static void SvREFCNT_dec_current ( SV sv)
inlinestatic

Definition at line 315 of file plperl.c.

316{
317 dTHX;
318
320}

References dTHX, and fb().

Referenced by free_plperl_function(), plperl_event_trigger_handler(), plperl_func_handler(), plperl_inline_handler(), and plperl_trigger_handler().

◆ validate_plperl_function()

static bool validate_plperl_function ( plperl_proc_ptr proc_ptr,
HeapTuple  procTup 
)
static

Definition at line 2670 of file plperl.c.

2671{
2672 if (proc_ptr && proc_ptr->proc_ptr)
2673 {
2674 plperl_proc_desc *prodesc = proc_ptr->proc_ptr;
2675 bool uptodate;
2676
2677 /************************************************************
2678 * If it's present, must check whether it's still up to date.
2679 * This is needed because CREATE OR REPLACE FUNCTION can modify the
2680 * function's pg_proc entry without changing its OID.
2681 ************************************************************/
2682 uptodate = (prodesc->fn_xmin == HeapTupleHeaderGetRawXmin(procTup->t_data) &&
2683 ItemPointerEquals(&prodesc->fn_tid, &procTup->t_self));
2684
2685 if (uptodate)
2686 return true;
2687
2688 /* Otherwise, unlink the obsoleted entry from the hashtable ... */
2689 proc_ptr->proc_ptr = NULL;
2690 /* ... and release the corresponding refcount, probably deleting it */
2692 }
2693
2694 return false;
2695}
bool ItemPointerEquals(const ItemPointerData *pointer1, const ItemPointerData *pointer2)
Definition itemptr.c:35

References decrement_prodesc_refcount, fb(), plperl_proc_desc::fn_tid, plperl_proc_desc::fn_xmin, HeapTupleHeaderGetRawXmin(), ItemPointerEquals(), and plperl_proc_ptr::proc_ptr.

Referenced by compile_plperl_function().

Variable Documentation

◆ current_call_data

◆ plperl_active_interp

◆ plperl_ending

bool plperl_ending = false
static

Definition at line 239 of file plperl.c.

Referenced by check_spi_usage_allowed(), and plperl_fini().

◆ plperl_held_interp

PerlInterpreter* plperl_held_interp = NULL
static

Definition at line 231 of file plperl.c.

Referenced by _PG_init(), plperl_fini(), and select_perl_context().

◆ plperl_interp_hash

HTAB* plperl_interp_hash = NULL
static

Definition at line 226 of file plperl.c.

Referenced by _PG_init(), plperl_fini(), and select_perl_context().

◆ plperl_on_init

char* plperl_on_init = NULL
static

Definition at line 235 of file plperl.c.

Referenced by _PG_init(), and plperl_init_interp().

◆ plperl_on_plperl_init

char* plperl_on_plperl_init = NULL
static

Definition at line 236 of file plperl.c.

Referenced by _PG_init(), and plperl_trusted_init().

◆ plperl_on_plperlu_init

char* plperl_on_plperlu_init = NULL
static

Definition at line 237 of file plperl.c.

Referenced by _PG_init(), and plperl_untrusted_init().

◆ plperl_opmask

char plperl_opmask[MAXO]
static

Definition at line 241 of file plperl.c.

Referenced by _PG_init(), plperl_init_interp(), and plperl_trusted_init().

◆ plperl_proc_hash

HTAB* plperl_proc_hash = NULL
static

Definition at line 227 of file plperl.c.

Referenced by _PG_init(), and compile_plperl_function().

◆ plperl_use_strict

bool plperl_use_strict = false
static

Definition at line 234 of file plperl.c.

Referenced by _PG_init(), and plperl_create_sub().

◆ pp_require_orig

OP *(* pp_require_orig) (pTHX) ( pTHX  ) = NULL
static

Definition at line 240 of file plperl.c.

Referenced by plperl_init_interp(), plperl_trusted_init(), and set_interp_require().