]> git.sur5r.net Git - openldap/blob - servers/slapd/entry.c
d58b4a70931b07a894b68c9b70bbcccda51eed8a
[openldap] / servers / slapd / entry.c
1 /* entry.c - routines for dealing with entries */
2 /*
3  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #include "portable.h"
8
9 #include <stdio.h>
10
11 #include <ac/ctype.h>
12 #include <ac/errno.h>
13 #include <ac/socket.h>
14 #include <ac/string.h>
15
16 #include "slap.h"
17
18 static unsigned char    *ebuf;  /* buf returned by entry2str             */
19 static unsigned char    *ecur;  /* pointer to end of currently used ebuf */
20 static int              emaxsize;/* max size of ebuf                     */
21
22 Entry *
23 str2entry( char *s )
24 {
25         int                     id = 0;
26         Entry           *e;
27         Attribute       **a;
28         char            *type;
29         char            *value;
30         char            *next;
31         ber_len_t       vlen;
32         int             nvals, maxvals;
33         struct berval   bval;
34         struct berval   *vals[2];
35         char            ptype[64];
36
37         /*
38          * In string format, an entry looks like this:
39          *
40          *      <id>\n
41          *      dn: <dn>\n
42          *      [<attr>:[:] <value>\n]
43          *      [<tab><continuedvalue>\n]*
44          *      ...
45          *
46          * If a double colon is used after a type, it means the
47          * following value is encoded as a base 64 string.  This
48          * happens if the value contains a non-printing character
49          * or newline.
50          */
51
52         Debug( LDAP_DEBUG_TRACE, "=> str2entry\n",
53                 s ? s : "NULL", 0, 0 );
54
55         /* check to see if there's an id included */
56         next = s;
57         if ( isdigit( (unsigned char) *s ) ) {
58                 id = atoi( s );
59                 if ( (s = ldif_getline( &next )) == NULL ) {
60                         Debug( LDAP_DEBUG_TRACE,
61                             "<= str2entry NULL (missing newline after id)\n",
62                             0, 0, 0 );
63                         return( NULL );
64                 }
65         }
66
67         /* initialize reader/writer lock */
68         e = (Entry *) ch_calloc( 1, sizeof(Entry) );
69
70         if( e == NULL ) {
71                 Debug( LDAP_DEBUG_TRACE,
72                     "<= str2entry NULL (entry allocation failed)\n",
73                     0, 0, 0 );
74                 return( NULL );
75         }
76
77         e->e_id = id;
78         e->e_private = NULL;
79
80         /* dn + attributes */
81         e->e_attrs = NULL;
82         vals[0] = &bval;
83         vals[1] = NULL;
84         ptype[0] = '\0';
85         while ( (s = ldif_getline( &next )) != NULL ) {
86                 if ( *s == '\n' || *s == '\0' ) {
87                         break;
88                 }
89
90                 if ( ldif_parse_line( s, &type, &value, &vlen ) != 0 ) {
91                         Debug( LDAP_DEBUG_TRACE,
92                             "<= str2entry NULL (parse_line)\n", 0, 0, 0 );
93                         continue;
94                 }
95
96                 if ( strcasecmp( type, ptype ) != 0 ) {
97                         strncpy( ptype, type, sizeof(ptype) - 1 );
98                         nvals = 0;
99                         maxvals = 0;
100                         a = NULL;
101                 }
102
103                 if ( strcasecmp( type, "dn" ) == 0 ) {
104                         if ( e->e_dn != NULL ) {
105                                 Debug( LDAP_DEBUG_ANY,
106  "str2entry: entry %ld has multiple dns \"%s\" and \"%s\" (second ignored)\n",
107                                     e->e_id, e->e_dn,
108                                         value != NULL ? value : NULL );
109                                 continue;
110                         }
111                         e->e_dn = ch_strdup( value != NULL ? value : "" );
112
113                         if ( e->e_ndn != NULL ) {
114                                 Debug( LDAP_DEBUG_ANY,
115  "str2entry: entry %ld already has a normalized dn \"%s\" for \"%s\" (first ignored)\n",
116                                     e->e_id, e->e_ndn,
117                                         value != NULL ? value : NULL );
118                                 free( e->e_ndn );
119                         }
120                         e->e_ndn = ch_strdup( e->e_dn );
121                         (void) dn_normalize_case( e->e_ndn );
122                         continue;
123                 }
124
125                 bval.bv_val = value;
126                 bval.bv_len = vlen;
127                 if ( attr_merge_fast( e, type, vals, nvals, 1, &maxvals, &a )
128                     != 0 ) {
129                         Debug( LDAP_DEBUG_TRACE,
130                             "<= str2entry NULL (attr_merge)\n", 0, 0, 0 );
131                         entry_free( e );
132                         return( NULL );
133                 }
134                 nvals++;
135         }
136
137         /* check to make sure there was a dn: line */
138         if ( e->e_dn == NULL ) {
139                 Debug( LDAP_DEBUG_ANY, "str2entry: entry %ld has no dn\n",
140                     e->e_id, 0, 0 );
141                 entry_free( e );
142                 return( NULL );
143         }
144
145         if ( e->e_ndn == NULL ) {
146                 Debug( LDAP_DEBUG_ANY,
147                         "str2entry: entry %ld (\"%s\") has no normalized dn\n",
148                     e->e_id, e->e_dn, 0 );
149                 entry_free( e );
150                 return( NULL );
151         }
152
153         Debug(LDAP_DEBUG_TRACE, "<= str2entry(%s) -> %ld (0x%lx)\n",
154                 e->e_dn, e->e_id, (unsigned long)e );
155
156         return( e );
157 }
158
159 #define GRABSIZE        BUFSIZ
160
161 #define MAKE_SPACE( n ) { \
162                 while ( ecur + (n) > ebuf + emaxsize ) { \
163                         int     offset; \
164                         offset = (int) (ecur - ebuf); \
165                         ebuf = (unsigned char *) ch_realloc( (char *) ebuf, \
166                             emaxsize + GRABSIZE ); \
167                         emaxsize += GRABSIZE; \
168                         ecur = ebuf + offset; \
169                 } \
170 }
171
172 char *
173 entry2str(
174     Entry       *e,
175     int         *len,
176     int         printid
177 )
178 {
179         Attribute       *a;
180         struct berval   *bv;
181         int             i, tmplen;
182
183         /*
184          * In string format, an entry looks like this:
185          *      <id>\n
186          *      dn: <dn>\n
187          *      [<attr>: <value>\n]*
188          */
189
190         ecur = ebuf;
191
192         if ( printid ) {
193                 /* id + newline */
194                 MAKE_SPACE( 10 );
195                 sprintf( (char *) ecur, "%ld\n", e->e_id );
196                 ecur = (unsigned char *) strchr( (char *) ecur, '\0' );
197         }
198
199         /* put the dn */
200         if ( e->e_dn != NULL ) {
201                 /* put "dn: <dn>" */
202                 tmplen = strlen( e->e_dn );
203                 MAKE_SPACE( LDIF_SIZE_NEEDED( 2, tmplen ));
204                 ldif_sput( (char **) &ecur, LDIF_PUT_VALUE, "dn", e->e_dn, tmplen );
205         }
206
207         /* put the attributes */
208         for ( a = e->e_attrs; a != NULL; a = a->a_next ) {
209                 /* put "<type>:[:] <value>" line for each value */
210                 for ( i = 0; a->a_vals[i] != NULL; i++ ) {
211                         bv = a->a_vals[i];
212                         tmplen = strlen( a->a_type );
213                         MAKE_SPACE( LDIF_SIZE_NEEDED( tmplen, bv->bv_len ));
214                         ldif_sput( (char **) &ecur, LDIF_PUT_VALUE, a->a_type,
215                             bv->bv_val, bv->bv_len );
216                 }
217         }
218         MAKE_SPACE( 1 );
219         *ecur = '\0';
220         *len = ecur - ebuf;
221
222         return( (char *) ebuf );
223 }
224
225 void
226 entry_free( Entry *e )
227 {
228         Attribute       *a, *next;
229
230         if ( e->e_dn != NULL ) {
231                 free( e->e_dn );
232                 e->e_dn = NULL;
233         }
234         if ( e->e_ndn != NULL ) {
235                 free( e->e_ndn );
236                 e->e_ndn = NULL;
237         }
238         for ( a = e->e_attrs; a != NULL; a = next ) {
239                 next = a->a_next;
240                 attr_free( a );
241         }
242         e->e_attrs = NULL;
243         e->e_private = NULL;
244         free( e );
245 }
246
247 /*
248  * These routines are used only by Backend.
249  *
250  * the Entry has three entry points (ways to find things):
251  *
252  *      by entry        e.g., if you already have an entry from the cache
253  *                      and want to delete it. (really by entry ptr)
254  *      by dn           e.g., when looking for the base object of a search
255  *      by id           e.g., for search candidates
256  *
257  * these correspond to three different avl trees that are maintained.
258  */
259
260 int
261 entry_cmp( Entry *e1, Entry *e2 )
262 {
263         return( e1 < e2 ? -1 : (e1 > e2 ? 1 : 0) );
264 }
265
266 int
267 entry_dn_cmp( Entry *e1, Entry *e2 )
268 {
269         /* compare their normalized UPPERCASED dn's */
270         return( strcmp( e1->e_ndn, e2->e_ndn ) );
271 }
272
273 int
274 entry_id_cmp( Entry *e1, Entry *e2 )
275 {
276         return( e1->e_id < e2->e_id ? -1 : (e1->e_id > e2->e_id ? 1 : 0) );
277 }
278