]> git.sur5r.net Git - openldap/blob - servers/slapd/compare.c
ae6d4e6ea26442cc169f559f11db6f9519293d35
[openldap] / servers / slapd / compare.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright (c) 1995 Regents of the University of Michigan.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms are permitted
11  * provided that this notice is preserved and that due credit is given
12  * to the University of Michigan at Ann Arbor. The name of the University
13  * may not be used to endorse or promote products derived from this
14  * software without specific prior written permission. This software
15  * is provided ``as is'' without express or implied warranty.
16  */
17
18 #include "portable.h"
19
20 #include <stdio.h>
21
22 #include <ac/socket.h>
23
24 #include "ldap_pvt.h"
25 #include "slap.h"
26
27 int
28 do_compare(
29     Connection  *conn,
30     Operation   *op
31 )
32 {
33         char    *dn = NULL, *ndn=NULL;
34         struct berval desc;
35         struct berval value;
36         Backend *be;
37         int rc = LDAP_SUCCESS;
38 #ifdef SLAPD_SCHEMA_NOT_COMPAT
39         char *text = NULL;
40         AttributeAssertion ava;
41
42         ava.aa_desc = NULL;
43 #else
44         Ava     ava;
45 #endif
46
47         desc.bv_val = NULL;
48         value.bv_val = NULL;
49
50         Debug( LDAP_DEBUG_TRACE, "do_compare\n", 0, 0, 0 );
51
52         /*
53          * Parse the compare request.  It looks like this:
54          *
55          *      CompareRequest := [APPLICATION 14] SEQUENCE {
56          *              entry   DistinguishedName,
57          *              ava     SEQUENCE {
58          *                      type    AttributeType,
59          *                      value   AttributeValue
60          *              }
61          *      }
62          */
63
64         if ( ber_scanf( op->o_ber, "{a" /*}*/, &dn ) == LBER_ERROR ) {
65                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
66                 send_ldap_disconnect( conn, op,
67                         LDAP_PROTOCOL_ERROR, "decoding error" );
68                 return SLAPD_DISCONNECT;
69         }
70
71         if ( ber_scanf( op->o_ber, "{oo}", &desc, &value ) == LBER_ERROR ) {
72                 Debug( LDAP_DEBUG_ANY, "do_compare: get ava failed\n", 0, 0, 0 );
73                 send_ldap_disconnect( conn, op,
74                         LDAP_PROTOCOL_ERROR, "decoding error" );
75                 rc = SLAPD_DISCONNECT;
76                 goto cleanup;
77         }
78
79         if ( ber_scanf( op->o_ber, /*{*/ "}" ) == LBER_ERROR ) {
80                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
81                 send_ldap_disconnect( conn, op,
82                         LDAP_PROTOCOL_ERROR, "decoding error" );
83                 rc = SLAPD_DISCONNECT;
84                 goto cleanup;
85         }
86
87         if( ( rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
88                 Debug( LDAP_DEBUG_ANY, "do_compare: get_ctrls failed\n", 0, 0, 0 );
89                 goto cleanup;
90         } 
91
92         ndn = ch_strdup( dn );
93
94         if( dn_normalize( ndn ) == NULL ) {
95                 Debug( LDAP_DEBUG_ANY, "do_compare: invalid dn (%s)\n", dn, 0, 0 );
96                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
97                     "invalid DN", NULL, NULL );
98                 goto cleanup;
99         }
100
101 #ifdef SLAPD_SCHEMA_NOT_COMPAT
102         rc = slap_bv2ad( &desc, &ava.aa_desc, &text );
103         if( rc != LDAP_SUCCESS ) {
104                 send_ldap_result( conn, op, rc, NULL,
105                     text, NULL, NULL );
106                 goto cleanup;
107         }
108         ava.aa_value = &value;
109
110         Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
111             dn, ava.aa_desc->ad_cname, ava.aa_value->bv_val );
112
113         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d CMP dn=\"%s\" attr=\"%s\"\n",
114             op->o_connid, op->o_opid, dn, ava.aa_desc->ad_cname, 0 );
115
116 #else
117         ava.ava_type = desc.bv_val;
118         ava.ava_value = value;
119         attr_normalize( ava.ava_type );
120         value_normalize( ava.ava_value.bv_val, attr_syntax( ava.ava_type ) );
121
122         Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
123             dn, ava.ava_type, ava.ava_value.bv_val );
124
125         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d CMP dn=\"%s\" attr=\"%s\"\n",
126             op->o_connid, op->o_opid, dn, ava.ava_type, 0 );
127 #endif
128
129
130         /*
131          * We could be serving multiple database backends.  Select the
132          * appropriate one, or send a referral to our "referral server"
133          * if we don't hold it.
134          */
135         if ( (be = select_backend( ndn )) == NULL ) {
136                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
137                         NULL, NULL, default_referral, NULL );
138                 rc = 1;
139                 goto cleanup;
140         }
141
142         /* make sure this backend recongizes critical controls */
143         rc = backend_check_controls( be, conn, op ) ;
144
145         if( rc != LDAP_SUCCESS ) {
146                 send_ldap_result( conn, op, rc,
147                         NULL, NULL, NULL, NULL );
148                 goto cleanup;
149         }
150
151         /* deref suffix alias if appropriate */
152         ndn = suffix_alias( be, ndn );
153
154         if ( be->be_compare ) {
155                 (*be->be_compare)( be, conn, op, dn, ndn, &ava );
156         } else {
157                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
158                         NULL, "Function not implemented", NULL, NULL );
159         }
160
161 cleanup:
162         free( dn );
163         free( ndn );
164         free( desc.bv_val );
165         free( value.bv_val );
166 #ifdef SLAPD_SCHEMA_NOT_COMPAT
167         if( ava.aa_desc != NULL ) {
168                 ad_free( ava.aa_desc, 1 );
169         }
170 #endif
171
172         return rc;
173 }