1 /* search.c - shell backend search function */
4 * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5 * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
12 #include <ac/socket.h>
13 #include <ac/string.h>
30 struct berval *filterstr,
35 struct shellinfo *si = (struct shellinfo *) be->be_private;
39 if ( si->si_search == NULL ) {
40 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
41 "search not implemented", NULL, NULL );
45 if ( (op->o_private = (void *) forkandexec( si->si_search, &rfp, &wfp ))
47 send_ldap_result( conn, op, LDAP_OTHER, NULL,
48 "could not fork/exec", NULL, NULL );
52 /* write out the request to the search process */
53 fprintf( wfp, "SEARCH\n" );
54 fprintf( wfp, "msgid: %ld\n", (long) op->o_msgid );
55 print_suffixes( wfp, be );
56 fprintf( wfp, "base: %s\n", base->bv_val );
57 fprintf( wfp, "scope: %d\n", scope );
58 fprintf( wfp, "deref: %d\n", deref );
59 fprintf( wfp, "sizelimit: %d\n", size );
60 fprintf( wfp, "timelimit: %d\n", time );
61 fprintf( wfp, "filter: %s\n", filterstr->bv_val );
62 fprintf( wfp, "attrsonly: %d\n", attrsonly ? 1 : 0 );
63 fprintf( wfp, "attrs:%s", attrs == NULL ? " all" : "" );
64 for ( an = attrs; an && an->an_name.bv_val; an++ ) {
65 fprintf( wfp, " %s", an->an_name.bv_val );
70 /* read in the results and send them along */
71 read_and_send_results( be, conn, op, rfp, attrs, attrsonly );