]> git.sur5r.net Git - openldap/blob - servers/slapd/compare.c
d72acef0324e1eddf18d382b1f5dc881335de521
[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         char *text = NULL;
39 #ifdef SLAPD_SCHEMA_NOT_COMPAT
40         AttributeAssertion ava;
41         ava.aa_desc = NULL;
42 #else
43         Ava     ava;
44 #endif
45
46         desc.bv_val = NULL;
47         value.bv_val = NULL;
48
49         Debug( LDAP_DEBUG_TRACE, "do_compare\n", 0, 0, 0 );
50
51         /*
52          * Parse the compare request.  It looks like this:
53          *
54          *      CompareRequest := [APPLICATION 14] SEQUENCE {
55          *              entry   DistinguishedName,
56          *              ava     SEQUENCE {
57          *                      type    AttributeType,
58          *                      value   AttributeValue
59          *              }
60          *      }
61          */
62
63         if ( ber_scanf( op->o_ber, "{a" /*}*/, &dn ) == LBER_ERROR ) {
64                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
65                 send_ldap_disconnect( conn, op,
66                         LDAP_PROTOCOL_ERROR, "decoding error" );
67                 return SLAPD_DISCONNECT;
68         }
69
70         if ( ber_scanf( op->o_ber, "{oo}", &desc, &value ) == LBER_ERROR ) {
71                 Debug( LDAP_DEBUG_ANY, "do_compare: get ava failed\n", 0, 0, 0 );
72                 send_ldap_disconnect( conn, op,
73                         LDAP_PROTOCOL_ERROR, "decoding error" );
74                 rc = SLAPD_DISCONNECT;
75                 goto cleanup;
76         }
77
78         if ( ber_scanf( op->o_ber, /*{*/ "}" ) == LBER_ERROR ) {
79                 Debug( LDAP_DEBUG_ANY, "ber_scanf failed\n", 0, 0, 0 );
80                 send_ldap_disconnect( conn, op,
81                         LDAP_PROTOCOL_ERROR, "decoding error" );
82                 rc = SLAPD_DISCONNECT;
83                 goto cleanup;
84         }
85
86         if( ( rc = get_ctrls( conn, op, 1 )) != LDAP_SUCCESS ) {
87                 Debug( LDAP_DEBUG_ANY, "do_compare: get_ctrls failed\n", 0, 0, 0 );
88                 goto cleanup;
89         } 
90
91         ndn = ch_strdup( dn );
92
93         if( dn_normalize( ndn ) == NULL ) {
94                 Debug( LDAP_DEBUG_ANY, "do_compare: invalid dn (%s)\n", dn, 0, 0 );
95                 send_ldap_result( conn, op, rc = LDAP_INVALID_DN_SYNTAX, NULL,
96                     "invalid DN", NULL, NULL );
97                 goto cleanup;
98         }
99
100 #ifdef SLAPD_SCHEMA_NOT_COMPAT
101         rc = slap_bv2ad( &desc, &ava.aa_desc, &text );
102         if( rc != LDAP_SUCCESS ) {
103                 send_ldap_result( conn, op, rc, NULL,
104                     text, NULL, NULL );
105                 goto cleanup;
106         }
107         ava.aa_value = &value;
108
109         Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
110             dn, ava.aa_desc->ad_cname, ava.aa_value->bv_val );
111
112         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d CMP dn=\"%s\" attr=\"%s\"\n",
113             op->o_connid, op->o_opid, dn, ava.aa_desc->ad_cname, 0 );
114
115 #else
116         ava.ava_type = desc.bv_val;
117         ava.ava_value = value;
118         attr_normalize( ava.ava_type );
119         value_normalize( ava.ava_value.bv_val, attr_syntax( ava.ava_type ) );
120
121         Debug( LDAP_DEBUG_ARGS, "do_compare: dn (%s) attr (%s) value (%s)\n",
122             dn, ava.ava_type, ava.ava_value.bv_val );
123
124         Statslog( LDAP_DEBUG_STATS, "conn=%ld op=%d CMP dn=\"%s\" attr=\"%s\"\n",
125             op->o_connid, op->o_opid, dn, ava.ava_type, 0 );
126 #endif
127
128
129         /*
130          * We could be serving multiple database backends.  Select the
131          * appropriate one, or send a referral to our "referral server"
132          * if we don't hold it.
133          */
134         if ( (be = select_backend( ndn )) == NULL ) {
135                 send_ldap_result( conn, op, rc = LDAP_REFERRAL,
136                         NULL, NULL, default_referral, NULL );
137                 rc = 1;
138                 goto cleanup;
139         }
140
141         /* make sure this backend recongizes critical controls */
142         rc = backend_check_controls( be, conn, op, &text ) ;
143
144         if( rc != LDAP_SUCCESS ) {
145                 send_ldap_result( conn, op, rc,
146                         NULL, text, NULL, NULL );
147                 goto cleanup;
148         }
149
150         /* deref suffix alias if appropriate */
151         ndn = suffix_alias( be, ndn );
152
153         if ( be->be_compare ) {
154                 (*be->be_compare)( be, conn, op, dn, ndn, &ava );
155         } else {
156                 send_ldap_result( conn, op, rc = LDAP_UNWILLING_TO_PERFORM,
157                         NULL, "compare function not implemented", NULL, NULL );
158         }
159
160 cleanup:
161         free( dn );
162         free( ndn );
163         free( desc.bv_val );
164         free( value.bv_val );
165 #ifdef SLAPD_SCHEMA_NOT_COMPAT
166         if( ava.aa_desc != NULL ) {
167                 ad_free( ava.aa_desc, 1 );
168         }
169 #endif
170
171         return rc;
172 }