]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/compare.c
Major API change - (SLAP_OP_BLOCKS) All request parameters are
[openldap] / servers / slapd / back-ldap / compare.c
1 /* compare.c - ldap backend compare function */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7 /* This is an altered version */
8 /*
9  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
10  * 
11  * Permission is granted to anyone to use this software for any purpose
12  * on any computer system, and to alter it and redistribute it, subject
13  * to the following restrictions:
14  * 
15  * 1. The author is not responsible for the consequences of use of this
16  *    software, no matter how awful, even if they arise from flaws in it.
17  * 
18  * 2. The origin of this software must not be misrepresented, either by
19  *    explicit claim or by omission.  Since few users ever read sources,
20  *    credits should appear in the documentation.
21  * 
22  * 3. Altered versions must be plainly marked as such, and must not be
23  *    misrepresented as being the original software.  Since few users
24  *    ever read sources, credits should appear in the documentation.
25  * 
26  * 4. This notice may not be removed or altered.
27  *
28  *
29  *
30  * Copyright 2000, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
31  * 
32  * This software is being modified by Pierangelo Masarati.
33  * The previously reported conditions apply to the modified code as well.
34  * Changes in the original code are highlighted where required.
35  * Credits for the original code go to the author, Howard Chu.
36  */
37
38 #include "portable.h"
39
40 #include <stdio.h>
41
42 #include <ac/string.h>
43 #include <ac/socket.h>
44
45 #include "slap.h"
46 #include "back-ldap.h"
47
48 int
49 ldap_back_compare(
50     Operation   *op,
51     SlapReply   *rs )
52 {
53         struct ldapinfo *li = (struct ldapinfo *) op->o_bd->be_private;
54         struct ldapconn *lc;
55         struct berval mapped_oc, mapped_at;
56         struct berval mdn = { 0, NULL };
57         int rc;
58         ber_int_t msgid;
59
60         lc = ldap_back_getconn(li, op, rs);
61         if (!lc || !ldap_back_dobind( li, lc, op, rs ) ) {
62                 return( -1 );
63         }
64
65         /*
66          * Rewrite the compare dn, if needed
67          */
68 #ifdef ENABLE_REWRITE
69         switch ( rewrite_session( li->rwinfo, "compareDn", op->o_req_dn.bv_val, op->o_conn, &mdn.bv_val ) ) {
70         case REWRITE_REGEXEC_OK:
71                 if ( mdn.bv_val == NULL ) {
72                         mdn.bv_val = ( char * )op->o_req_dn.bv_val;
73                 }
74 #ifdef NEW_LOGGING
75                 LDAP_LOG( BACK_LDAP, DETAIL1, 
76                         "[rw] compareDn: \"%s\" -> \"%s\"\n", op->o_req_dn.bv_val, mdn.bv_val, 0 );
77 #else /* !NEW_LOGGING */
78                 Debug( LDAP_DEBUG_ARGS, "rw> compareDn: \"%s\" -> \"%s\"\n%s",
79                                 op->o_req_dn.bv_val, mdn.bv_val, "" );
80 #endif /* !NEW_LOGGING */
81                 break;
82                 
83         case REWRITE_REGEXEC_UNWILLING:
84                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
85                                 "Operation not allowed" );
86                 return( -1 );
87                 
88         case REWRITE_REGEXEC_ERR:
89                 send_ldap_error( op, rs, LDAP_OTHER,
90                                 "Rewrite error" );
91                 return( -1 );
92         }
93 #else /* !ENABLE_REWRITE */
94         ldap_back_dn_massage( li, &op->o_req_dn, &mdn, 0, 1 );
95         if ( mdn.bv_val == NULL ) {
96                 return -1;
97         }
98 #endif /* !ENABLE_REWRITE */
99
100         if ( op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_objectClass ) {
101                 ldap_back_map(&li->oc_map, &op->oq_compare.rs_ava->aa_desc->ad_cname, &mapped_oc,
102                                 BACKLDAP_MAP);
103                 if (mapped_oc.bv_val == NULL || mapped_oc.bv_val[0] == '\0') {
104                         return( -1 );
105                 }
106                 
107         } else {
108                 ldap_back_map(&li->at_map, &op->oq_compare.rs_ava->aa_value, &mapped_at, 
109                                 BACKLDAP_MAP);
110                 if (mapped_at.bv_val == NULL || mapped_at.bv_val[0] == '\0') {
111                         return( -1 );
112                 }
113         }
114
115         rc = ldap_compare_ext( lc->ld, mdn.bv_val, mapped_oc.bv_val,
116                 &mapped_at, op->o_ctrls, NULL, &msgid );
117
118         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
119                 free( mdn.bv_val );
120         }
121         
122         return( ldap_back_op_result( li, lc, op, rs, msgid, rc, 1 ) );
123 }