]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/search.c
Extend value_match to extract an asserted value from a full value
[openldap] / servers / slapd / back-monitor / search.c
1 /* search.c - monitor backend search function */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
8  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
9  * 
10  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
11  * 
12  * This work has beed deveolped for the OpenLDAP Foundation 
13  * in the hope that it may be useful to the Open Source community, 
14  * but WITHOUT ANY WARRANTY.
15  * 
16  * Permission is granted to anyone to use this software for any purpose
17  * on any computer system, and to alter it and redistribute it, subject
18  * to the following restrictions:
19  * 
20  * 1. The author and SysNet s.n.c. are not responsible for the consequences
21  *    of use of this software, no matter how awful, even if they arise from
22  *    flaws in it.
23  * 
24  * 2. The origin of this software must not be misrepresented, either by
25  *    explicit claim or by omission.  Since few users ever read sources,
26  *    credits should appear in the documentation.
27  * 
28  * 3. Altered versions must be plainly marked as such, and must not be
29  *    misrepresented as being the original software.  Since few users
30  *    ever read sources, credits should appear in the documentation.
31  *    SysNet s.n.c. cannot be responsible for the consequences of the
32  *    alterations.
33  * 
34  * 4. This notice may not be removed or altered.
35  */
36
37 #include "portable.h"
38
39 #include <stdio.h>
40
41 #include <ac/string.h>
42 #include <ac/socket.h>
43
44 #include "slap.h"
45 #include "back-monitor.h"
46 #include "proto-back-monitor.h"
47
48 static int
49 monitor_send_children(
50         Backend         *be,
51         Connection      *conn,
52         Operation       *op,
53         Filter          *filter,
54         char            **attrs,
55         int             attrsonly,
56         Entry           *e_parent,
57         int             sub,
58         int             *nentriesp
59 )
60 {
61         struct monitorinfo      *mi = (struct monitorinfo *) be->be_private;
62         Entry                   *e, *e_tmp;
63         struct monitorentrypriv *mp;
64         int                     rc;
65
66         mp = ( struct monitorentrypriv * )e_parent->e_private;
67         e = mp->mp_children;
68
69         if ( e == NULL && MONITOR_HAS_VOLATILE_CH( mp ) ) {
70                 monitor_entry_create( mi, NULL, e_parent, &e );
71                 if ( e != NULL) {
72                         monitor_cache_lock( e );
73                 }
74         }
75         monitor_cache_release( mi, e_parent );
76
77         for ( ; e != NULL; ) {
78                 mp = ( struct monitorentrypriv * )e->e_private;
79
80                 monitor_entry_update( mi, e );
81                 
82                 rc = test_filter( be, conn, op, e, filter );
83                 if ( rc == LDAP_COMPARE_TRUE ) {
84                         send_search_entry( be, conn, op, e, 
85                                         attrs, attrsonly, NULL );
86                         *nentriesp++;
87                 }
88
89                 if ( ( mp->mp_children || MONITOR_HAS_VOLATILE_CH( mp ) )
90                                 && sub ) {
91                         rc = monitor_send_children( be, conn, op, filter, 
92                                         attrs, attrsonly, 
93                                         e, sub, nentriesp );
94                         if ( rc ) {
95                                 return( rc );
96                         }
97                 }
98
99                 e_tmp = mp->mp_next;
100                 if ( e_tmp != NULL ) {
101                         monitor_cache_lock( e_tmp );
102                 }
103                 monitor_cache_release( mi, e );
104                 e = e_tmp;
105         }
106         
107         return( 0 );
108 }
109
110 int
111 monitor_back_search(
112         Backend         *be,
113         Connection      *conn,
114         Operation       *op,
115         const char      *base,
116         const char      *nbase,
117         int             scope,
118         int             deref,
119         int             slimit,
120         int             tlimit,
121         Filter          *filter,
122         const char      *filterstr,
123         char            **attrs,
124         int             attrsonly 
125 )
126 {
127         struct monitorinfo      *mi = (struct monitorinfo *) be->be_private;
128         int             rc;
129         Entry           *e;
130         int             nentries = 0;
131
132 #ifdef NEW_LOGGING
133         LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
134                    "monitor_back_search: enter\n" ));
135 #else
136         Debug(LDAP_DEBUG_TRACE, "=> monitor_back_search\n%s%s%s", "", "", "");
137 #endif
138
139
140         /* get entry with reader lock */
141         monitor_cache_dn2entry( mi, nbase, &e );
142         if ( e == NULL ) {
143                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT,
144                         NULL, NULL, NULL, NULL );
145
146                 return( 0 );
147         }
148
149         nentries = 0;
150         switch ( scope ) {
151         case LDAP_SCOPE_BASE:
152                 monitor_entry_update( mi, e );
153                 rc = test_filter( be, conn, op, e, filter );
154                 if ( rc == LDAP_COMPARE_TRUE ) {                        
155                         send_search_entry( be, conn, op, e, attrs, 
156                                         attrsonly, NULL );
157                         nentries = 1;
158                 }
159                 monitor_cache_release( mi, e );
160                 break;
161
162         case LDAP_SCOPE_ONELEVEL:
163                 rc = monitor_send_children( be, conn, op, filter,
164                                 attrs, attrsonly,
165                                 e, 0, &nentries );
166                 if ( rc ) {
167                         // error
168                 }               
169                 
170                 break;
171
172         case LDAP_SCOPE_SUBTREE:
173                 monitor_entry_update( mi, e );
174                 rc = test_filter( be, conn, op, e, filter );
175                 if ( rc == LDAP_COMPARE_TRUE ) {
176                         send_search_entry( be, conn, op, e, attrs,
177                                         attrsonly, NULL );
178                         nentries++;
179                 }
180
181                 rc = monitor_send_children( be, conn, op, filter,
182                                 attrs, attrsonly,
183                                 e, 1, &nentries );
184                 if ( rc ) {
185                         // error
186                 }
187
188                 break;
189         }
190         
191         send_search_result( conn, op, LDAP_SUCCESS,
192                         NULL, NULL, NULL, NULL, nentries );
193
194         return( 0 );
195 }