]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/search.c
Fixup bdb_entry_release now that entry_decode uses two memory blocks
[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                     nentries;
65         int                     rc;
66
67         mp = ( struct monitorentrypriv * )e_parent->e_private;
68         e = mp->mp_children;
69
70         if ( e == NULL && MONITOR_HAS_VOLATILE_CH( mp ) ) {
71                 monitor_entry_create( mi, NULL, e_parent, &e );
72                 if ( e != NULL) {
73                         monitor_cache_lock( e );
74                 }
75         }
76         monitor_cache_release( mi, e_parent );
77
78         for ( nentries = *nentriesp; e != NULL; ) {
79                 mp = ( struct monitorentrypriv * )e->e_private;
80
81                 monitor_entry_update( mi, e );
82                 
83                 rc = test_filter( be, conn, op, e, filter );
84                 if ( rc == LDAP_COMPARE_TRUE ) {
85                         send_search_entry( be, conn, op, e, 
86                                         attrs, attrsonly, NULL );
87                         nentries++;
88                 }
89
90                 if ( ( mp->mp_children || MONITOR_HAS_VOLATILE_CH( mp ) )
91                                 && sub ) {
92                         rc = monitor_send_children( be, conn, op, filter, 
93                                         attrs, attrsonly, 
94                                         e, sub, &nentries );
95                         if ( rc ) {
96                                 return( rc );
97                         }
98                 }
99
100                 e_tmp = mp->mp_next;
101                 if ( e_tmp != NULL ) {
102                         monitor_cache_lock( e_tmp );
103                 }
104                 monitor_cache_release( mi, e );
105                 e = e_tmp;
106         }
107         
108         return( 0 );
109 }
110
111 int
112 monitor_back_search(
113         Backend         *be,
114         Connection      *conn,
115         Operation       *op,
116         const char      *base,
117         const char      *nbase,
118         int             scope,
119         int             deref,
120         int             slimit,
121         int             tlimit,
122         Filter          *filter,
123         const char      *filterstr,
124         char            **attrs,
125         int             attrsonly 
126 )
127 {
128         struct monitorinfo      *mi = (struct monitorinfo *) be->be_private;
129         int             rc;
130         Entry           *e;
131         int             nentries = 0;
132
133 #ifdef NEW_LOGGING
134         LDAP_LOG(( "backend", LDAP_LEVEL_ENTRY,
135                    "monitor_back_search: enter\n" ));
136 #else
137         Debug(LDAP_DEBUG_TRACE, "=> monitor_back_search\n%s%s%s", "", "", "");
138 #endif
139
140
141         /* get entry with reader lock */
142         monitor_cache_dn2entry( mi, nbase, &e );
143         if ( e == NULL ) {
144                 send_ldap_result( conn, op, LDAP_NO_SUCH_OBJECT,
145                         NULL, NULL, NULL, NULL );
146
147                 return( 0 );
148         }
149
150         nentries = 0;
151         switch ( scope ) {
152         case LDAP_SCOPE_BASE:
153                 monitor_entry_update( mi, e );
154                 rc = test_filter( be, conn, op, e, filter );
155                 if ( rc == LDAP_COMPARE_TRUE ) {                        
156                         send_search_entry( be, conn, op, e, attrs, 
157                                         attrsonly, NULL );
158                         nentries = 1;
159                 }
160                 monitor_cache_release( mi, e );
161                 break;
162
163         case LDAP_SCOPE_ONELEVEL:
164                 rc = monitor_send_children( be, conn, op, filter,
165                                 attrs, attrsonly,
166                                 e, 0, &nentries );
167                 if ( rc ) {
168                         // error
169                 }               
170                 
171                 break;
172
173         case LDAP_SCOPE_SUBTREE:
174                 monitor_entry_update( mi, e );
175                 rc = test_filter( be, conn, op, e, filter );
176                 if ( rc == LDAP_COMPARE_TRUE ) {
177                         send_search_entry( be, conn, op, e, attrs,
178                                         attrsonly, NULL );
179                         nentries++;
180                 }
181
182                 rc = monitor_send_children( be, conn, op, filter,
183                                 attrs, attrsonly,
184                                 e, 1, &nentries );
185                 if ( rc ) {
186                         // error
187                 }
188
189                 break;
190         }
191         
192         send_search_result( conn, op, LDAP_SUCCESS,
193                         NULL, NULL, NULL, NULL, nentries );
194
195         return( 0 );
196 }