]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldap/compare.c
schema checks
[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_at, mapped_val;
56         struct berval mdn = { 0, NULL };
57         ber_int_t msgid;
58         int freeval = 0;
59         dncookie dc;
60
61         lc = ldap_back_getconn(op, rs);
62         if (!lc || !ldap_back_dobind( lc, op, rs ) ) {
63                 return( -1 );
64         }
65
66         /*
67          * Rewrite the compare dn, if needed
68          */
69         dc.rwmap = &li->rwmap;
70 #ifdef ENABLE_REWRITE
71         dc.conn = op->o_conn;
72         dc.rs = rs;
73         dc.ctx = "compareDn";
74 #else
75         dc.tofrom = 1;
76         dc.normalized = 0;
77 #endif
78         if ( ldap_back_dn_massage( &dc, &op->o_req_dn, &mdn ) ) {
79                 send_ldap_result( op, rs );
80                 return -1;
81         }
82
83         if ( op->orc_ava->aa_desc == slap_schema.si_ad_objectClass
84                 || op->orc_ava->a_desc == slap_schema.si_ad_structuralObjectClass ) {
85                 ldap_back_map(&li->rwmap.rwm_oc, &op->orc_ava->aa_value,
86                                 &mapped_val, BACKLDAP_MAP);
87                 if (mapped_val.bv_val == NULL || mapped_val.bv_val[0] == '\0') {
88                         return( -1 );
89                 }
90                 mapped_at = op->orc_ava->aa_desc->ad_cname;
91         } else {
92                 ldap_back_map(&li->rwmap.rwm_at,
93                                 &op->orc_ava->aa_desc->ad_cname, &mapped_at, 
94                                 BACKLDAP_MAP);
95                 if (mapped_at.bv_val == NULL || mapped_at.bv_val[0] == '\0') {
96                         return( -1 );
97                 }
98                 if (op->orc_ava->aa_desc->ad_type->sat_syntax == slap_schema.si_syn_distinguishedName ) {
99 #ifdef ENABLE_REWRITE
100                         dc.ctx = "compareAttrDN";
101 #endif
102                         ldap_back_dn_massage( &dc, &op->orc_ava->aa_value, &mapped_val );
103                         if (mapped_val.bv_val == NULL || mapped_val.bv_val[0] == '\0') {
104                                 mapped_val = op->orc_ava->aa_value;
105                         } else if (mapped_val.bv_val != op->orc_ava->aa_value.bv_val) {
106                                 freeval = 1;
107                         }
108                 }
109         }
110
111         rs->sr_err = ldap_compare_ext( lc->ld, mdn.bv_val, mapped_at.bv_val,
112                 &mapped_val, op->o_ctrls, NULL, &msgid );
113
114         if ( mdn.bv_val != op->o_req_dn.bv_val ) {
115                 free( mdn.bv_val );
116         }
117         if ( freeval ) {
118                 free( mapped_val.bv_val );
119         }
120         
121         return( ldap_back_op_result( lc, op, rs, msgid, 1 ) );
122 }