]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/compare.c
Happy new year!
[openldap] / servers / slapd / back-meta / compare.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1999-2006 The OpenLDAP Foundation.
5  * Portions Copyright 2001-2003 Pierangelo Masarati.
6  * Portions Copyright 1999-2003 Howard Chu.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in the file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by the Howard Chu for inclusion
19  * in OpenLDAP Software and subsequently enhanced by Pierangelo
20  * Masarati.
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/string.h>
28 #include <ac/socket.h>
29
30 #include "slap.h"
31 #include "../back-ldap/back-ldap.h"
32 #include "back-meta.h"
33
34 int
35 meta_back_compare( Operation *op, SlapReply *rs )
36 {
37         metainfo_t              *mi = ( metainfo_t * )op->o_bd->be_private;
38         metaconn_t              *mc = NULL;
39         char                    *match = NULL,
40                                 *err = NULL;
41         struct berval           mmatch = BER_BVNULL;
42         int                     ncandidates = 0,
43                                 last = 0,
44                                 i,
45                                 count = 0,
46                                 rc,
47                                 cres = LDAP_SUCCESS,
48                                 rres = LDAP_SUCCESS,
49                                 *msgid;
50         dncookie                dc;
51
52         SlapReply               *candidates = meta_back_candidates_get( op );
53
54         mc = meta_back_getconn( op, rs, NULL, LDAP_BACK_SENDERR );
55         if ( !mc || !meta_back_dobind( op, rs, mc, LDAP_BACK_SENDERR ) ) {
56                 return rs->sr_err;
57         }
58         
59         msgid = ch_calloc( sizeof( int ), mi->mi_ntargets );
60         if ( msgid == NULL ) {
61                 send_ldap_error( op, rs, LDAP_OTHER, NULL );
62                 rc = LDAP_OTHER;
63                 goto done;
64         }
65
66         /*
67          * start an asynchronous compare for each candidate target
68          */
69         dc.conn = op->o_conn;
70         dc.rs = rs;
71         dc.ctx = "compareDN";
72
73         for ( i = 0; i < mi->mi_ntargets; i++ ) {
74                 struct berval           mdn = BER_BVNULL;
75                 struct berval           mapped_attr = op->orc_ava->aa_desc->ad_cname;
76                 struct berval           mapped_value = op->orc_ava->aa_value;
77
78                 if ( candidates[ i ].sr_tag != META_CANDIDATE ) {
79                         msgid[ i ] = -1;
80                         continue;
81                 }
82
83                 /*
84                  * Rewrite the compare dn, if needed
85                  */
86                 dc.target = &mi->mi_targets[ i ];
87
88                 switch ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
89                 case LDAP_UNWILLING_TO_PERFORM:
90                         rc = 1;
91                         goto finish;
92
93                 default:
94                         break;
95                 }
96
97                 /*
98                  * if attr is objectClass, try to remap the value
99                  */
100                 if ( op->orc_ava->aa_desc == slap_schema.si_ad_objectClass ) {
101                         ldap_back_map( &mi->mi_targets[ i ].mt_rwmap.rwm_oc,
102                                         &op->orc_ava->aa_value,
103                                         &mapped_value, BACKLDAP_MAP );
104
105                         if ( BER_BVISNULL( &mapped_value ) || mapped_value.bv_val[0] == '\0' ) {
106                                 continue;
107                         }
108                 /*
109                  * else try to remap the attribute
110                  */
111                 } else {
112                         ldap_back_map( &mi->mi_targets[ i ].mt_rwmap.rwm_at,
113                                 &op->orc_ava->aa_desc->ad_cname,
114                                 &mapped_attr, BACKLDAP_MAP );
115                         if ( BER_BVISNULL( &mapped_attr ) || mapped_attr.bv_val[0] == '\0' ) {
116                                 continue;
117                         }
118
119                         if ( op->orc_ava->aa_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName )
120                         {
121                                 dc.ctx = "compareAttrDN";
122
123                                 switch ( ldap_back_dn_massage( &dc, &op->orc_ava->aa_value, &mapped_value ) )
124                                 {
125                                 case LDAP_UNWILLING_TO_PERFORM:
126                                         rc = 1;
127                                         goto finish;
128
129                                 default:
130                                         break;
131                                 }
132                         }
133                 }
134                 
135                 /*
136                  * the compare op is spawned across the targets and the first
137                  * that returns determines the result; a constraint on unicity
138                  * of the result ought to be enforced
139                  */
140                  rc = ldap_compare_ext( mc->mc_conns[ i ].msc_ld, mdn.bv_val,
141                                 mapped_attr.bv_val, &mapped_value,
142                                 op->o_ctrls, NULL, &msgid[ i ] );
143
144                 if ( mdn.bv_val != op->o_req_dn.bv_val ) {
145                         free( mdn.bv_val );
146                         BER_BVZERO( &mdn );
147                 }
148
149                 if ( mapped_attr.bv_val != op->orc_ava->aa_desc->ad_cname.bv_val ) {
150                         free( mapped_attr.bv_val );
151                         BER_BVZERO( &mapped_attr );
152                 }
153
154                 if ( mapped_value.bv_val != op->orc_ava->aa_value.bv_val ) {
155                         free( mapped_value.bv_val );
156                         BER_BVZERO( &mapped_value );
157                 }
158
159                 if ( rc != LDAP_SUCCESS ) {
160                         /* FIXME: what should we do with the error? */
161                         continue;
162                 }
163
164                 ++ncandidates;
165         }
166
167         /*
168          * wait for replies
169          */
170         for ( rc = 0, count = 0; ncandidates > 0; ) {
171
172                 /*
173                  * FIXME: should we check for abandon?
174                  */
175                 for ( i = 0; i < mi->mi_ntargets; i++ ) {
176                         metasingleconn_t        *msc = &mc->mc_conns[ i ];
177                         int                     lrc;
178                         LDAPMessage             *res = NULL;
179                         struct timeval          tv;
180
181                         LDAP_BACK_TV_SET( &tv );
182
183                         if ( msgid[ i ] == -1 ) {
184                                 continue;
185                         }
186
187                         lrc = ldap_result( msc->msc_ld, msgid[ i ],
188                                         LDAP_MSG_ALL, &tv, &res );
189
190                         if ( lrc == 0 ) {
191                                 assert( res == NULL );
192                                 continue;
193
194                         } else if ( lrc == -1 ) {
195                                 /* we do not retry in this case;
196                                  * only for unique operations... */
197                                 ldap_get_option( msc->msc_ld,
198                                         LDAP_OPT_ERROR_NUMBER, &rs->sr_err );
199                                 rres = slap_map_api2result( rs );
200                                 rres = rc;
201                                 rc = -1;
202                                 goto finish;
203
204                         } else if ( lrc == LDAP_RES_COMPARE ) {
205                                 if ( count > 0 ) {
206                                         rres = LDAP_OTHER;
207                                         rc = -1;
208                                         goto finish;
209                                 }
210
211                                 rc = ldap_parse_result( msc->msc_ld, res,
212                                                 &rs->sr_err,
213                                                 NULL, NULL, NULL, NULL, 1 );
214                                 if ( rc != LDAP_SUCCESS ) {
215                                         rres = rc;
216                                         rc = -1;
217                                         goto finish;
218                                 }
219                                 
220                                 switch ( rs->sr_err ) {
221                                 case LDAP_COMPARE_TRUE:
222                                 case LDAP_COMPARE_FALSE:
223
224                                         /*
225                                          * true or false, got it;
226                                          * sending to cache ...
227                                          */
228                                         if ( mi->mi_cache.ttl != META_DNCACHE_DISABLED ) {
229                                                 ( void )meta_dncache_update_entry( &mi->mi_cache, &op->o_req_ndn, i );
230                                         }
231
232                                         count++;
233                                         rc = 0;
234                                         break;
235
236                                 default:
237                                         rres = slap_map_api2result( rs );
238
239                                         if ( err != NULL ) {
240                                                 free( err );
241                                         }
242                                         ldap_get_option( msc->msc_ld,
243                                                 LDAP_OPT_ERROR_STRING, &err );
244
245                                         if ( match != NULL ) {
246                                                 free( match );
247                                         }
248                                         ldap_get_option( msc->msc_ld,
249                                                 LDAP_OPT_MATCHED_DN, &match );
250                                         
251                                         last = i;
252                                         break;
253                                 }
254                                 msgid[ i ] = -1;
255                                 --ncandidates;
256
257                         } else {
258                                 msgid[ i ] = -1;
259                                 --ncandidates;
260                                 if ( res ) {
261                                         ldap_msgfree( res );
262                                 }
263                                 break;
264                         }
265                 }
266         }
267
268 finish:;
269
270         /*
271          * Rewrite the matched portion of the search base, if required
272          * 
273          * FIXME: only the last one gets caught!
274          */
275         if ( count == 1 ) {
276                 if ( match != NULL ) {
277                         free( match );
278                         match = NULL;
279                 }
280                 
281                 /*
282                  * the result of the compare is assigned to the res code
283                  * that will be returned
284                  */
285                 rres = cres;
286                 
287                 /*
288                  * At least one compare failed with matched portion,
289                  * and none was successful
290                  */
291         } else if ( match != NULL && match[ 0 ] != '\0' ) {
292                 struct berval matched, pmatched;
293
294                 ber_str2bv( match, 0, 0, &matched );
295
296                 dc.ctx = "matchedDN";
297                 ldap_back_dn_massage( &dc, &matched, &mmatch );
298                 if ( dnPretty( NULL, &mmatch, &pmatched, NULL ) == LDAP_SUCCESS ) {
299                         if ( mmatch.bv_val != match ) {
300                                 free( mmatch.bv_val );
301                         }
302                         mmatch = pmatched;
303                 }
304         }
305
306         if ( rres != LDAP_SUCCESS ) {
307                 rs->sr_err = rres;
308         }
309         rs->sr_matched = mmatch.bv_val;
310         send_ldap_result( op, rs );
311         rs->sr_matched = NULL;
312
313         if ( match != NULL ) {
314                 if ( mmatch.bv_val != match ) {
315                         free( mmatch.bv_val );
316                 }
317                 free( match );
318         }
319
320         if ( msgid ) {
321                 free( msgid );
322         }
323
324 done:;
325         meta_back_release_conn( op, mc );
326
327         return rc;
328 }
329