1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
2003-05-25 11:56:57 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1999-2003 The OpenLDAP Foundation, All Rights Reserved.
|
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
1999-01-14 14:33:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright 1999, John C. Quillan, All rights reserved.
|
2002-04-16 13:36:22 +08:00
|
|
|
* Portions Copyright 2002, myinternet Limited. All rights reserved.
|
1999-01-14 14:33:09 +08:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted only
|
|
|
|
* as authorized by the OpenLDAP Public License. A copy of this
|
|
|
|
* license is available at http://www.OpenLDAP.org/license.html or
|
|
|
|
* in file LICENSE in the top-level directory of the distribution.
|
|
|
|
*/
|
|
|
|
|
2003-06-05 19:44:06 +08:00
|
|
|
#include <EXTERN.h>
|
|
|
|
#include <perl.h>
|
2003-10-01 01:11:44 +08:00
|
|
|
#undef _ /* #defined by both Perl and ac/localize.h */
|
2002-04-16 12:25:44 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_WIN32_ASPERL
|
|
|
|
#include "asperl_undefs.h"
|
|
|
|
#endif
|
1999-01-14 14:33:09 +08:00
|
|
|
|
2003-06-05 19:44:06 +08:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
#include "perl_back.h"
|
|
|
|
|
|
|
|
|
|
|
|
/**********************************************************
|
|
|
|
*
|
|
|
|
* Config
|
|
|
|
*
|
|
|
|
**********************************************************/
|
1999-02-05 17:03:47 +08:00
|
|
|
int
|
|
|
|
perl_back_db_config(
|
|
|
|
BackendDB *be,
|
1999-08-21 03:29:43 +08:00
|
|
|
const char *fname,
|
1999-01-14 14:33:09 +08:00
|
|
|
int lineno,
|
|
|
|
int argc,
|
|
|
|
char **argv
|
|
|
|
)
|
|
|
|
{
|
|
|
|
SV* loc_sv;
|
|
|
|
PerlBackend *perl_back = (PerlBackend *) be->be_private;
|
|
|
|
char eval_str[EVAL_BUF_SIZE];
|
|
|
|
int count ;
|
1999-04-04 12:16:14 +08:00
|
|
|
int args;
|
|
|
|
int return_code;
|
|
|
|
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
if ( strcasecmp( argv[0], "perlModule" ) == 0 ) {
|
|
|
|
if ( argc < 2 ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
"%s.pm: line %d: missing module in \"perlModule <module>\" line\n",
|
|
|
|
fname, lineno, 0 );
|
1999-02-05 17:03:47 +08:00
|
|
|
return( 1 );
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
snprintf( eval_str, EVAL_BUF_SIZE, "use %s;", argv[1] );
|
|
|
|
eval_pv( eval_str, 0 );
|
|
|
|
|
|
|
|
if (SvTRUE(ERRSV)) {
|
2002-04-16 12:04:40 +08:00
|
|
|
STRLEN n_a;
|
|
|
|
|
2002-04-16 11:59:22 +08:00
|
|
|
fprintf(stderr , "Error %s\n", SvPV(ERRSV, n_a)) ;
|
2002-04-16 11:58:21 +08:00
|
|
|
}
|
2002-04-16 11:47:39 +08:00
|
|
|
#else
|
2002-04-16 11:58:21 +08:00
|
|
|
snprintf( eval_str, EVAL_BUF_SIZE, "%s.pm", argv[1] );
|
|
|
|
perl_require_pv( eval_str );
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
if (SvTRUE(GvSV(errgv))) {
|
|
|
|
fprintf(stderr , "Error %s\n", SvPV(GvSV(errgv), na)) ;
|
2002-04-16 11:58:21 +08:00
|
|
|
}
|
2002-04-16 11:47:39 +08:00
|
|
|
#endif /* PERL_IS_5_6 */
|
2002-04-16 11:58:21 +08:00
|
|
|
else {
|
1999-01-14 14:33:09 +08:00
|
|
|
dSP; ENTER; SAVETMPS;
|
|
|
|
PUSHMARK(sp);
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(argv[1], 0)));
|
|
|
|
PUTBACK;
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
count = call_method("new", G_SCALAR);
|
|
|
|
#else
|
1999-01-14 14:33:09 +08:00
|
|
|
count = perl_call_method("new", G_SCALAR);
|
2002-04-16 11:47:39 +08:00
|
|
|
#endif
|
|
|
|
|
1999-01-14 14:33:09 +08:00
|
|
|
SPAGAIN;
|
|
|
|
|
|
|
|
if (count != 1) {
|
|
|
|
croak("Big trouble in config\n") ;
|
|
|
|
}
|
|
|
|
|
|
|
|
perl_back->pb_obj_ref = newSVsv(POPs);
|
|
|
|
|
|
|
|
PUTBACK; FREETMPS; LEAVE ;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if ( strcasecmp( argv[0], "perlModulePath" ) == 0 ) {
|
|
|
|
if ( argc < 2 ) {
|
|
|
|
fprintf( stderr,
|
|
|
|
"%s: line %d: missing module in \"PerlModulePath <module>\" line\n",
|
|
|
|
fname, lineno );
|
1999-02-05 17:03:47 +08:00
|
|
|
return( 1 );
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
snprintf( eval_str, EVAL_BUF_SIZE, "push @INC, '%s';", argv[1] );
|
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
loc_sv = eval_pv( eval_str, 0 );
|
|
|
|
#else
|
1999-01-14 14:33:09 +08:00
|
|
|
loc_sv = perl_eval_pv( eval_str, 0 );
|
2002-04-16 11:47:39 +08:00
|
|
|
#endif
|
1999-01-14 14:33:09 +08:00
|
|
|
|
2002-04-16 11:58:21 +08:00
|
|
|
/* XXX loc_sv return value is ignored. */
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
} else if ( strcasecmp( argv[0], "filterSearchResults" ) == 0 ) {
|
|
|
|
perl_back->pb_filter_search_results = 1;
|
1999-01-14 14:33:09 +08:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Pass it to Perl module if defined
|
|
|
|
*/
|
|
|
|
|
1999-04-04 12:16:14 +08:00
|
|
|
{
|
|
|
|
dSP ; ENTER ; SAVETMPS;
|
|
|
|
|
|
|
|
PUSHMARK(sp) ;
|
|
|
|
XPUSHs( perl_back->pb_obj_ref );
|
|
|
|
|
|
|
|
/* Put all arguments on the perl stack */
|
|
|
|
for( args = 0; args < argc; args++ ) {
|
|
|
|
XPUSHs(sv_2mortal(newSVpv(argv[args], 0)));
|
|
|
|
}
|
|
|
|
|
|
|
|
PUTBACK ;
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
count = call_method("config", G_SCALAR);
|
|
|
|
#else
|
1999-04-04 12:16:14 +08:00
|
|
|
count = perl_call_method("config", G_SCALAR);
|
2002-04-16 11:47:39 +08:00
|
|
|
#endif
|
1999-04-04 12:16:14 +08:00
|
|
|
|
|
|
|
SPAGAIN ;
|
|
|
|
|
|
|
|
if (count != 1) {
|
|
|
|
croak("Big trouble in config\n") ;
|
|
|
|
}
|
|
|
|
|
|
|
|
return_code = POPi;
|
|
|
|
|
|
|
|
PUTBACK ; FREETMPS ; LEAVE ;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* if the module rejected it then we should reject it */
|
|
|
|
if ( return_code != 0 ) {
|
|
|
|
fprintf( stderr,
|
2002-02-02 18:10:35 +08:00
|
|
|
"Unknown perl backend config: %s\n", argv[0]);
|
1999-08-04 02:14:24 +08:00
|
|
|
exit( EXIT_FAILURE );
|
1999-04-04 12:16:14 +08:00
|
|
|
}
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
1999-02-05 17:03:47 +08:00
|
|
|
|
|
|
|
return 0;
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|