openldap/servers/slapd/back-perl/init.c

177 lines
3.8 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-12-07 03:25:01 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2020-01-10 00:50:21 +08:00
* Copyright 1999-2020 The OpenLDAP Foundation.
2003-12-07 03:25:01 +08:00
* Portions Copyright 1999 John C. Quillan.
* Portions Copyright 2002 myinternet Limited.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
2003-12-07 03:25:01 +08:00
* A copy of this license is available in file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
#include "perl_back.h"
2007-09-01 08:28:07 +08:00
#include "../config.h"
#ifdef PERL_SYS_INIT3
#include <ac/unistd.h> /* maybe get environ */
extern char **environ;
#endif
2002-04-16 12:25:44 +08:00
static void perl_back_xs_init LDAP_P((PERL_BACK_XS_INIT_PARAMS));
EXT void boot_DynaLoader LDAP_P((PERL_BACK_BOOT_DYNALOADER_PARAMS));
2002-04-16 12:25:44 +08:00
PerlInterpreter *PERL_INTERPRETER = NULL;
ldap_pvt_thread_mutex_t perl_interpreter_mutex;
/**********************************************************
*
* Init
*
**********************************************************/
int
perl_back_initialize(
BackendInfo *bi
)
{
char *embedding[] = { "", "-e", "0", NULL }, **argv = embedding;
2009-06-24 07:12:15 +08:00
int argc = 3;
#ifdef PERL_SYS_INIT3
char **env = environ;
#else
char **env = NULL;
#endif
2006-08-28 09:07:25 +08:00
bi->bi_open = NULL;
bi->bi_config = 0;
bi->bi_close = perl_back_close;
2005-09-25 11:43:20 +08:00
bi->bi_destroy = 0;
bi->bi_db_init = perl_back_db_init;
bi->bi_db_config = perl_back_db_config;
2002-04-16 11:47:39 +08:00
bi->bi_db_open = perl_back_db_open;
bi->bi_db_close = 0;
bi->bi_db_destroy = perl_back_db_destroy;
bi->bi_op_bind = perl_back_bind;
2002-02-02 18:10:35 +08:00
bi->bi_op_unbind = 0;
bi->bi_op_search = perl_back_search;
bi->bi_op_compare = perl_back_compare;
bi->bi_op_modify = perl_back_modify;
bi->bi_op_modrdn = perl_back_modrdn;
bi->bi_op_add = perl_back_add;
bi->bi_op_delete = perl_back_delete;
bi->bi_op_abandon = 0;
bi->bi_extended = 0;
bi->bi_chk_referrals = 0;
bi->bi_connection_init = 0;
bi->bi_connection_destroy = 0;
ITS#8605 - spelling fixes * javascript * kernel * ldap * length * macros * maintained * manager * matching * maximum * mechanism * memory * method * mimic * minimum * modifiable * modifiers * modifying * multiple * necessary * normalized * objectclass * occurrence * occurring * offered * operation * original * overridden * parameter * permanent * preemptively * printable * protocol * provider * really * redistribution * referenced * refresh * regardless * registered * request * reserved * resource * response * sanity * separated * setconcurrency * should * specially * specifies * structure * structures * subordinates * substitution * succeed * successful * successfully * sudoers * sufficient * superiors * supported * synchronization * terminated * they're * through * traffic * transparent * unsigned * unsupported * version * absence * achieves * adamson * additional * address * against * appropriate * architecture * associated * async * attribute * authentication * authorized * auxiliary * available * begin * beginning * buffered * canonical * certificate * charray * check * class * compatibility * compilation * component * configurable * configuration * configure * conjunction * constraints * constructor * contained * containing * continued * control * convenience * correspond * credentials * cyrillic * database * definitions * deloldrdn * dereferencing * destroy * distinguish * documentation * emmanuel * enabled * entry * enumerated * everything * exhaustive * existence * existing * explicitly * extract * fallthru * fashion * february * finally * function * generically * groupname * happened * implementation * including * initialization * initializes * insensitive * instantiated * instantiation * integral * internal * iterate
2017-02-26 15:49:31 +08:00
/* injecting code from perl_back_open, because using function reference (bi->bi_open) is not functional */
Debug( LDAP_DEBUG_TRACE, "perl backend open\n" );
if( PERL_INTERPRETER != NULL ) {
Debug( LDAP_DEBUG_ANY, "perl backend open: already opened\n" );
return 1;
}
ldap_pvt_thread_mutex_init( &perl_interpreter_mutex );
#ifdef PERL_SYS_INIT3
PERL_SYS_INIT3(&argc, &argv, &env);
2009-06-24 07:12:15 +08:00
#endif
PERL_INTERPRETER = perl_alloc();
perl_construct(PERL_INTERPRETER);
2009-06-24 07:12:15 +08:00
#ifdef PERL_EXIT_DESTRUCT_END
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
#endif
perl_parse(PERL_INTERPRETER, perl_back_xs_init, argc, argv, env);
perl_run(PERL_INTERPRETER);
return perl_back_init_cf( bi );
}
int
perl_back_db_init(
BackendDB *be,
ConfigReply *cr
)
{
be->be_private = (PerlBackend *) ch_malloc( sizeof(PerlBackend) );
2000-06-11 06:39:30 +08:00
memset( be->be_private, '\0', sizeof(PerlBackend));
2002-04-16 11:47:39 +08:00
((PerlBackend *)be->be_private)->pb_filter_search_results = 0;
Debug( LDAP_DEBUG_TRACE, "perl backend db init\n" );
2011-02-05 00:42:06 +08:00
be->be_cf_ocs = be->bd_info->bi_cf_ocs;
return 0;
}
2002-04-16 11:47:39 +08:00
int
perl_back_db_open(
BackendDB *be,
ConfigReply *cr
2002-04-16 11:47:39 +08:00
)
{
int count;
int return_code;
PerlBackend *perl_back = (PerlBackend *) be->be_private;
ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
{
dSP; ENTER; SAVETMPS;
PUSHMARK(sp);
XPUSHs( perl_back->pb_obj_ref );
PUTBACK;
count = call_method("init", G_SCALAR);
SPAGAIN;
if (count != 1) {
croak("Big trouble in perl_back_db_open\n");
}
return_code = POPi;
PUTBACK; FREETMPS; LEAVE;
}
ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
return return_code;
}
static void
2003-03-13 09:58:26 +08:00
perl_back_xs_init(PERL_BACK_XS_INIT_PARAMS)
{
2002-04-16 11:47:39 +08:00
char *file = __FILE__;
dXSUB_SYS;
newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
}
#if SLAPD_PERL == SLAPD_MOD_DYNAMIC
2004-11-16 03:45:49 +08:00
/* conditionally define the init_module() function */
SLAP_BACKEND_INIT_MODULE( perl )
2004-11-16 03:45:49 +08:00
#endif /* SLAPD_PERL == SLAPD_MOD_DYNAMIC */