]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/group.c
Import ITS#2007 and ITS#2009 bug fixes from HEAD
[openldap] / servers / slapd / back-meta / group.c
1 /*
2  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
3  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
4  *
5  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
6  *
7  * This work has been developed to fulfill the requirements
8  * of SysNet s.n.c. <http:www.sys-net.it> and it has been donated
9  * to the OpenLDAP Foundation in the hope that it may be useful
10  * to the Open Source community, but WITHOUT ANY WARRANTY.
11  *
12  * Permission is granted to anyone to use this software for any purpose
13  * on any computer system, and to alter it and redistribute it, subject
14  * to the following restrictions:
15  *
16  * 1. The author and SysNet s.n.c. are not responsible for the consequences
17  *    of use of this software, no matter how awful, even if they arise from 
18  *    flaws in it.
19  *
20  * 2. The origin of this software must not be misrepresented, either by
21  *    explicit claim or by omission.  Since few users ever read sources,
22  *    credits should appear in the documentation.
23  *
24  * 3. Altered versions must be plainly marked as such, and must not be
25  *    misrepresented as being the original software.  Since few users
26  *    ever read sources, credits should appear in the documentation.
27  *    SysNet s.n.c. cannot be responsible for the consequences of the
28  *    alterations.
29  *
30  * 4. This notice may not be removed or altered.
31  *
32  *
33  * This software is based on the backend back-ldap, implemented
34  * by Howard Chu <hyc@highlandsun.com>, and modified by Mark Valence
35  * <kurash@sassafras.com>, Pierangelo Masarati <ando@sys-net.it> and other
36  * contributors. The contribution of the original software to the present
37  * implementation is acknowledged in this copyright statement.
38  *
39  * A special acknowledgement goes to Howard for the overall architecture
40  * (and for borrowing large pieces of code), and to Mark, who implemented
41  * from scratch the attribute/objectclass mapping.
42  *
43  * The original copyright statement follows.
44  *
45  * Copyright 1999, Howard Chu, All rights reserved. <hyc@highlandsun.com>
46  *
47  * Permission is granted to anyone to use this software for any purpose
48  * on any computer system, and to alter it and redistribute it, subject
49  * to the following restrictions:
50  *
51  * 1. The author is not responsible for the consequences of use of this
52  *    software, no matter how awful, even if they arise from flaws in it.
53  *
54  * 2. The origin of this software must not be misrepresented, either by
55  *    explicit claim or by omission.  Since few users ever read sources,
56  *    credits should appear in the documentation.
57  *
58  * 3. Altered versions must be plainly marked as such, and must not be
59  *    misrepresented as being the original software.  Since few users
60  *    ever read sources, credits should appear in the
61  *    documentation.
62  *
63  * 4. This notice may not be removed or altered.
64  *
65  */
66
67 #include "portable.h"
68
69 #include <stdio.h>
70
71 #include <ac/socket.h>
72 #include <ac/string.h>
73
74 #include "slap.h"
75 #include "../back-ldap/back-ldap.h"
76 #include "back-meta.h"
77
78 /* return 0 IFF op_dn is a value in group_at (member) attribute
79  * of entry with gr_dn AND that entry has an objectClass
80  * value of group_oc (groupOfNames)
81  */
82 int
83 meta_back_group(
84                 Backend                 *be,
85                 Connection              *conn,
86                 Operation               *op,
87                 Entry                   *target,
88                 struct berval           *gr_ndn,
89                 struct berval           *op_ndn,
90                 ObjectClass             *group_oc,
91                 AttributeDescription    *group_at
92 )
93 {
94         struct metainfo *li = ( struct metainfo * )be->be_private;    
95         int rc = 1, candidate;
96         Attribute   *attr;
97         AttributeDescription *ad_objectClass = slap_schema.si_ad_objectClass;
98         LDAPMessage     *result;
99         char *gattr[ 2 ];
100         char *filter = NULL, *ptr;
101         LDAP *ld = NULL;
102         struct berval mop_ndn = { 0, NULL }, mgr_ndn = { 0, NULL };
103
104         struct berval group_oc_name = { 0, NULL };
105         struct berval group_at_name = group_at->ad_cname;
106
107         if ( group_oc->soc_names && group_oc->soc_names[ 0 ] ) {
108                 group_oc_name.bv_val = group_oc->soc_names[ 0 ];
109         } else {
110                 group_oc_name.bv_val = group_oc->soc_oid;
111         }
112
113         if ( group_oc_name.bv_val ) {
114                 group_oc_name.bv_len = strlen( group_oc_name.bv_val );
115         }
116
117         if ( target != NULL && dn_match( &target->e_nname, gr_ndn ) ) {
118                 /* we already have a copy of the entry */
119                 /* attribute and objectclass mapping has already been done */
120
121                 /*
122                  * first we need to check if the objectClass attribute
123                  * has been retrieved; otherwise we need to repeat the search
124                  */
125                 attr = attr_find( target->e_attrs, ad_objectClass );
126                 if ( attr != NULL ) {
127
128                         /*
129                          * Now we can check for the group objectClass value
130                          */
131                         if ( !is_entry_objectclass( target, group_oc, 0 ) ) {
132                                 return 1;
133                         }
134
135                         /*
136                          * This part has been reworked: the group attr compare
137                          * fails only if the attribute is PRESENT but the value
138                          * is NOT PRESENT; if the attribute is NOT PRESENT, the
139                          * search must be repeated as well.
140                          * This may happen if a search for an entry has already
141                          * been performed (target is not null) but the group
142                          * attribute has not been required
143                          */
144                         attr = attr_find( target->e_attrs, group_at );
145                         if ( attr != NULL ) {
146                                 rc = value_find( group_at, attr->a_vals, 
147                                                 op_ndn );
148                                 if ( rc != LDAP_SUCCESS ) {
149                                         return 1;
150                                 }
151                                 return 0;
152                         } /* else: repeat the search */
153                 } /* else: repeat the search */
154         } /* else: do the search */
155
156         candidate = meta_back_select_unique_candidate( li, gr_ndn );
157         if ( candidate == -1 ) {
158                 goto cleanup;
159         }
160
161         /*
162          * Rewrite the op ndn if needed
163          */
164         switch ( rewrite_session( li->targets[ candidate ]->rwinfo, "bindDn",
165                                 op_ndn->bv_val, conn, &mop_ndn.bv_val ) ) {
166         case REWRITE_REGEXEC_OK:
167                 if ( mop_ndn.bv_val != NULL && mop_ndn.bv_val[ 0 ] != '\0' ) {
168                         mop_ndn.bv_len = strlen( mop_ndn.bv_val );
169                 } else {
170                         mop_ndn = *op_ndn;
171                 }
172 #ifdef NEW_LOGGING
173                 LDAP_LOG( BACK_META, DETAIL1,
174                         "[rw] bindDn (op ndn in group): \"%s\" -> \"%s\"\n",
175                         op_ndn->bv_val, mop_ndn.bv_val, 0 );
176 #else /* !NEW_LOGGING */
177                 Debug( LDAP_DEBUG_ARGS,
178                                 "rw> bindDn (op ndn in group):"
179                                 " \"%s\" -> \"%s\"\n%s",
180                                 op_ndn->bv_val, mop_ndn.bv_val, "" );
181 #endif /* !NEW_LOGGING */
182                 break;
183                 
184         case REWRITE_REGEXEC_UNWILLING:
185                 /* continues to next case */
186                 
187         case REWRITE_REGEXEC_ERR:
188                 return 1;
189         }
190
191         /*
192          * Rewrite the gr ndn if needed
193          */
194         switch ( rewrite_session( li->targets[ candidate ]->rwinfo,
195                                 "searchBase",
196                                 gr_ndn->bv_val, conn, &mgr_ndn.bv_val ) ) {
197         case REWRITE_REGEXEC_OK:
198                 if ( mgr_ndn.bv_val != NULL && mgr_ndn.bv_val[ 0 ] != '\0' ) {
199                         mgr_ndn.bv_len = strlen( mgr_ndn.bv_val );
200                 } else {
201                         mgr_ndn = *gr_ndn;
202                 }
203 #ifdef NEW_LOGGING
204                 LDAP_LOG( BACK_META, DETAIL1,
205                         "[rw] searchBase (gr ndn in group): \"%s\" -> \"%s\"\n",
206                         gr_ndn->bv_val, mgr_ndn.bv_val, 0 );
207 #else /* !NEW_LOGGING */
208                 Debug( LDAP_DEBUG_ARGS,
209                                 "rw> searchBase (gr ndn in group):"
210                                 " \"%s\" -> \"%s\"\n%s",
211                                 gr_ndn->bv_val, mgr_ndn.bv_val, "" );
212 #endif /* !NEW_LOGGING */
213                 break;
214                 
215         case REWRITE_REGEXEC_UNWILLING:
216                 /* continues to next case */
217                 
218         case REWRITE_REGEXEC_ERR:
219                 goto cleanup;
220         }
221         
222         ldap_back_map( &li->targets[ candidate ]->oc_map,
223                         &group_oc_name, &group_oc_name, 0 );
224         if ( group_oc_name.bv_val == NULL ) {
225                 goto cleanup;
226         }
227         ldap_back_map( &li->targets[ candidate ]->at_map,
228                         &group_at_name, &group_at_name, 0 );
229         if ( group_at_name.bv_val == NULL ) {
230                 goto cleanup;
231         }
232
233         filter = ch_malloc( sizeof( "(&(objectclass=)(=))" )
234                         + group_oc_name.bv_len
235                         + group_at_name.bv_len
236                         + mop_ndn.bv_len + 1 );
237         if ( filter == NULL ) {
238                 goto cleanup;
239         }
240
241         rc = ldap_initialize( &ld, li->targets[ candidate ]->uri );
242         if ( rc != LDAP_SUCCESS ) {
243                 goto cleanup;
244         }
245
246         rc = ldap_bind_s( ld, li->targets[ candidate ]->binddn.bv_val,
247                         li->targets[ candidate ]->bindpw.bv_val, 
248                         LDAP_AUTH_SIMPLE );
249         if ( rc != LDAP_SUCCESS ) {
250                 goto cleanup;
251         }
252
253         ptr = lutil_strcopy( filter, "(&(objectclass=" );
254         ptr = lutil_strcopy( ptr , group_oc_name.bv_val );
255         ptr = lutil_strcopy( ptr , ")(" );
256         ptr = lutil_strcopy( ptr , group_at_name.bv_val );
257         ptr = lutil_strcopy( ptr , "=" );
258         ptr = lutil_strcopy( ptr , mop_ndn.bv_val );
259         strcpy( ptr , "))" );
260
261         gattr[ 0 ] = "objectclass";
262         gattr[ 1 ] = NULL;
263         rc = 1;
264         if ( ldap_search_ext_s( ld, mgr_ndn.bv_val, LDAP_SCOPE_BASE, filter,
265                                 gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
266                                 LDAP_NO_LIMIT, &result ) == LDAP_SUCCESS ) {
267                 if ( ldap_first_entry( ld, result ) != NULL ) {
268                         rc = 0;
269                 }
270                 ldap_msgfree( result );
271         }
272
273 cleanup:;
274         if ( ld != NULL ) {
275                 ldap_unbind( ld );
276         }
277         if ( filter != NULL ) {
278                 ch_free( filter );
279         }
280         if ( mop_ndn.bv_val != op_ndn->bv_val ) {
281                 free( mop_ndn.bv_val );
282         }
283         if ( mgr_ndn.bv_val != gr_ndn->bv_val ) {
284                 free( mgr_ndn.bv_val );
285         }
286
287         return rc;
288 }
289