]> git.sur5r.net Git - openldap/blob - libraries/libldap/compare.c
ce850217bcdc7a3374cf661ce6693b241856d8ce
[openldap] / libraries / libldap / compare.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1990 Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  compare.c
11  */
12
13 /* The compare request looks like this:
14  *      CompareRequest ::= SEQUENCE {
15  *              entry   DistinguishedName,
16  *              ava     SEQUENCE {
17  *                      type    AttributeType,
18  *                      value   AttributeValue
19  *              }
20  *      }
21  */
22
23 #include "portable.h"
24
25 #include <stdio.h>
26
27 #include <ac/socket.h>
28 #include <ac/string.h>
29 #include <ac/time.h>
30
31 #include "ldap-int.h"
32 #include "ldap_log.h"
33
34 /*
35  * ldap_compare_ext - perform an ldap extended compare operation.  The dn
36  * of the entry to compare to and the attribute and value to compare (in
37  * attr and value) are supplied.  The msgid of the response is returned.
38  *
39  * Example:
40  *      struct berval bvalue = { "secret", sizeof("secret")-1 };
41  *      rc = ldap_compare( ld, "c=us@cn=bob",
42  *              "userPassword", &bvalue,
43  *              sctrl, cctrl, &msgid )
44  */
45 int
46 ldap_compare_ext(
47         LDAP *ld,
48         LDAP_CONST char *dn,
49         LDAP_CONST char *attr,
50         struct berval *bvalue,
51         LDAPControl **sctrls,
52         LDAPControl **cctrls,
53         int     *msgidp )
54 {
55         int rc;
56         BerElement      *ber;
57
58 #ifdef NEW_LOGGING
59         LDAP_LOG ( OPERATION, ENTRY, "ldap_compare\n", 0, 0, 0 );
60 #else
61         Debug( LDAP_DEBUG_TRACE, "ldap_compare\n", 0, 0, 0 );
62 #endif
63
64         assert( ld != NULL );
65         assert( LDAP_VALID( ld ) );
66         assert( dn != NULL );
67         assert( attr != NULL );
68         assert( msgidp != NULL );
69
70         /* check client controls */
71         rc = ldap_int_client_controls( ld, cctrls );
72         if( rc != LDAP_SUCCESS ) return rc;
73
74         /* create a message to send */
75         if ( (ber = ldap_alloc_ber_with_options( ld )) == NULL ) {
76                 return( LDAP_NO_MEMORY );
77         }
78
79         if ( ber_printf( ber, "{it{s{sON}N}", /* '}' */
80                 ++ld->ld_msgid,
81                 LDAP_REQ_COMPARE, dn, attr, bvalue ) == -1 )
82         {
83                 ld->ld_errno = LDAP_ENCODING_ERROR;
84                 ber_free( ber, 1 );
85                 return( ld->ld_errno );
86         }
87
88         /* Put Server Controls */
89         if( ldap_int_put_controls( ld, sctrls, ber ) != LDAP_SUCCESS ) {
90                 ber_free( ber, 1 );
91                 return ld->ld_errno;
92         }
93
94         if( ber_printf( ber, /*{*/ "N}" ) == -1 ) {
95                 ld->ld_errno = LDAP_ENCODING_ERROR;
96                 ber_free( ber, 1 );
97                 return( ld->ld_errno );
98         }
99
100
101         /* send the message */
102         *msgidp = ldap_send_initial_request( ld, LDAP_REQ_COMPARE, dn, ber );
103         return ( *msgidp < 0 ? ld->ld_errno : LDAP_SUCCESS );
104 }
105
106 /*
107  * ldap_compare_ext - perform an ldap extended compare operation.  The dn
108  * of the entry to compare to and the attribute and value to compare (in
109  * attr and value) are supplied.  The msgid of the response is returned.
110  *
111  * Example:
112  *      msgid = ldap_compare( ld, "c=us@cn=bob", "userPassword", "secret" )
113  */
114 int
115 ldap_compare(
116         LDAP *ld,
117         LDAP_CONST char *dn,
118         LDAP_CONST char *attr,
119         LDAP_CONST char *value )
120 {
121         int msgid;
122         struct berval bvalue;
123
124         assert( value != NULL );
125
126         bvalue.bv_val = (char *) value;
127         bvalue.bv_len = (value == NULL) ? 0 : strlen( value );
128
129         return ldap_compare_ext( ld, dn, attr, &bvalue, NULL, NULL, &msgid ) == LDAP_SUCCESS
130                 ? msgid : -1;
131 }
132
133 int
134 ldap_compare_ext_s(
135         LDAP *ld,
136         LDAP_CONST char *dn,
137         LDAP_CONST char *attr,
138         struct berval *bvalue,
139         LDAPControl **sctrl,
140         LDAPControl **cctrl )
141 {
142         int             rc;
143         int             msgid;
144         LDAPMessage     *res;
145
146         rc = ldap_compare_ext( ld, dn, attr, bvalue, sctrl, cctrl, &msgid );
147
148         if (  rc != LDAP_SUCCESS )
149                 return( rc );
150
151         if ( ldap_result( ld, msgid, 1, (struct timeval *) NULL, &res ) == -1 )
152                 return( ld->ld_errno );
153
154         return( ldap_result2error( ld, res, 1 ) );
155 }
156
157 int
158 ldap_compare_s(
159         LDAP *ld,
160         LDAP_CONST char *dn,
161         LDAP_CONST char *attr,
162         LDAP_CONST char *value )
163 {
164         struct berval bvalue;
165
166         assert( value != NULL );
167
168         bvalue.bv_val = (char *) value;
169         bvalue.bv_len = (value == NULL) ? 0 : strlen( value );
170
171         return ldap_compare_ext_s( ld, dn, attr, &bvalue, NULL, NULL );
172 }