]> git.sur5r.net Git - openldap/blob - servers/slapd/back-meta/attribute.c
consistently use dn_match macro throughout slapd
[openldap] / servers / slapd / back-meta / attribute.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
79 /* return 0 IFF we can retrieve the attributes
80  * of entry with e_ndn
81  */
82
83 /*
84  * FIXME: I never testd this function; I know it compiles ... :)
85  */
86 int
87 meta_back_attribute(
88                 Backend                 *be,
89                 Connection              *conn,
90                 Operation               *op,
91                 Entry                   *target,
92                 struct berval           *ndn,
93                 AttributeDescription    *entry_at,
94                 BVarray                 *vals
95 )
96 {
97         struct metainfo *li = ( struct metainfo * )be->be_private;    
98         int rc = 1, i, j, count, is_oc, candidate;
99         Attribute *attr;
100         BVarray abv, v;
101         char **vs; 
102         struct berval   mapped;
103         LDAPMessage     *result, *e;
104         char *gattr[ 2 ];
105         LDAP *ld;
106
107         *vals = NULL;
108         if ( target != NULL && dn_match( &target->e_nname, ndn ) ) {
109                 /* we already have a copy of the entry */
110                 /* attribute and objectclass mapping has already been done */
111                 attr = attr_find( target->e_attrs, entry_at );
112                 if ( attr == NULL ) {
113                         return 1;
114                 }
115
116                 for ( count = 0; attr->a_vals[ count ].bv_val != NULL; count++ )
117                         ;
118                 v = ( BVarray )ch_calloc( ( count + 1 ), sizeof( struct berval ) );
119                 if ( v == NULL ) {
120                         return 1;
121                 }
122
123                 for ( j = 0, abv = attr->a_vals; --count >= 0; abv++ ) {
124                         if ( abv->bv_len > 0 ) {
125                                 ber_dupbv( &v[ j ], abv );
126                                 if ( v[ j ].bv_val == NULL ) {
127                                         break;
128                                 }
129                         }
130                 }
131                 v[ j ].bv_val = NULL;
132                 *vals = v;
133
134                 return 0;
135         } /* else */
136
137         candidate = meta_back_select_unique_candidate( li, ndn );
138         if ( candidate == -1 ) {
139                 return 1;
140         }
141
142         ldap_back_map( &li->targets[ candidate ]->at_map,
143                         &entry_at->ad_cname, &mapped, 0 );
144         if ( mapped.bv_val == NULL )
145                 return 1;
146
147         rc =  ldap_initialize( &ld, li->targets[ candidate ]->uri );
148         if ( rc != LDAP_SUCCESS ) {
149                 return 1;
150         }
151
152         rc = ldap_bind_s( ld, li->targets[ candidate ]->binddn.bv_val,
153                         li->targets[ candidate ]->bindpw.bv_val, LDAP_AUTH_SIMPLE );
154         if ( rc != LDAP_SUCCESS) {
155                 return 1;
156         }
157
158         gattr[ 0 ] = mapped.bv_val;
159         gattr[ 1 ] = NULL;
160         if ( ldap_search_ext_s( ld, ndn->bv_val, LDAP_SCOPE_BASE, 
161                                 "(objectClass=*)",
162                                 gattr, 0, NULL, NULL, LDAP_NO_LIMIT,
163                                 LDAP_NO_LIMIT, &result) == LDAP_SUCCESS) {
164                 if ( ( e = ldap_first_entry( ld, result ) ) != NULL ) {
165                         vs = ldap_get_values( ld, e, mapped.bv_val );
166                         if ( vs != NULL ) {
167                                 for ( count = 0; vs[ count ] != NULL;
168                                                 count++ ) { }
169                                 v = ( BVarray )ch_calloc( ( count + 1 ),
170                                                 sizeof( struct berval ) );
171                                 if ( v == NULL ) {
172                                         ldap_value_free( vs );
173                                 } else {
174                                         is_oc = ( strcasecmp( "objectclass", mapped.bv_val ) == 0 );
175                                         for ( i = 0, j = 0; i < count; i++ ) {
176                                                 ber_str2bv( vs[ i ], 0, 0, &v[ j ] );
177                                                 if ( !is_oc ) {
178                                                         if ( v[ j ].bv_val == NULL ) {
179                                                                 ch_free( vs[ i ] );
180                                                         } else {
181                                                                 j++;
182                                                         }
183                                                 } else {
184                                                         ldap_back_map( &li->targets[ candidate ]->oc_map, &v[ j ], &mapped, 1 );
185                                                         if ( mapped.bv_val ) {
186                                                                 ber_dupbv( &v[ j ], &mapped );
187                                                                 if ( v[ j ].bv_val ) {
188                                                                         j++;
189                                                                 }
190                                                         }
191                                                         ch_free( vs[ i ] );
192                                                 }
193                                         }
194                                         v[ j ].bv_val = NULL;
195                                         *vals = v;
196                                         rc = 0;
197                                         ch_free( vs );
198                                 }
199                         }
200                 }
201                 ldap_msgfree( result );
202         }
203         ldap_unbind( ld );
204
205         return(rc);
206 }
207