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:1285
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition dynahash.c:360
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:5129
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:5049
void MarkGUCPrefixReserved(const char *className)
Definition guc.c:5186
@ PGC_SUSET
Definition guc.h:78
@ PGC_USERSET
Definition guc.h:79
@ PGC_SIGHUP
Definition guc.h:75
#define HASH_ELEM
Definition hsearch.h:90
#define HASH_BLOBS
Definition hsearch.h:92
void pg_bindtextdomain(const char *domain)
Definition miscinit.c:1890
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 1304 of file plperl.c.

1305{
1306 Oid typinput;
1307
1308 /* XXX would be better to cache these lookups */
1309 getTypeInputInfo(typid,
1310 &typinput, typioparam);
1311 fmgr_info(typinput, finfo);
1312}
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:943
#define OidIsValid(objectId)
Definition c.h:858
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 1174 of file plperl.c.

1178{
1179 dTHX;
1180 int i;
1181 int len = av_len(av) + 1;
1182
1183 for (i = 0; i < len; i++)
1184 {
1185 /* fetch the array element */
1186 SV **svp = av_fetch(av, i, FALSE);
1187
1188 /* see if this element is an array, if so get that */
1190
1191 /* multi-dimensional array? */
1192 if (sav)
1193 {
1194 AV *nav = (AV *) SvRV(sav);
1195
1196 /* set size when at first element in this level, else compare */
1197 if (i == 0 && *ndims == cur_depth)
1198 {
1199 /* array after some scalars at same level? */
1200 if (*astatep != NULL)
1201 ereport(ERROR,
1203 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1204 /* too many dimensions? */
1205 if (cur_depth + 1 > MAXDIM)
1206 ereport(ERROR,
1208 errmsg("number of array dimensions exceeds the maximum allowed (%d)",
1209 MAXDIM)));
1210 /* OK, add a dimension */
1211 dims[*ndims] = av_len(nav) + 1;
1212 (*ndims)++;
1213 }
1214 else if (cur_depth >= *ndims ||
1215 av_len(nav) + 1 != dims[cur_depth])
1216 ereport(ERROR,
1218 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1219
1220 /* recurse to fetch elements of this sub-array */
1222 ndims, dims, cur_depth + 1,
1223 elemtypid, typmod,
1224 finfo, typioparam);
1225 }
1226 else
1227 {
1228 Datum dat;
1229 bool isnull;
1230
1231 /* scalar after some sub-arrays at same level? */
1232 if (*ndims != cur_depth)
1233 ereport(ERROR,
1235 errmsg("multidimensional arrays must have array expressions with matching dimensions")));
1236
1238 elemtypid,
1239 typmod,
1240 NULL,
1241 finfo,
1242 typioparam,
1243 &isnull);
1244
1245 /* Create ArrayBuildState if we didn't already */
1246 if (*astatep == NULL)
1248 CurrentMemoryContext, true);
1249
1250 /* ... and save the element value in it */
1251 (void) accumArrayResult(*astatep, dat, isnull,
1253 }
1254 }
1255}
#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:40
#define ereport(elevel,...)
Definition elog.h:152
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:1327
static SV * get_perl_array_ref(SV *sv)
Definition plperl.c:1142
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:1174
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 3111 of file plperl.c.

3112{
3113 /* see comment in plperl_fini() */
3114 if (plperl_ending)
3115 {
3116 /* simple croak as we don't want to involve PostgreSQL code */
3117 croak("SPI functions can not be used in END blocks");
3118 }
3119
3120 /*
3121 * Disallow SPI usage if we're not executing a fully-compiled plperl
3122 * function. It might seem impossible to get here in that case, but there
3123 * are cases where Perl will try to execute code during compilation. If
3124 * we proceed we are likely to crash trying to dereference the prodesc
3125 * pointer. Working around that might be possible, but it seems unwise
3126 * because it'd allow code execution to happen while validating a
3127 * function, which is undesirable.
3128 */
3130 {
3131 /* simple croak as we don't want to involve PostgreSQL code */
3132 croak("SPI functions can not be used during function compilation");
3133 }
3134}
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 2720 of file plperl.c.

2721{
2724 plperl_proc_key proc_key;
2725 plperl_proc_ptr *proc_ptr;
2726 plperl_proc_desc *volatile prodesc = NULL;
2727 volatile MemoryContext proc_cxt = NULL;
2730
2731 /* We'll need the pg_proc tuple in any case... */
2734 elog(ERROR, "cache lookup failed for function %u", fn_oid);
2736
2737 /*
2738 * Try to find function in plperl_proc_hash. The reason for this
2739 * overcomplicated-seeming lookup procedure is that we don't know whether
2740 * it's plperl or plperlu, and don't want to spend a lookup in pg_language
2741 * to find out.
2742 */
2743 proc_key.proc_id = fn_oid;
2744 proc_key.is_trigger = is_trigger;
2745 proc_key.user_id = GetUserId();
2746 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2747 HASH_FIND, NULL);
2748 if (validate_plperl_function(proc_ptr, procTup))
2749 {
2750 /* Found valid plperl entry */
2752 return proc_ptr->proc_ptr;
2753 }
2754
2755 /* If not found or obsolete, maybe it's plperlu */
2756 proc_key.user_id = InvalidOid;
2757 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2758 HASH_FIND, NULL);
2759 if (validate_plperl_function(proc_ptr, procTup))
2760 {
2761 /* Found valid plperlu entry */
2763 return proc_ptr->proc_ptr;
2764 }
2765
2766 /************************************************************
2767 * If we haven't found it in the hashtable, we analyze
2768 * the function's arguments and return type and store
2769 * the in-/out-functions in the prodesc block,
2770 * then we load the procedure into the Perl interpreter,
2771 * and last we create a new hashtable entry for it.
2772 ************************************************************/
2773
2774 /* Set a callback for reporting compilation errors */
2779
2780 PG_TRY();
2781 {
2788 bool isnull;
2789 char *proc_source;
2790 MemoryContext oldcontext;
2791
2792 /************************************************************
2793 * Allocate a context that will hold all PG data for the procedure.
2794 ************************************************************/
2796 "PL/Perl function",
2798
2799 /************************************************************
2800 * Allocate and fill a new procedure description block.
2801 * struct prodesc and subsidiary data must all live in proc_cxt.
2802 ************************************************************/
2803 oldcontext = MemoryContextSwitchTo(proc_cxt);
2805 prodesc->proname = pstrdup(NameStr(procStruct->proname));
2807 prodesc->fn_cxt = proc_cxt;
2808 prodesc->fn_refcount = 0;
2809 prodesc->fn_xmin = HeapTupleHeaderGetRawXmin(procTup->t_data);
2810 prodesc->fn_tid = procTup->t_self;
2811 prodesc->nargs = procStruct->pronargs;
2812 prodesc->arg_out_func = (FmgrInfo *) palloc0(prodesc->nargs * sizeof(FmgrInfo));
2813 prodesc->arg_is_rowtype = (bool *) palloc0(prodesc->nargs * sizeof(bool));
2814 prodesc->arg_arraytype = (Oid *) palloc0(prodesc->nargs * sizeof(Oid));
2815 MemoryContextSwitchTo(oldcontext);
2816
2817 /* Remember if function is STABLE/IMMUTABLE */
2818 prodesc->fn_readonly =
2819 (procStruct->provolatile != PROVOLATILE_VOLATILE);
2820
2821 /* Fetch protrftypes */
2823 Anum_pg_proc_protrftypes, &isnull);
2825 prodesc->trftypes = isnull ? NIL : oid_array_to_list(protrftypes_datum);
2826 MemoryContextSwitchTo(oldcontext);
2827
2828 /************************************************************
2829 * Lookup the pg_language tuple by Oid
2830 ************************************************************/
2832 ObjectIdGetDatum(procStruct->prolang));
2834 elog(ERROR, "cache lookup failed for language %u",
2835 procStruct->prolang);
2837 prodesc->lang_oid = langStruct->oid;
2838 prodesc->lanpltrusted = langStruct->lanpltrusted;
2840
2841 /************************************************************
2842 * Get the required information for input conversion of the
2843 * return value.
2844 ************************************************************/
2845 if (!is_trigger && !is_event_trigger)
2846 {
2847 Oid rettype = procStruct->prorettype;
2848
2851 elog(ERROR, "cache lookup failed for type %u", rettype);
2853
2854 /* Disallow pseudotype result, except VOID or RECORD */
2855 if (typeStruct->typtype == TYPTYPE_PSEUDO)
2856 {
2857 if (rettype == VOIDOID ||
2858 rettype == RECORDOID)
2859 /* okay */ ;
2860 else if (rettype == TRIGGEROID ||
2861 rettype == EVENT_TRIGGEROID)
2862 ereport(ERROR,
2864 errmsg("trigger functions can only be called "
2865 "as triggers")));
2866 else
2867 ereport(ERROR,
2869 errmsg("PL/Perl functions cannot return type %s",
2870 format_type_be(rettype))));
2871 }
2872
2873 prodesc->result_oid = rettype;
2874 prodesc->fn_retisset = procStruct->proretset;
2875 prodesc->fn_retistuple = type_is_rowtype(rettype);
2877
2878 fmgr_info_cxt(typeStruct->typinput,
2879 &(prodesc->result_in_func),
2880 proc_cxt);
2882
2884 }
2885
2886 /************************************************************
2887 * Get the required information for output conversion
2888 * of all procedure arguments
2889 ************************************************************/
2890 if (!is_trigger && !is_event_trigger)
2891 {
2892 int i;
2893
2894 for (i = 0; i < prodesc->nargs; i++)
2895 {
2896 Oid argtype = procStruct->proargtypes.values[i];
2897
2900 elog(ERROR, "cache lookup failed for type %u", argtype);
2902
2903 /* Disallow pseudotype argument, except RECORD */
2904 if (typeStruct->typtype == TYPTYPE_PSEUDO &&
2905 argtype != RECORDOID)
2906 ereport(ERROR,
2908 errmsg("PL/Perl functions cannot accept type %s",
2909 format_type_be(argtype))));
2910
2911 if (type_is_rowtype(argtype))
2912 prodesc->arg_is_rowtype[i] = true;
2913 else
2914 {
2915 prodesc->arg_is_rowtype[i] = false;
2916 fmgr_info_cxt(typeStruct->typoutput,
2917 &(prodesc->arg_out_func[i]),
2918 proc_cxt);
2919 }
2920
2921 /* Identify array-type arguments */
2923 prodesc->arg_arraytype[i] = argtype;
2924 else
2925 prodesc->arg_arraytype[i] = InvalidOid;
2926
2928 }
2929 }
2930
2931 /************************************************************
2932 * create the text of the anonymous subroutine.
2933 * we do not use a named subroutine so that we can call directly
2934 * through the reference.
2935 ************************************************************/
2938 proc_source = TextDatumGetCString(prosrcdatum);
2939
2940 /************************************************************
2941 * Create the procedure in the appropriate interpreter
2942 ************************************************************/
2943
2945
2946 prodesc->interp = plperl_active_interp;
2947
2948 plperl_create_sub(prodesc, proc_source, fn_oid);
2949
2951
2952 pfree(proc_source);
2953
2954 if (!prodesc->reference) /* can this happen? */
2955 elog(ERROR, "could not create PL/Perl internal procedure");
2956
2957 /************************************************************
2958 * OK, link the procedure into the correct hashtable entry.
2959 * Note we assume that the hashtable entry either doesn't exist yet,
2960 * or we already cleared its proc_ptr during the validation attempts
2961 * above. So no need to decrement an old refcount here.
2962 ************************************************************/
2963 proc_key.user_id = prodesc->lanpltrusted ? GetUserId() : InvalidOid;
2964
2965 proc_ptr = hash_search(plperl_proc_hash, &proc_key,
2966 HASH_ENTER, NULL);
2967 /* We assume these two steps can't throw an error: */
2968 proc_ptr->proc_ptr = prodesc;
2970 }
2971 PG_CATCH();
2972 {
2973 /*
2974 * If we got as far as creating a reference, we should be able to use
2975 * free_plperl_function() to clean up. If not, then at most we have
2976 * some PG memory resources in proc_cxt, which we can just delete.
2977 */
2978 if (prodesc && prodesc->reference)
2979 free_plperl_function(prodesc);
2980 else if (proc_cxt)
2982
2983 /* Be sure to restore the previous interpreter, too, for luck */
2985
2986 PG_RE_THROW();
2987 }
2988 PG_END_TRY();
2989
2990 /* restore previous error callback */
2992
2994
2995 return prodesc;
2996}
#define TextDatumGetCString(d)
Definition builtins.h:99
#define NameStr(name)
Definition c.h:835
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition dynahash.c:889
ErrorContextCallback * error_context_stack
Definition elog.c:99
#define PG_RE_THROW()
Definition elog.h:407
#define PG_TRY(...)
Definition elog.h:374
#define PG_END_TRY(...)
Definition elog.h:399
#define PG_CATCH(...)
Definition elog.h:384
#define elog(elevel,...)
Definition elog.h:228
#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:108
@ HASH_ENTER
Definition hsearch.h:109
#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:2100
#define increment_prodesc_refcount(prodesc)
Definition plperl.c:130
static void free_plperl_function(plperl_proc_desc *prodesc)
Definition plperl.c:2702
static void select_perl_context(bool trusted)
Definition plperl.c:556
static void plperl_compile_callback(void *arg)
Definition plperl.c:4160
static bool validate_plperl_function(plperl_proc_ptr *proc_ptr, HeapTuple procTup)
Definition plperl.c:2673
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:299
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:265
Datum SysCacheGetAttrNotNull(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber)
Definition syscache.c:626
HeapTuple SearchSysCache1(SysCacheIdentifier cacheId, Datum key1)
Definition syscache.c:221
Datum SysCacheGetAttr(SysCacheIdentifier cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
Definition syscache.c:596

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 2702 of file plperl.c.

2703{
2704 Assert(prodesc->fn_refcount == 0);
2705 /* Release CODE reference, if we have one, from the appropriate interp */
2706 if (prodesc->reference)
2707 {
2709
2710 activate_interpreter(prodesc->interp);
2713 }
2714 /* Release all PG-owned data for this proc */
2715 MemoryContextDelete(prodesc->fn_cxt);
2716}
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 1142 of file plperl.c.

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

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 4125 of file plperl.c.

4126{
4127 dTHX;
4128 int32 hlen;
4129 char *hkey;
4130 SV **ret;
4131
4132 hkey = pg_server_to_any(key, strlen(key), PG_UTF8);
4133
4134 /* See notes in hv_store_string */
4135 hlen = -(int) strlen(hkey);
4136 ret = hv_fetch(hv, hkey, hlen, 0);
4137
4138 if (hkey != key)
4139 pfree(hkey);
4140
4141 return ret;
4142}
int32_t int32
Definition c.h:620
#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 4098 of file plperl.c.

4099{
4100 dTHX;
4101 int32 hlen;
4102 char *hkey;
4103 SV **ret;
4104
4105 hkey = pg_server_to_any(key, strlen(key), PG_UTF8);
4106
4107 /*
4108 * hv_store() recognizes a negative klen parameter as meaning a UTF-8
4109 * encoded key.
4110 */
4111 hlen = -(int) strlen(hkey);
4112 ret = hv_store(hv, hkey, hlen, val, 0);
4113
4114 if (hkey != key)
4115 pfree(hkey);
4116
4117 return ret;
4118}
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 1597 of file plperl.c.

1598{
1599 dTHX;
1600 int i;
1601 AV *result = newAV();
1602
1603 for (i = first; i < last; i++)
1604 {
1605 if (info->nulls[i])
1606 {
1607 /*
1608 * We can't use &PL_sv_undef here. See "AVs, HVs and undefined
1609 * values" in perlguts.
1610 */
1611 av_push(result, newSV(0));
1612 }
1613 else
1614 {
1615 Datum itemvalue = info->elements[i];
1616
1617 if (info->transform_proc.fn_oid)
1619 else if (info->elem_is_rowtype)
1620 /* Handle composite type elements */
1622 else
1623 {
1624 char *val = OutputFunctionCall(&info->proc, itemvalue);
1625
1627 }
1628 }
1629 }
1630 return newRV_noinc((SV *) result);
1631}
uint32 result
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:3000
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, result, 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 1261 of file plperl.c.

1262{
1263 dTHX;
1264 AV *nav = (AV *) SvRV(src);
1265 ArrayBuildState *astate = NULL;
1266 Oid elemtypid;
1267 FmgrInfo finfo;
1268 Oid typioparam;
1269 int dims[MAXDIM];
1270 int lbs[MAXDIM];
1271 int ndims = 1;
1272 int i;
1273
1274 elemtypid = get_element_type(typid);
1275 if (!elemtypid)
1276 ereport(ERROR,
1278 errmsg("cannot convert Perl array to non-array type %s",
1279 format_type_be(typid))));
1280
1281 _sv_to_datum_finfo(elemtypid, &finfo, &typioparam);
1282
1283 memset(dims, 0, sizeof(dims));
1284 dims[0] = av_len(nav) + 1;
1285
1287 &ndims, dims, 1,
1288 elemtypid, typmod,
1289 &finfo, typioparam);
1290
1291 /* ensure we get zero-D array for no inputs, as per PG convention */
1292 if (astate == NULL)
1294
1295 for (i = 0; i < ndims; i++)
1296 lbs[i] = 1;
1297
1298 return makeMdArrayResult(astate, ndims, dims, lbs,
1299 CurrentMemoryContext, true);
1300}
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:1304
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;
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
1109 attr = TupleDescAttr(td, attn - 1);
1111 attr->atttypid,
1112 attr->atttypmod,
1113 NULL,
1114 NULL,
1115 InvalidOid,
1116 &nulls[attn - 1]);
1117
1118 pfree(key);
1119 }
1121
1122 tup = heap_form_tuple(td, values, nulls);
1123 pfree(values);
1124 pfree(nulls);
1125 return tup;
1126}
static Datum values[MAXATTR]
Definition bootstrap.c:190
#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:1025
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 1858 of file plperl.c.

1859{
1860 Datum retval = (Datum) 0;
1864
1865 /* Initialize current-call status record */
1866 MemSet(&this_call_data, 0, sizeof(this_call_data));
1867 this_call_data.fcinfo = fcinfo;
1868
1869 PG_TRY();
1870 {
1872 if (CALLED_AS_TRIGGER(fcinfo))
1873 retval = plperl_trigger_handler(fcinfo);
1874 else if (CALLED_AS_EVENT_TRIGGER(fcinfo))
1875 {
1877 retval = (Datum) 0;
1878 }
1879 else
1880 retval = plperl_func_handler(fcinfo);
1881 }
1882 PG_FINALLY();
1883 {
1886 if (this_call_data.prodesc)
1888 }
1889 PG_END_TRY();
1890
1891 return retval;
1892}
#define MemSet(start, val, len)
Definition c.h:1107
#define PG_FINALLY(...)
Definition elog.h:391
#define CALLED_AS_EVENT_TRIGGER(fcinfo)
static void plperl_event_trigger_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2637
static Datum plperl_func_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2407
#define decrement_prodesc_refcount(prodesc)
Definition plperl.c:132
static Datum plperl_trigger_handler(PG_FUNCTION_ARGS)
Definition plperl.c:2525
#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 2346 of file plperl.c.

2349{
2350 dTHX;
2351 dSP;
2352 SV *retval,
2353 *TDsv;
2354 int count;
2355
2356 ENTER;
2357 SAVETMPS;
2358
2359 TDsv = get_sv("main::_TD", 0);
2360 if (!TDsv)
2361 ereport(ERROR,
2363 errmsg("couldn't fetch $_TD")));
2364
2365 save_item(TDsv); /* local $_TD */
2366 sv_setsv(TDsv, td);
2367
2368 PUSHMARK(sp);
2369 PUTBACK;
2370
2371 /* Do NOT use G_KEEPERR here */
2372 count = call_sv(desc->reference, G_SCALAR | G_EVAL);
2373
2374 SPAGAIN;
2375
2376 if (count != 1)
2377 {
2378 PUTBACK;
2379 FREETMPS;
2380 LEAVE;
2381 ereport(ERROR,
2383 errmsg("didn't get a return item from trigger function")));
2384 }
2385
2386 if (SvTRUE(ERRSV))
2387 {
2388 (void) POPs;
2389 PUTBACK;
2390 FREETMPS;
2391 LEAVE;
2392 /* XXX need to find a way to determine a better errcode here */
2393 ereport(ERROR,
2396 }
2397
2398 retval = newSVsv(POPs);
2399 (void) retval; /* silence compiler warning */
2400
2401 PUTBACK;
2402 FREETMPS;
2403 LEAVE;
2404}
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 2185 of file plperl.c.

2186{
2187 dTHX;
2188 dSP;
2189 SV *retval;
2190 int i;
2191 int count;
2192 Oid *argtypes = NULL;
2193 int nargs = 0;
2194
2195 ENTER;
2196 SAVETMPS;
2197
2198 PUSHMARK(SP);
2199 EXTEND(sp, desc->nargs);
2200
2201 /* Get signature for true functions; inline blocks have no args. */
2202 if (fcinfo->flinfo->fn_oid)
2203 get_func_signature(fcinfo->flinfo->fn_oid, &argtypes, &nargs);
2204 Assert(nargs == desc->nargs);
2205
2206 for (i = 0; i < desc->nargs; i++)
2207 {
2208 if (fcinfo->args[i].isnull)
2210 else if (desc->arg_is_rowtype[i])
2211 {
2212 SV *sv = plperl_hash_from_datum(fcinfo->args[i].value);
2213
2215 }
2216 else
2217 {
2218 SV *sv;
2219 Oid funcid;
2220
2221 if (OidIsValid(desc->arg_arraytype[i]))
2224 sv = (SV *) DatumGetPointer(OidFunctionCall1(funcid, fcinfo->args[i].value));
2225 else
2226 {
2227 char *tmp;
2228
2229 tmp = OutputFunctionCall(&(desc->arg_out_func[i]),
2230 fcinfo->args[i].value);
2231 sv = cstr2sv(tmp);
2232 pfree(tmp);
2233 }
2234
2236 }
2237 }
2238 PUTBACK;
2239
2240 /* Do NOT use G_KEEPERR here */
2241 count = call_sv(desc->reference, G_SCALAR | G_EVAL);
2242
2243 SPAGAIN;
2244
2245 if (count != 1)
2246 {
2247 PUTBACK;
2248 FREETMPS;
2249 LEAVE;
2250 ereport(ERROR,
2252 errmsg("didn't get a return item from function")));
2253 }
2254
2255 if (SvTRUE(ERRSV))
2256 {
2257 (void) POPs;
2258 PUTBACK;
2259 FREETMPS;
2260 LEAVE;
2261 /* XXX need to find a way to determine a better errcode here */
2262 ereport(ERROR,
2265 }
2266
2267 retval = newSVsv(POPs);
2268
2269 PUTBACK;
2270 FREETMPS;
2271 LEAVE;
2272
2273 return retval;
2274}
#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:1484
#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 2278 of file plperl.c.

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

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

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 2100 of file plperl.c.

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

1749{
1750 dTHX;
1752 HV *hv;
1753
1754 hv = newHV();
1755
1756 tdata = (EventTriggerData *) fcinfo->context;
1757
1758 hv_store_string(hv, "event", cstr2sv(tdata->event));
1760
1761 return newRV_noinc((SV *) hv);
1762}
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 2637 of file plperl.c.

2638{
2639 plperl_proc_desc *prodesc;
2640 SV *svTD;
2642
2643 /* Connect to SPI manager */
2644 SPI_connect();
2645
2646 /* Find or compile the function */
2647 prodesc = compile_plperl_function(fcinfo->flinfo->fn_oid, false, true);
2648 current_call_data->prodesc = prodesc;
2650
2651 /* Set a callback for error reporting */
2654 pl_error_context.arg = prodesc->proname;
2656
2657 activate_interpreter(prodesc->interp);
2658
2660 plperl_call_perl_event_trigger_func(prodesc, fcinfo, svTD);
2661
2662 if (SPI_finish() != SPI_OK_FINISH)
2663 elog(ERROR, "SPI_finish() failed");
2664
2665 /* Restore the previous error callback */
2667
2669}
static SV * plperl_event_trigger_build_args(FunctionCallInfo fcinfo)
Definition plperl.c:1748
static void plperl_exec_callback(void *arg)
Definition plperl.c:4148
static plperl_proc_desc * compile_plperl_function(Oid fn_oid, bool is_trigger, bool is_event_trigger)
Definition plperl.c:2720
static void plperl_call_perl_event_trigger_func(plperl_proc_desc *desc, FunctionCallInfo fcinfo, SV *td)
Definition plperl.c:2346
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 4148 of file plperl.c.

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

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:1352
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition dynahash.c:1317
#define DEBUG3
Definition elog.h:29
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 2407 of file plperl.c.

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

3001{
3002 HeapTupleHeader td;
3003 Oid tupType;
3005 TupleDesc tupdesc;
3007 SV *sv;
3008
3009 td = DatumGetHeapTupleHeader(attr);
3010
3011 /* Extract rowtype info and find a tupdesc */
3015
3016 /* Build a temporary HeapTuple control structure */
3018 tmptup.t_data = td;
3019
3020 sv = plperl_hash_from_tuple(&tmptup, tupdesc, true);
3021 ReleaseTupleDesc(tupdesc);
3022
3023 return sv;
3024}
#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:3028
#define ReleaseTupleDesc(tupdesc)
Definition tupdesc.h:240
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 3028 of file plperl.c.

3029{
3030 dTHX;
3031 HV *hv;
3032 int i;
3033
3034 /* since this function recurses, it could be driven to stack overflow */
3036
3037 hv = newHV();
3038 hv_ksplit(hv, tupdesc->natts); /* pre-grow the hash */
3039
3040 for (i = 0; i < tupdesc->natts; i++)
3041 {
3042 Datum attr;
3043 bool isnull,
3044 typisvarlena;
3045 char *attname;
3046 Oid typoutput;
3047 Form_pg_attribute att = TupleDescAttr(tupdesc, i);
3048
3049 if (att->attisdropped)
3050 continue;
3051
3052 if (att->attgenerated)
3053 {
3054 /* don't include unless requested */
3055 if (!include_generated)
3056 continue;
3057 /* never include virtual columns */
3058 if (att->attgenerated == ATTRIBUTE_GENERATED_VIRTUAL)
3059 continue;
3060 }
3061
3062 attname = NameStr(att->attname);
3063 attr = heap_getattr(tuple, i + 1, tupdesc, &isnull);
3064
3065 if (isnull)
3066 {
3067 /*
3068 * Store (attname => undef) and move on. Note we can't use
3069 * &PL_sv_undef here; see "AVs, HVs and undefined values" in
3070 * perlguts for an explanation.
3071 */
3073 continue;
3074 }
3075
3076 if (type_is_rowtype(att->atttypid))
3077 {
3078 SV *sv = plperl_hash_from_datum(attr);
3079
3081 }
3082 else
3083 {
3084 SV *sv;
3085 Oid funcid;
3086
3087 if (OidIsValid(get_base_element_type(att->atttypid)))
3088 sv = plperl_ref_from_pg_array(attr, att->atttypid);
3090 sv = (SV *) DatumGetPointer(OidFunctionCall1(funcid, attr));
3091 else
3092 {
3093 char *outputstr;
3094
3095 /* XXX should have a way to cache these lookups */
3096 getTypeOutputInfo(att->atttypid, &typoutput, &typisvarlena);
3097
3098 outputstr = OidOutputFunctionCall(typoutput, attr);
3099 sv = cstr2sv(outputstr);
3101 }
3102
3104 }
3105 }
3106 return newRV_noinc((SV *) hv);
3107}
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 1130 of file plperl.c.

1131{
1133
1134 return HeapTupleGetDatum(tup);
1135}
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:2173
#define pqsignal
Definition port.h:547
void FloatExceptionHandler(SIGNAL_ARGS)
Definition postgres.c:3070
#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 2173 of file plperl.c.

2174{
2175 char *file = __FILE__;
2176
2177 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
2178 newXS("PostgreSQL::InServer::Util::bootstrap",
2180 /* newXS for...::SPI::bootstrap is in select_perl_context() */
2181}
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 4172 of file plperl.c.

4173{
4174 errcontext("PL/Perl anonymous code block");
4175}

References errcontext.

Referenced by plperl_inline_handler().

◆ plperl_inline_handler()

Datum plperl_inline_handler ( PG_FUNCTION_ARGS  )

Definition at line 1900 of file plperl.c.

1901{
1904 FmgrInfo flinfo;
1905 plperl_proc_desc desc;
1910
1911 /* Initialize current-call status record */
1912 MemSet(&this_call_data, 0, sizeof(this_call_data));
1913
1914 /* Set up a callback for error reporting */
1919
1920 /*
1921 * Set up a fake fcinfo and descriptor with just enough info to satisfy
1922 * plperl_call_perl_func(). In particular note that this sets things up
1923 * with no arguments passed, and a result type of VOID.
1924 */
1926 MemSet(&flinfo, 0, sizeof(flinfo));
1927 MemSet(&desc, 0, sizeof(desc));
1928 fake_fcinfo->flinfo = &flinfo;
1929 flinfo.fn_oid = InvalidOid;
1931
1932 desc.proname = "inline_code_block";
1933 desc.fn_readonly = false;
1934
1935 desc.lang_oid = codeblock->langOid;
1936 desc.trftypes = NIL;
1937 desc.lanpltrusted = codeblock->langIsTrusted;
1938
1939 desc.fn_retistuple = false;
1940 desc.fn_retisset = false;
1941 desc.fn_retisarray = false;
1942 desc.result_oid = InvalidOid;
1943 desc.nargs = 0;
1944 desc.reference = NULL;
1945
1946 this_call_data.fcinfo = fake_fcinfo;
1947 this_call_data.prodesc = &desc;
1948 /* we do not bother with refcounting the fake prodesc */
1949
1950 PG_TRY();
1951 {
1952 SV *perlret;
1953
1955
1957
1959
1960 plperl_create_sub(&desc, codeblock->source_text, 0);
1961
1962 if (!desc.reference) /* can this happen? */
1963 elog(ERROR, "could not create internal procedure for anonymous code block");
1964
1966
1968
1969 if (SPI_finish() != SPI_OK_FINISH)
1970 elog(ERROR, "SPI_finish() failed");
1971 }
1972 PG_FINALLY();
1973 {
1974 if (desc.reference)
1978 }
1979 PG_END_TRY();
1980
1982
1984}
#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:4172
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 1766 of file plperl.c.

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

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 1484 of file plperl.c.

1485{
1486 dTHX;
1489 int16 typlen;
1490 bool typbyval;
1491 char typalign,
1492 typdelim;
1493 Oid typioparam;
1496 int i,
1497 nitems,
1498 *dims;
1499 plperl_array_info *info;
1500 SV *av;
1501 HV *hv;
1502
1503 /*
1504 * Currently we make no effort to cache any of the stuff we look up here,
1505 * which is bad.
1506 */
1508
1509 /* get element type information, including output conversion function */
1511 &typlen, &typbyval, &typalign,
1512 &typdelim, &typioparam, &typoutputfunc);
1513
1514 /* Check for a transform function */
1518
1519 /* Look up transform or output function as appropriate */
1522 else
1523 fmgr_info(typoutputfunc, &info->proc);
1524
1526
1527 /* Get the number and bounds of array dimensions */
1528 info->ndims = ARR_NDIM(ar);
1529 dims = ARR_DIMS(ar);
1530
1531 /* No dimensions? Return an empty array */
1532 if (info->ndims == 0)
1533 {
1534 av = newRV_noinc((SV *) newAV());
1535 }
1536 else
1537 {
1538 deconstruct_array(ar, elementtype, typlen, typbyval,
1539 typalign, &info->elements, &info->nulls,
1540 &nitems);
1541
1542 /* Get total number of elements in each dimension */
1543 info->nelems = palloc_array(int, info->ndims);
1544 info->nelems[0] = nitems;
1545 for (i = 1; i < info->ndims; i++)
1546 info->nelems[i] = info->nelems[i - 1] / dims[i - 1];
1547
1548 av = split_array(info, 0, nitems, 0);
1549 }
1550
1551 hv = newHV();
1552 (void) hv_store(hv, "array", 5, av, 0);
1553 (void) hv_store(hv, "typeoid", 7, newSVuv(typid), 0);
1554
1555 return sv_bless(newRV_noinc((SV *) hv),
1556 gv_stashpv("PostgreSQL::InServer::ARRAY", 0));
1557}
#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:619
#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:1563
#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 3250 of file plperl.c.

3251{
3253
3255
3256 PG_TRY();
3257 {
3259 }
3260 PG_CATCH();
3261 {
3263
3264 /* Must reset elog.c's state */
3265 MemoryContextSwitchTo(oldcontext);
3266 edata = CopyErrorData();
3268
3269 /* Punt the error to Perl */
3270 croak_cstr(edata->message);
3271 }
3272 PG_END_TRY();
3273}
ErrorData * CopyErrorData(void)
Definition elog.c:1941
void FlushErrorState(void)
Definition elog.c:2062
static void check_spi_usage_allowed(void)
Definition plperl.c:3111
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 3280 of file plperl.c.

3281{
3282 plperl_proc_desc *prodesc;
3283 FunctionCallInfo fcinfo;
3284 ReturnSetInfo *rsi;
3286
3287 if (!sv)
3288 return;
3289
3290 prodesc = current_call_data->prodesc;
3291 fcinfo = current_call_data->fcinfo;
3292 rsi = (ReturnSetInfo *) fcinfo->resultinfo;
3293
3294 if (!prodesc->fn_retisset)
3295 ereport(ERROR,
3297 errmsg("cannot use return_next in a non-SETOF function")));
3298
3300 {
3301 TupleDesc tupdesc;
3302
3304
3305 /*
3306 * This is the first call to return_next in the current PL/Perl
3307 * function call, so identify the output tuple type and create a
3308 * tuplestore to hold the result rows.
3309 */
3310 if (prodesc->fn_retistuple)
3311 {
3313 Oid typid;
3314
3315 funcclass = get_call_result_type(fcinfo, &typid, &tupdesc);
3318 ereport(ERROR,
3320 errmsg("function returning record called in context "
3321 "that cannot accept type record")));
3322 /* if domain-over-composite, remember the domain's type OID */
3325 }
3326 else
3327 {
3328 tupdesc = rsi->expectedDesc;
3329 /* Protect assumption below that we return exactly one column */
3330 if (tupdesc == NULL || tupdesc->natts != 1)
3331 elog(ERROR, "expected single-column result descriptor for non-composite SETOF result");
3332 }
3333
3334 /*
3335 * Make sure the tuple_store and ret_tdesc are sufficiently
3336 * long-lived.
3337 */
3339
3343 false, work_mem);
3344
3346 }
3347
3348 /*
3349 * Producing the tuple we want to return requires making plenty of
3350 * palloc() allocations that are not cleaned up. Since this function can
3351 * be called many times before the current memory context is reset, we
3352 * need to do those allocations in a temporary context.
3353 */
3355 {
3358 "PL/Perl return_next temporary cxt",
3360 }
3361
3363
3364 if (prodesc->fn_retistuple)
3365 {
3366 HeapTuple tuple;
3367
3368 if (!(SvOK(sv) && SvROK(sv) && SvTYPE(SvRV(sv)) == SVt_PVHV))
3369 ereport(ERROR,
3371 errmsg("SETOF-composite-returning PL/Perl function "
3372 "must call return_next with reference to hash")));
3373
3374 tuple = plperl_build_tuple_result((HV *) SvRV(sv),
3376
3378 domain_check(HeapTupleGetDatum(tuple), false,
3382
3384 }
3385 else if (prodesc->result_oid)
3386 {
3387 Datum ret[1];
3388 bool isNull[1];
3389
3390 ret[0] = plperl_sv_to_datum(sv,
3391 prodesc->result_oid,
3392 -1,
3393 fcinfo,
3394 &prodesc->result_in_func,
3395 prodesc->result_typioparam,
3396 &isNull[0]);
3397
3400 ret, isNull);
3401 }
3402
3405}
void domain_check(Datum value, bool isnull, Oid domainType, void **extra, MemoryContext mcxt)
Definition domains.c:346
@ SFRM_Materialize_Random
Definition execnodes.h:356
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:133
void MemoryContextReset(MemoryContext context)
Definition mcxt.c:403
#define ALLOCSET_DEFAULT_SIZES
Definition memutils.h:160
MemoryContext ecxt_per_query_memory
Definition execnodes.h:294
ExprContext * econtext
Definition execnodes.h:370
TupleDesc expectedDesc
Definition execnodes.h:371
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 3996 of file plperl.c.

3997{
3999
4001
4002 PG_TRY();
4003 {
4004 SPI_commit();
4005 }
4006 PG_CATCH();
4007 {
4009
4010 /* Save error info */
4011 MemoryContextSwitchTo(oldcontext);
4012 edata = CopyErrorData();
4014
4015 /* Punt the error to Perl */
4016 croak_cstr(edata->message);
4017 }
4018 PG_END_TRY();
4019}
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 3556 of file plperl.c.

3557{
3558 Portal p;
3559
3561
3563
3564 if (p)
3565 {
3566 UnpinPortal(p);
3568 }
3569}
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 3138 of file plperl.c.

3139{
3140 HV *ret_hv;
3141
3142 /*
3143 * Execute the query inside a sub-transaction, so we can cope with errors
3144 * sanely
3145 */
3148
3150
3152 /* Want to run inside function's memory context */
3153 MemoryContextSwitchTo(oldcontext);
3154
3155 PG_TRY();
3156 {
3157 int spi_rv;
3158
3159 pg_verifymbstr(query, strlen(query), false);
3160
3162 limit);
3164 spi_rv);
3165
3166 /* Commit the inner transaction, return to outer xact context */
3168 MemoryContextSwitchTo(oldcontext);
3169 CurrentResourceOwner = oldowner;
3170 }
3171 PG_CATCH();
3172 {
3174
3175 /* Save error info */
3176 MemoryContextSwitchTo(oldcontext);
3177 edata = CopyErrorData();
3179
3180 /* Abort the inner transaction */
3182 MemoryContextSwitchTo(oldcontext);
3183 CurrentResourceOwner = oldowner;
3184
3185 /* Punt the error to Perl */
3186 croak_cstr(edata->message);
3187
3188 /* Can't get here, but keep compiler quiet */
3189 return NULL;
3190 }
3191 PG_END_TRY();
3192
3193 return ret_hv;
3194}
bool pg_verifymbstr(const char *mbstr, int len, bool noError)
Definition mbutils.c:1682
static HV * plperl_spi_execute_fetch_result(SPITupleTable *, uint64, int)
Definition plperl.c:3198
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:4745
void RollbackAndReleaseCurrentSubTransaction(void)
Definition xact.c:4847
void ReleaseCurrentSubTransaction(void)
Definition xact.c:4819

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 3720 of file plperl.c.

3721{
3722 HV *ret_hv;
3723 SV **sv;
3724 int i,
3725 limit,
3726 spi_rv;
3727 char *nulls;
3731
3732 /*
3733 * Execute the query inside a sub-transaction, so we can cope with errors
3734 * sanely
3735 */
3738
3740
3742 /* Want to run inside function's memory context */
3743 MemoryContextSwitchTo(oldcontext);
3744
3745 PG_TRY();
3746 {
3747 dTHX;
3748
3749 /************************************************************
3750 * Fetch the saved plan descriptor, see if it's o.k.
3751 ************************************************************/
3753 HASH_FIND, NULL);
3754 if (hash_entry == NULL)
3755 elog(ERROR, "spi_exec_prepared: Invalid prepared query passed");
3756
3757 qdesc = hash_entry->query_data;
3758 if (qdesc == NULL)
3759 elog(ERROR, "spi_exec_prepared: plperl query_hash value vanished");
3760
3761 if (qdesc->nargs != argc)
3762 elog(ERROR, "spi_exec_prepared: expected %d argument(s), %d passed",
3763 qdesc->nargs, argc);
3764
3765 /************************************************************
3766 * Parse eventual attributes
3767 ************************************************************/
3768 limit = 0;
3769 if (attr != NULL)
3770 {
3771 sv = hv_fetch_string(attr, "limit");
3772 if (sv && *sv && SvIOK(*sv))
3773 limit = SvIV(*sv);
3774 }
3775 /************************************************************
3776 * Set up arguments
3777 ************************************************************/
3778 if (argc > 0)
3779 {
3780 nulls = (char *) palloc(argc);
3781 argvalues = (Datum *) palloc(argc * sizeof(Datum));
3782 }
3783 else
3784 {
3785 nulls = NULL;
3786 argvalues = NULL;
3787 }
3788
3789 for (i = 0; i < argc; i++)
3790 {
3791 bool isnull;
3792
3794 qdesc->argtypes[i],
3795 -1,
3796 NULL,
3797 &qdesc->arginfuncs[i],
3798 qdesc->argtypioparams[i],
3799 &isnull);
3800 nulls[i] = isnull ? 'n' : ' ';
3801 }
3802
3803 /************************************************************
3804 * go
3805 ************************************************************/
3806 spi_rv = SPI_execute_plan(qdesc->plan, argvalues, nulls,
3809 spi_rv);
3810 if (argc > 0)
3811 {
3813 pfree(nulls);
3814 }
3815
3816 /* Commit the inner transaction, return to outer xact context */
3818 MemoryContextSwitchTo(oldcontext);
3819 CurrentResourceOwner = oldowner;
3820 }
3821 PG_CATCH();
3822 {
3824
3825 /* Save error info */
3826 MemoryContextSwitchTo(oldcontext);
3827 edata = CopyErrorData();
3829
3830 /* Abort the inner transaction */
3832 MemoryContextSwitchTo(oldcontext);
3833 CurrentResourceOwner = oldowner;
3834
3835 /* Punt the error to Perl */
3836 croak_cstr(edata->message);
3837
3838 /* Can't get here, but keep compiler quiet */
3839 return NULL;
3840 }
3841 PG_END_TRY();
3842
3843 return ret_hv;
3844}
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 3198 of file plperl.c.

3200{
3201 dTHX;
3202 HV *result;
3203
3205
3206 result = newHV();
3207
3208 hv_store_string(result, "status",
3210 hv_store_string(result, "processed",
3211 (processed > (uint64) UV_MAX) ?
3212 newSVnv((NV) processed) :
3213 newSVuv((UV) processed));
3214
3215 if (status > 0 && tuptable)
3216 {
3217 AV *rows;
3218 SV *row;
3219 uint64 i;
3220
3221 /* Prevent overflow in call to av_extend() */
3222 if (processed > (uint64) AV_SIZE_MAX)
3223 ereport(ERROR,
3225 errmsg("query result has too many rows to fit in a Perl array")));
3226
3227 rows = newAV();
3228 av_extend(rows, processed);
3229 for (i = 0; i < processed; i++)
3230 {
3231 row = plperl_hash_from_tuple(tuptable->vals[i], tuptable->tupdesc, true);
3232 av_push(rows, row);
3233 }
3234 hv_store_string(result, "rows",
3235 newRV_noinc((SV *) rows));
3236 }
3237
3238 SPI_freetuptable(tuptable);
3239
3240 return result;
3241}
uint64_t uint64
Definition c.h:625
#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(), result, 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 3481 of file plperl.c.

3482{
3483 SV *row;
3484
3485 /*
3486 * Execute the FETCH inside a sub-transaction, so we can cope with errors
3487 * sanely
3488 */
3491
3493
3495 /* Want to run inside function's memory context */
3496 MemoryContextSwitchTo(oldcontext);
3497
3498 PG_TRY();
3499 {
3500 dTHX;
3502
3503 if (!p)
3504 {
3505 row = &PL_sv_undef;
3506 }
3507 else
3508 {
3509 SPI_cursor_fetch(p, true, 1);
3510 if (SPI_processed == 0)
3511 {
3512 UnpinPortal(p);
3514 row = &PL_sv_undef;
3515 }
3516 else
3517 {
3520 true);
3521 }
3523 }
3524
3525 /* Commit the inner transaction, return to outer xact context */
3527 MemoryContextSwitchTo(oldcontext);
3528 CurrentResourceOwner = oldowner;
3529 }
3530 PG_CATCH();
3531 {
3533
3534 /* Save error info */
3535 MemoryContextSwitchTo(oldcontext);
3536 edata = CopyErrorData();
3538
3539 /* Abort the inner transaction */
3541 MemoryContextSwitchTo(oldcontext);
3542 CurrentResourceOwner = oldowner;
3543
3544 /* Punt the error to Perl */
3545 croak_cstr(edata->message);
3546
3547 /* Can't get here, but keep compiler quiet */
3548 return NULL;
3549 }
3550 PG_END_TRY();
3551
3552 return row;
3553}
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 3965 of file plperl.c.

3966{
3970
3972
3974 HASH_FIND, NULL);
3975 if (hash_entry == NULL)
3976 elog(ERROR, "spi_freeplan: Invalid prepared query passed");
3977
3978 qdesc = hash_entry->query_data;
3979 if (qdesc == NULL)
3980 elog(ERROR, "spi_freeplan: plperl query_hash value vanished");
3981 plan = qdesc->plan;
3982
3983 /*
3984 * free all memory before SPI_freeplan, so if it dies, nothing will be
3985 * left over
3986 */
3988 HASH_REMOVE, NULL);
3989
3990 MemoryContextDelete(qdesc->plan_cxt);
3991
3993}
@ HASH_REMOVE
Definition hsearch.h:110
#define plan(x)
Definition pg_regress.c:164
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 3572 of file plperl.c.

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

3410{
3411 SV *cursor;
3412
3413 /*
3414 * Execute the query inside a sub-transaction, so we can cope with errors
3415 * sanely
3416 */
3419
3421
3423 /* Want to run inside function's memory context */
3424 MemoryContextSwitchTo(oldcontext);
3425
3426 PG_TRY();
3427 {
3429 Portal portal;
3430
3431 /* Make sure the query is validly encoded */
3432 pg_verifymbstr(query, strlen(query), false);
3433
3434 /* Create a cursor for the query */
3435 plan = SPI_prepare(query, 0, NULL);
3436 if (plan == NULL)
3437 elog(ERROR, "SPI_prepare() failed:%s",
3439
3440 portal = SPI_cursor_open(NULL, plan, NULL, NULL, false);
3442 if (portal == NULL)
3443 elog(ERROR, "SPI_cursor_open() failed:%s",
3445 cursor = cstr2sv(portal->name);
3446
3447 PinPortal(portal);
3448
3449 /* Commit the inner transaction, return to outer xact context */
3451 MemoryContextSwitchTo(oldcontext);
3452 CurrentResourceOwner = oldowner;
3453 }
3454 PG_CATCH();
3455 {
3457
3458 /* Save error info */
3459 MemoryContextSwitchTo(oldcontext);
3460 edata = CopyErrorData();
3462
3463 /* Abort the inner transaction */
3465 MemoryContextSwitchTo(oldcontext);
3466 CurrentResourceOwner = oldowner;
3467
3468 /* Punt the error to Perl */
3469 croak_cstr(edata->message);
3470
3471 /* Can't get here, but keep compiler quiet */
3472 return NULL;
3473 }
3474 PG_END_TRY();
3475
3476 return cursor;
3477}
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 3847 of file plperl.c.

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

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 4022 of file plperl.c.

4023{
4025
4027
4028 PG_TRY();
4029 {
4030 SPI_rollback();
4031 }
4032 PG_CATCH();
4033 {
4035
4036 /* Save error info */
4037 MemoryContextSwitchTo(oldcontext);
4038 edata = CopyErrorData();
4040
4041 /* Punt the error to Perl */
4042 croak_cstr(edata->message);
4043 }
4044 PG_END_TRY();
4045}
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 1327 of file plperl.c.

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

1449{
1450 Oid typid;
1451 Oid typoutput;
1452 Datum datum;
1453 bool typisvarlena,
1454 isnull;
1455
1457
1459 if (!OidIsValid(typid))
1460 ereport(ERROR,
1462 errmsg("lookup failed for type %s", fqtypename)));
1463
1464 datum = plperl_sv_to_datum(sv,
1465 typid, -1,
1467 &isnull);
1468
1469 if (isnull)
1470 return NULL;
1471
1472 getTypeOutputInfo(typid,
1473 &typoutput, &typisvarlena);
1474
1475 return OidOutputFunctionCall(typoutput, datum);
1476}
#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 1635 of file plperl.c.

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

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

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

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 1994 of file plperl.c.

1995{
1997 HeapTuple tuple;
1998 Form_pg_proc proc;
1999 char functyptype;
2000 int numargs;
2001 Oid *argtypes;
2002 char **argnames;
2003 char *argmodes;
2004 bool is_trigger = false;
2005 bool is_event_trigger = false;
2006 int i;
2007
2008 if (!CheckFunctionValidatorAccess(fcinfo->flinfo->fn_oid, funcoid))
2010
2011 /* Get the new function's pg_proc entry */
2013 if (!HeapTupleIsValid(tuple))
2014 elog(ERROR, "cache lookup failed for function %u", funcoid);
2015 proc = (Form_pg_proc) GETSTRUCT(tuple);
2016
2017 functyptype = get_typtype(proc->prorettype);
2018
2019 /* Disallow pseudotype result */
2020 /* except for TRIGGER, EVTTRIGGER, RECORD, or VOID */
2022 {
2023 if (proc->prorettype == TRIGGEROID)
2024 is_trigger = true;
2025 else if (proc->prorettype == EVENT_TRIGGEROID)
2026 is_event_trigger = true;
2027 else if (proc->prorettype != RECORDOID &&
2028 proc->prorettype != VOIDOID)
2029 ereport(ERROR,
2031 errmsg("PL/Perl functions cannot return type %s",
2032 format_type_be(proc->prorettype))));
2033 }
2034
2035 /* Disallow pseudotypes in arguments (either IN or OUT) */
2036 numargs = get_func_arg_info(tuple,
2037 &argtypes, &argnames, &argmodes);
2038 for (i = 0; i < numargs; i++)
2039 {
2040 if (get_typtype(argtypes[i]) == TYPTYPE_PSEUDO &&
2041 argtypes[i] != RECORDOID)
2042 ereport(ERROR,
2044 errmsg("PL/Perl functions cannot accept type %s",
2045 format_type_be(argtypes[i]))));
2046 }
2047
2048 ReleaseSysCache(tuple);
2049
2050 /* Postpone body checks if !check_function_bodies */
2052 {
2054 }
2055
2056 /* the result of a validator is ignored */
2058}
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:557
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 2072 of file plperl.c.

2073{
2074 return plperl_call_handler(fcinfo);
2075}
Datum plperl_call_handler(PG_FUNCTION_ARGS)
Definition plperl.c:1858

References plperl_call_handler().

◆ plperlu_inline_handler()

Datum plperlu_inline_handler ( PG_FUNCTION_ARGS  )

Definition at line 2080 of file plperl.c.

2081{
2082 return plperl_inline_handler(fcinfo);
2083}
Datum plperl_inline_handler(PG_FUNCTION_ARGS)
Definition plperl.c:1900

References plperl_inline_handler().

◆ plperlu_validator()

Datum plperlu_validator ( PG_FUNCTION_ARGS  )

Definition at line 2088 of file plperl.c.

2089{
2090 /* call plperl validator with our fcinfo so it gets our oid */
2091 return plperl_validator(fcinfo);
2092}
Datum plperl_validator(PG_FUNCTION_ARGS)
Definition plperl.c:1994

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:91
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:69

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 1563 of file plperl.c.

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

References Assert, check_stack_depth(), dTHX, fb(), i, make_array_ref(), plperl_array_info::ndims, plperl_array_info::nelems, newRV_noinc, result, 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 2673 of file plperl.c.

2674{
2675 if (proc_ptr && proc_ptr->proc_ptr)
2676 {
2677 plperl_proc_desc *prodesc = proc_ptr->proc_ptr;
2678 bool uptodate;
2679
2680 /************************************************************
2681 * If it's present, must check whether it's still up to date.
2682 * This is needed because CREATE OR REPLACE FUNCTION can modify the
2683 * function's pg_proc entry without changing its OID.
2684 ************************************************************/
2685 uptodate = (prodesc->fn_xmin == HeapTupleHeaderGetRawXmin(procTup->t_data) &&
2686 ItemPointerEquals(&prodesc->fn_tid, &procTup->t_self));
2687
2688 if (uptodate)
2689 return true;
2690
2691 /* Otherwise, unlink the obsoleted entry from the hashtable ... */
2692 proc_ptr->proc_ptr = NULL;
2693 /* ... and release the corresponding refcount, probably deleting it */
2695 }
2696
2697 return false;
2698}
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().