1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-12-07 03:25:01 +08:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 1999-2004 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.
|
1999-01-14 14:33:09 +08:00
|
|
|
*
|
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>.
|
1999-01-14 14:33:09 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "perl_back.h"
|
|
|
|
|
|
|
|
|
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));
|
1999-04-04 12:16:14 +08:00
|
|
|
|
2002-04-16 12:25:44 +08:00
|
|
|
PerlInterpreter *PERL_INTERPRETER = NULL;
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_t perl_interpreter_mutex;
|
1999-01-14 14:33:09 +08:00
|
|
|
|
2004-04-08 13:56:23 +08:00
|
|
|
#if SLAPD_PERL == SLAPD_MOD_DYNAMIC
|
1999-06-25 01:06:34 +08:00
|
|
|
|
2003-06-13 06:25:20 +08:00
|
|
|
int init_module(int argc, char *argv[])
|
2002-04-16 11:47:39 +08:00
|
|
|
{
|
|
|
|
BackendInfo bi;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
memset( &bi, '\0', sizeof(bi) );
|
|
|
|
bi.bi_type = "perl";
|
|
|
|
bi.bi_init = perl_back_initialize;
|
1999-06-25 01:06:34 +08:00
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
backend_add(&bi);
|
|
|
|
return 0;
|
1999-06-25 01:06:34 +08:00
|
|
|
}
|
|
|
|
|
2004-04-08 13:56:23 +08:00
|
|
|
#endif /* SLAPD_PERL */
|
1999-06-25 01:06:34 +08:00
|
|
|
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
/**********************************************************
|
|
|
|
*
|
|
|
|
* Init
|
|
|
|
*
|
|
|
|
**********************************************************/
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
perl_back_initialize(
|
|
|
|
BackendInfo *bi
|
1999-01-14 14:33:09 +08:00
|
|
|
)
|
|
|
|
{
|
|
|
|
char *embedding[] = { "", "-e", "0" };
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "perl backend open\n", 0, 0, 0 );
|
|
|
|
|
2002-04-16 12:25:44 +08:00
|
|
|
if( PERL_INTERPRETER != NULL ) {
|
1999-02-05 17:03:47 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY, "perl backend open: already opened\n",
|
|
|
|
0, 0, 0 );
|
|
|
|
return 1;
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
1999-02-05 17:03:47 +08:00
|
|
|
|
2002-04-16 12:25:44 +08:00
|
|
|
PERL_INTERPRETER = perl_alloc();
|
|
|
|
perl_construct(PERL_INTERPRETER);
|
|
|
|
perl_parse(PERL_INTERPRETER, perl_back_xs_init, 3, embedding, (char **)NULL);
|
|
|
|
perl_run(PERL_INTERPRETER);
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
bi->bi_open = perl_back_open;
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_config = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
bi->bi_close = perl_back_close;
|
|
|
|
bi->bi_destroy = perl_back_destroy;
|
|
|
|
|
|
|
|
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;
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_db_close = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
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;
|
1999-02-05 17:03:47 +08:00
|
|
|
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;
|
1999-03-04 01:02:10 +08:00
|
|
|
bi->bi_op_abandon = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
bi->bi_extended = 0;
|
|
|
|
|
2000-06-16 09:46:42 +08:00
|
|
|
bi->bi_chk_referrals = 0;
|
1999-02-05 17:03:47 +08:00
|
|
|
|
1999-06-23 20:31:35 +08:00
|
|
|
bi->bi_connection_init = 0;
|
|
|
|
bi->bi_connection_destroy = 0;
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
perl_back_open(
|
|
|
|
BackendInfo *bi
|
|
|
|
)
|
|
|
|
{
|
|
|
|
ldap_pvt_thread_mutex_init( &perl_interpreter_mutex );
|
|
|
|
return 0;
|
|
|
|
}
|
1999-01-14 14:33:09 +08:00
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
perl_back_db_init(
|
2002-04-16 11:47:39 +08:00
|
|
|
BackendDB *be
|
1999-02-05 17:03:47 +08:00
|
|
|
)
|
|
|
|
{
|
1999-01-14 14:33:09 +08:00
|
|
|
be->be_private = (PerlBackend *) ch_malloc( sizeof(PerlBackend) );
|
2000-06-11 06:39:30 +08:00
|
|
|
memset( be->be_private, '\0', sizeof(PerlBackend));
|
1999-01-14 14:33:09 +08:00
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
((PerlBackend *)be->be_private)->pb_filter_search_results = 0;
|
|
|
|
|
1999-02-05 17:03:47 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "perl backend db init\n", 0, 0, 0 );
|
|
|
|
|
|
|
|
return 0;
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
int
|
|
|
|
perl_back_db_open(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
count = call_method("init", G_SCALAR);
|
|
|
|
#else
|
|
|
|
count = perl_call_method("init", G_SCALAR);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
1999-11-11 14:14:41 +08:00
|
|
|
|
|
|
|
static void
|
2003-03-13 09:58:26 +08:00
|
|
|
perl_back_xs_init(PERL_BACK_XS_INIT_PARAMS)
|
1999-11-11 14:14:41 +08:00
|
|
|
{
|
2002-04-16 11:47:39 +08:00
|
|
|
char *file = __FILE__;
|
|
|
|
dXSUB_SYS;
|
|
|
|
newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
|
1999-11-11 14:14:41 +08:00
|
|
|
}
|