]> git.sur5r.net Git - openldap/blob - servers/slapd/back-shell/search.c
Add copyright notices
[openldap] / servers / slapd / back-shell / search.c
1 /* search.c - shell backend search function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #include "portable.h"
9
10 #include <stdio.h>
11
12 #include <ac/socket.h>
13 #include <ac/string.h>
14
15 #include "slap.h"
16 #include "shell.h"
17
18 int
19 shell_back_search(
20     Backend     *be,
21     Connection  *conn,
22     Operation   *op,
23     char        *base,
24     char        *nbase,
25     int         scope,
26     int         deref,
27     int         size,
28     int         time,
29     Filter      *filter,
30     char        *filterstr,
31     char        **attrs,
32     int         attrsonly
33 )
34 {
35         struct shellinfo        *si = (struct shellinfo *) be->be_private;
36         int                     i;
37         FILE                    *rfp, *wfp;
38
39         if ( si->si_search == NULL ) {
40                 send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, NULL,
41                     "search not implemented", NULL, NULL );
42                 return( -1 );
43         }
44
45         if ( (op->o_private = (void *) forkandexec( si->si_search, &rfp, &wfp ))
46             == (void *) -1 ) {
47                 send_ldap_result( conn, op, LDAP_OPERATIONS_ERROR, NULL,
48                     "could not fork/exec", NULL, NULL );
49                 return( -1 );
50         }
51
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 );
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 );
62         fprintf( wfp, "attrsonly: %d\n", attrsonly ? 1 : 0 );
63         fprintf( wfp, "attrs:%s", attrs == NULL ? " all" : "" );
64         for ( i = 0; attrs != NULL && attrs[i] != NULL; i++ ) {
65                 fprintf( wfp, " %s", attrs[i] );
66         }
67         fprintf( wfp, "\n" );
68         fclose( wfp );
69
70         /* read in the results and send them along */
71         read_and_send_results( be, conn, op, rfp, attrs, attrsonly );
72
73         fclose( rfp );
74         return( 0 );
75 }