]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/compare.c
minor fixes: leaks, dangling pointers, cleaner tag skip
[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         ber_int_t msgid;
58
59         lc = ldap_back_getconn(op, rs);
60         if (!lc || !ldap_back_dobind( lc, op, rs ) ) {
61                 return( -1 );
62         }
63
64         /*
65          * Rewrite the compare dn, if needed
66          */
67 #ifdef ENABLE_REWRITE
68         switch ( rewrite_session( li->rwinfo, "compareDn", op->o_req_dn.bv_val, op->o_conn, &mdn.bv_val ) ) {
69         case REWRITE_REGEXEC_OK:
70                 if ( mdn.bv_val == NULL ) {
71                         mdn.bv_val = ( char * )op->o_req_dn.bv_val;
72                 }
73 #ifdef NEW_LOGGING
74                 LDAP_LOG( BACK_LDAP, DETAIL1, 
75                         "[rw] compareDn: \"%s\" -> \"%s\"\n", op->o_req_dn.bv_val, mdn.bv_val, 0 );
76 #else /* !NEW_LOGGING */
77                 Debug( LDAP_DEBUG_ARGS, "rw> compareDn: \"%s\" -> \"%s\"\n%s",
78                                 op->o_req_dn.bv_val, mdn.bv_val, "" );
79 #endif /* !NEW_LOGGING */
80                 break;
81                 
82         case REWRITE_REGEXEC_UNWILLING:
83                 send_ldap_error( op, rs, LDAP_UNWILLING_TO_PERFORM,
84                                 "Operation not allowed" );
85                 return( -1 );
86                 
87         case REWRITE_REGEXEC_ERR:
88                 send_ldap_error( op, rs, LDAP_OTHER,
89                                 "Rewrite error" );
90                 return( -1 );
91         }
92 #else /* !ENABLE_REWRITE */
93         ldap_back_dn_massage( li, &op->o_req_dn, &mdn, 0, 1 );
94         if ( mdn.bv_val == NULL ) {
95                 return -1;
96         }
97 #endif /* !ENABLE_REWRITE */
98
99         if ( op->oq_compare.rs_ava->aa_desc == slap_schema.si_ad_objectClass ) {
100                 ldap_back_map(&li->oc_map, &op->oq_compare.rs_ava->aa_desc->ad_cname, &mapped_oc,
101                                 BACKLDAP_MAP);
102                 if (mapped_oc.bv_val == NULL || mapped_oc.bv_val[0] == '\0') {
103                         return( -1 );
104                 }
105                 
106         } else {
107                 ldap_back_map(&li->at_map, &op->oq_compare.rs_ava->aa_value, &mapped_at, 
108                                 BACKLDAP_MAP);
109                 if (mapped_at.bv_val == NULL || mapped_at.bv_val[0] == '\0') {
110                         return( -1 );
111                 }
112         }
113
114         rs->sr_err = ldap_compare_ext( lc->ld, mdn.bv_val, mapped_oc.bv_val,
115                 &mapped_at, op->o_ctrls, NULL, &msgid );
116
117         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
118                 free( mdn.bv_val );
119         }
120         
121         return( ldap_back_op_result( lc, op, rs, msgid, 1 ) );
122 }