1999-09-09 03:06:24 +08:00
|
|
|
/* $OpenLDAP$ */
|
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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2002-04-16 12:25:44 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#ifdef HAVE_WIN32_ASPERL
|
|
|
|
#include "asperl_undefs.h"
|
|
|
|
#endif
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
#include <EXTERN.h>
|
|
|
|
#include <perl.h>
|
|
|
|
|
|
|
|
#include "perl_back.h"
|
|
|
|
|
|
|
|
/**********************************************************
|
|
|
|
*
|
|
|
|
* Search
|
|
|
|
*
|
|
|
|
**********************************************************/
|
|
|
|
int
|
|
|
|
perl_back_search(
|
1999-04-04 12:16:14 +08:00
|
|
|
Backend *be,
|
|
|
|
Connection *conn,
|
|
|
|
Operation *op,
|
2002-02-02 18:10:35 +08:00
|
|
|
struct berval *base,
|
|
|
|
struct berval *nbase,
|
1999-04-04 12:16:14 +08:00
|
|
|
int scope,
|
|
|
|
int deref,
|
|
|
|
int sizelimit,
|
|
|
|
int timelimit,
|
|
|
|
Filter *filter,
|
2002-02-02 18:10:35 +08:00
|
|
|
struct berval *filterstr,
|
2001-12-31 19:35:52 +08:00
|
|
|
AttributeName *attrs,
|
1999-04-04 12:16:14 +08:00
|
|
|
int attrsonly
|
|
|
|
)
|
1999-01-14 14:33:09 +08:00
|
|
|
{
|
|
|
|
char test[500];
|
|
|
|
int count ;
|
|
|
|
int err = 0;
|
|
|
|
char *matched = NULL, *info = NULL;
|
|
|
|
PerlBackend *perl_back = (PerlBackend *)be->be_private;
|
2001-12-31 19:35:52 +08:00
|
|
|
AttributeName *an;
|
1999-01-14 14:33:09 +08:00
|
|
|
Entry *e;
|
|
|
|
char *buf;
|
|
|
|
int i;
|
1999-04-04 12:16:14 +08:00
|
|
|
int return_code;
|
1999-01-14 14:33:09 +08:00
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &perl_interpreter_mutex );
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
{
|
|
|
|
dSP; ENTER; SAVETMPS;
|
|
|
|
|
|
|
|
PUSHMARK(sp) ;
|
|
|
|
XPUSHs( perl_back->pb_obj_ref );
|
2002-04-16 11:47:39 +08:00
|
|
|
XPUSHs(sv_2mortal(newSVpv( nbase->bv_val , 0)));
|
|
|
|
XPUSHs(sv_2mortal(newSViv( scope )));
|
|
|
|
XPUSHs(sv_2mortal(newSViv( deref )));
|
1999-01-14 14:33:09 +08:00
|
|
|
XPUSHs(sv_2mortal(newSViv( sizelimit )));
|
|
|
|
XPUSHs(sv_2mortal(newSViv( timelimit )));
|
2002-04-16 11:47:39 +08:00
|
|
|
XPUSHs(sv_2mortal(newSVpv( filterstr->bv_val , 0)));
|
1999-01-14 14:33:09 +08:00
|
|
|
XPUSHs(sv_2mortal(newSViv( attrsonly )));
|
|
|
|
|
2002-01-03 13:41:50 +08:00
|
|
|
for ( an = attrs; an && an->an_name.bv_val; an++ ) {
|
2001-12-31 19:35:52 +08:00
|
|
|
XPUSHs(sv_2mortal(newSVpv( an->an_name.bv_val , 0)));
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
PUTBACK;
|
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
#ifdef PERL_IS_5_6
|
|
|
|
count = call_method("search", G_ARRAY );
|
|
|
|
#else
|
1999-04-04 12:16:14 +08:00
|
|
|
count = perl_call_method("search", G_ARRAY );
|
2002-04-16 11:47:39 +08:00
|
|
|
#endif
|
1999-01-14 14:33:09 +08:00
|
|
|
|
|
|
|
SPAGAIN;
|
|
|
|
|
1999-04-04 12:16:14 +08:00
|
|
|
if (count < 1) {
|
1999-01-14 14:33:09 +08:00
|
|
|
croak("Big trouble in back_search\n") ;
|
|
|
|
}
|
1999-04-04 12:16:14 +08:00
|
|
|
|
|
|
|
if ( count > 1 ) {
|
1999-01-14 14:33:09 +08:00
|
|
|
|
1999-04-04 12:16:14 +08:00
|
|
|
for ( i = 1; i < count; i++ ) {
|
|
|
|
|
|
|
|
buf = POPp;
|
|
|
|
|
|
|
|
if ( (e = str2entry( buf )) == NULL ) {
|
|
|
|
Debug( LDAP_DEBUG_ANY, "str2entry(%s) failed\n", buf, 0, 0 );
|
|
|
|
|
|
|
|
} else {
|
2002-04-16 11:47:39 +08:00
|
|
|
int send_entry;
|
|
|
|
|
|
|
|
if (perl_back->pb_filter_search_results)
|
|
|
|
send_entry = (test_filter( be, conn, op, e, filter ) == LDAP_COMPARE_TRUE);
|
|
|
|
else
|
|
|
|
send_entry = 1;
|
|
|
|
|
|
|
|
if (send_entry) {
|
|
|
|
send_search_entry( be, conn, op,
|
|
|
|
e, attrs, attrsonly, NULL );
|
|
|
|
}
|
|
|
|
|
1999-04-04 12:16:14 +08:00
|
|
|
entry_free( e );
|
|
|
|
}
|
|
|
|
}
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
|
1999-04-04 12:16:14 +08:00
|
|
|
/*
|
|
|
|
* We grab the return code last because the stack comes
|
|
|
|
* from perl in reverse order.
|
|
|
|
*
|
|
|
|
* ex perl: return ( 0, $res_1, $res_2 );
|
|
|
|
*
|
|
|
|
* ex stack: <$res_2> <$res_1> <0>
|
|
|
|
*/
|
|
|
|
|
|
|
|
return_code = POPi;
|
|
|
|
|
|
|
|
|
|
|
|
|
1999-01-14 14:33:09 +08:00
|
|
|
PUTBACK; FREETMPS; LEAVE;
|
|
|
|
}
|
|
|
|
|
1999-01-28 12:34:55 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &perl_interpreter_mutex );
|
1999-01-14 14:33:09 +08:00
|
|
|
|
2002-04-16 11:47:39 +08:00
|
|
|
send_ldap_result( conn, op, return_code,
|
|
|
|
NULL, NULL, NULL, NULL );
|
2002-04-16 11:51:51 +08:00
|
|
|
|
|
|
|
return 0;
|
1999-01-14 14:33:09 +08:00
|
|
|
}
|
|
|
|
|