]> git.sur5r.net Git - openldap/blob - servers/slapd/slapi/slapi_utils.c
Silence "unused variable" warnings
[openldap] / servers / slapd / slapi / slapi_utils.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2002-2005 The OpenLDAP Foundation.
5  * Portions Copyright 1997,2002-2003 IBM Corporation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by IBM Corporation for use in
18  * IBM products and subsequently ported to OpenLDAP Software by
19  * Steve Omrani.  Additional significant contributors include:
20  *   Luke Howard
21  */
22
23 #include "portable.h"
24
25 #include <ac/string.h>
26 #include <ac/stdarg.h>
27 #include <ac/ctype.h>
28 #include <ac/unistd.h>
29
30 #include <slap.h>
31 #include <slapi.h>
32
33 #include <netdb.h>
34
35 /*
36  * server start time (should we use a struct timeval also in slapd?
37  */
38 static struct                   timeval base_time;
39 ldap_pvt_thread_mutex_t         slapi_hn_mutex;
40 ldap_pvt_thread_mutex_t         slapi_time_mutex;
41
42 struct slapi_mutex {
43         ldap_pvt_thread_mutex_t mutex;
44 };
45
46 struct slapi_condvar {
47         ldap_pvt_thread_cond_t cond;
48         ldap_pvt_thread_mutex_t mutex;
49 };
50
51 #ifdef LDAP_SLAPI
52 static int checkBVString(const struct berval *bv)
53 {
54         int i;
55
56         for ( i = 0; i < bv->bv_len; i++ ) {
57                 if ( bv->bv_val[i] == '\0' )
58                         return 0;
59         }
60         if ( bv->bv_val[i] != '\0' )
61                 return 0;
62
63         return 1;
64 }
65 #endif /* LDAP_SLAPI */
66
67 /*
68  * This function converts an array of pointers to berval objects to
69  * an array of berval objects.
70  */
71
72 int
73 bvptr2obj(
74         struct berval   **bvptr, 
75         BerVarray       *bvobj )
76 {
77         int             rc = LDAP_SUCCESS;
78         int             i;
79         BerVarray       tmpberval;
80
81         if ( bvptr == NULL || *bvptr == NULL ) {
82                 return LDAP_OTHER;
83         }
84
85         for ( i = 0; bvptr != NULL && bvptr[i] != NULL; i++ ) {
86                 ; /* EMPTY */
87         }
88
89         tmpberval = (BerVarray)slapi_ch_malloc( (i + 1)*sizeof(struct berval));
90         if ( tmpberval == NULL ) {
91                 return LDAP_NO_MEMORY;
92         } 
93
94         for ( i = 0; bvptr[i] != NULL; i++ ) {
95                 tmpberval[i].bv_val = bvptr[i]->bv_val;
96                 tmpberval[i].bv_len = bvptr[i]->bv_len;
97         }
98         tmpberval[i].bv_val = NULL;
99         tmpberval[i].bv_len = 0;
100
101         if ( rc == LDAP_SUCCESS ) {
102                 *bvobj = tmpberval;
103         }
104
105         return rc;
106 }
107
108 Slapi_Entry *
109 slapi_str2entry(
110         char            *s, 
111         int             flags )
112 {
113 #ifdef LDAP_SLAPI
114         Slapi_Entry     *e = NULL;
115         char            *pTmpS;
116
117         pTmpS = slapi_ch_strdup( s );
118         if ( pTmpS != NULL ) {
119                 e = str2entry( pTmpS ); 
120                 slapi_ch_free( (void **)&pTmpS );
121         }
122
123         return e;
124 #else
125         return NULL;
126 #endif /* LDAP_SLAPI */
127 }
128
129 char *
130 slapi_entry2str(
131         Slapi_Entry     *e, 
132         int             *len ) 
133 {
134 #ifdef LDAP_SLAPI
135         char            *ret;
136
137         ldap_pvt_thread_mutex_lock( &entry2str_mutex );
138         ret = entry2str( e, len );
139         ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
140
141         return ret;
142 #else /* LDAP_SLAPI */
143         return NULL;
144 #endif /* LDAP_SLAPI */
145 }
146
147 char *
148 slapi_entry_get_dn( Slapi_Entry *e ) 
149 {
150 #ifdef LDAP_SLAPI
151         return e->e_name.bv_val;
152 #else /* LDAP_SLAPI */
153         return NULL;
154 #endif /* LDAP_SLAPI */
155 }
156
157 int
158 slapi_x_entry_get_id( Slapi_Entry *e )
159 {
160 #ifdef LDAP_SLAPI
161         return e->e_id;
162 #else
163         return NOID;
164 #endif /* LDAP_SLAPI */
165 }
166
167 void 
168 slapi_entry_set_dn(
169         Slapi_Entry     *e, 
170         char            *ldn )
171 {
172 #ifdef LDAP_SLAPI
173         struct berval   dn = BER_BVNULL;
174
175         dn.bv_val = ldn;
176         dn.bv_len = strlen( ldn );
177
178         dnPrettyNormal( NULL, &dn, &e->e_name, &e->e_nname, NULL );
179 #endif /* LDAP_SLAPI */
180 }
181
182 Slapi_Entry *
183 slapi_entry_dup( Slapi_Entry *e ) 
184 {
185 #ifdef LDAP_SLAPI
186         return entry_dup( e );
187 #else /* LDAP_SLAPI */
188         return NULL;
189 #endif /* LDAP_SLAPI */
190 }
191
192 int 
193 slapi_entry_attr_delete(
194         Slapi_Entry     *e,             
195         char            *type ) 
196 {
197 #ifdef LDAP_SLAPI
198         AttributeDescription    *ad = NULL;
199         const char              *text;
200
201         if ( slap_str2ad( type, &ad, &text ) != LDAP_SUCCESS ) {
202                 return 1;       /* LDAP_NO_SUCH_ATTRIBUTE */
203         }
204
205         if ( attr_delete( &e->e_attrs, ad ) == LDAP_SUCCESS ) {
206                 return 0;       /* attribute is deleted */
207         } else {
208                 return -1;      /* something went wrong */
209         }
210 #else /* LDAP_SLAPI */
211         return -1;
212 #endif /* LDAP_SLAPI */
213 }
214
215 Slapi_Entry *
216 slapi_entry_alloc( void ) 
217 {
218 #ifdef LDAP_SLAPI
219         return (Slapi_Entry *)slapi_ch_calloc( 1, sizeof(Slapi_Entry) );
220 #else /* LDAP_SLAPI */
221         return NULL;
222 #endif /* LDAP_SLAPI */
223 }
224
225 void 
226 slapi_entry_free( Slapi_Entry *e ) 
227 {
228 #ifdef LDAP_SLAPI
229         entry_free( e );
230 #endif /* LDAP_SLAPI */
231 }
232
233 int 
234 slapi_entry_attr_merge(
235         Slapi_Entry     *e, 
236         char            *type, 
237         struct berval   **vals ) 
238 {
239 #ifdef LDAP_SLAPI
240         AttributeDescription    *ad = NULL;
241         const char              *text;
242         BerVarray               bv;
243         int                     rc;
244
245         rc = bvptr2obj( vals, &bv );
246         if ( rc != LDAP_SUCCESS ) {
247                 return -1;
248         }
249         
250         rc = slap_str2ad( type, &ad, &text );
251         if ( rc != LDAP_SUCCESS ) {
252                 return -1;
253         }
254         
255         rc = attr_merge_normalize_one( e, ad, bv, NULL );
256         ch_free( bv );
257
258         return rc;
259 #else /* LDAP_SLAPI */
260         return -1;
261 #endif /* LDAP_SLAPI */
262 }
263
264 int
265 slapi_entry_attr_find(
266         Slapi_Entry     *e, 
267         char            *type, 
268         Slapi_Attr      **attr ) 
269 {
270 #ifdef LDAP_SLAPI
271         AttributeDescription    *ad = NULL;
272         const char              *text;
273         int                     rc;
274
275         rc = slap_str2ad( type, &ad, &text );
276         if ( rc != LDAP_SUCCESS ) {
277                 return -1;
278         }
279
280         *attr = attr_find( e->e_attrs, ad );
281         if ( *attr == NULL ) {
282                 return -1;
283         }
284
285         return 0;
286 #else /* LDAP_SLAPI */
287         return -1;
288 #endif /* LDAP_SLAPI */
289 }
290
291 char *
292 slapi_entry_attr_get_charptr( const Slapi_Entry *e, const char *type )
293 {
294 #ifdef LDAP_SLAPI
295         AttributeDescription *ad = NULL;
296         const char *text;
297         int rc;
298         Attribute *attr;
299
300         rc = slap_str2ad( type, &ad, &text );
301         if ( rc != LDAP_SUCCESS ) {
302                 return NULL;
303         }
304
305         attr = attr_find( e->e_attrs, ad );
306         if ( attr == NULL ) {
307                 return NULL;
308         }
309
310         if ( attr->a_vals != NULL && attr->a_vals[0].bv_len != 0 ) {
311                 const char *p;
312
313                 p = slapi_value_get_string( &attr->a_vals[0] );
314                 if ( p != NULL ) {
315                         return slapi_ch_strdup( (char *)p );
316                 }
317         }
318
319         return NULL;
320 #else
321         return -1;
322 #endif
323 }
324
325 int
326 slapi_entry_attr_get_int( const Slapi_Entry *e, const char *type )
327 {
328 #ifdef LDAP_SLAPI
329         AttributeDescription *ad = NULL;
330         const char *text;
331         int rc;
332         Attribute *attr;
333
334         rc = slap_str2ad( type, &ad, &text );
335         if ( rc != LDAP_SUCCESS ) {
336                 return 0;
337         }
338
339         attr = attr_find( e->e_attrs, ad );
340         if ( attr == NULL ) {
341                 return 0;
342         }
343
344         return slapi_value_get_int( attr->a_vals );
345 #else
346         return 0;
347 #endif
348 }
349
350 long
351 slapi_entry_attr_get_long( const Slapi_Entry *e, const char *type )
352 {
353 #ifdef LDAP_SLAPI
354         AttributeDescription *ad = NULL;
355         const char *text;
356         int rc;
357         Attribute *attr;
358
359         rc = slap_str2ad( type, &ad, &text );
360         if ( rc != LDAP_SUCCESS ) {
361                 return 0;
362         }
363
364         attr = attr_find( e->e_attrs, ad );
365         if ( attr == NULL ) {
366                 return 0;
367         }
368
369         return slapi_value_get_long( attr->a_vals );
370 #else
371         return 0;
372 #endif
373 }
374
375 unsigned int
376 slapi_entry_attr_get_uint( const Slapi_Entry *e, const char *type )
377 {
378 #ifdef LDAP_SLAPI
379         AttributeDescription *ad = NULL;
380         const char *text;
381         int rc;
382         Attribute *attr;
383
384         rc = slap_str2ad( type, &ad, &text );
385         if ( rc != LDAP_SUCCESS ) {
386                 return 0;
387         }
388
389         attr = attr_find( e->e_attrs, ad );
390         if ( attr == NULL ) {
391                 return 0;
392         }
393
394         return slapi_value_get_uint( attr->a_vals );
395 #else
396         return 0;
397 #endif
398 }
399
400 unsigned long
401 slapi_entry_attr_get_ulong( const Slapi_Entry *e, const char *type )
402 {
403 #ifdef LDAP_SLAPI
404         AttributeDescription *ad = NULL;
405         const char *text;
406         int rc;
407         Attribute *attr;
408
409         rc = slap_str2ad( type, &ad, &text );
410         if ( rc != LDAP_SUCCESS ) {
411                 return 0;
412         }
413
414         attr = attr_find( e->e_attrs, ad );
415         if ( attr == NULL ) {
416                 return 0;
417         }
418
419         return slapi_value_get_ulong( attr->a_vals );
420 #else
421         return 0;
422 #endif
423 }
424
425 int
426 slapi_entry_attr_hasvalue( Slapi_Entry *e, const char *type, const char *value )
427 {
428 #ifdef LDAP_SLAPI
429         struct berval bv;
430         AttributeDescription *ad = NULL;
431         const char *text;
432         int rc;
433         Attribute *attr;
434         
435         rc = slap_str2ad( type, &ad, &text );
436         if ( rc != LDAP_SUCCESS ) {
437                 return 0;
438         }
439
440         attr = attr_find( e->e_attrs, ad );
441         if ( attr == NULL ) {
442                 return 0;
443         }
444
445         bv.bv_val = (char *)value;
446         bv.bv_len = strlen( value );
447
448         return ( slapi_attr_value_find( attr, &bv ) != -1 );
449 #else
450         return 0;
451 #endif
452 }
453
454 void
455 slapi_entry_attr_set_charptr(Slapi_Entry* e, const char *type, const char *value)
456 {
457 #ifdef LDAP_SLAPI
458         AttributeDescription    *ad = NULL;
459         const char              *text;
460         int                     rc;
461         struct berval           bv;
462         
463         rc = slap_str2ad( type, &ad, &text );
464         if ( rc != LDAP_SUCCESS ) {
465                 return;
466         }
467         
468         attr_delete ( &e->e_attrs, ad );
469         if ( value != NULL ) {
470                 bv.bv_val = (char *)value;
471                 bv.bv_len = strlen(value);
472                 attr_merge_normalize_one( e, ad, &bv, NULL );
473         }
474 #endif /* LDAP_SLAPI */
475 }
476
477 void
478 slapi_entry_attr_set_int( Slapi_Entry* e, const char *type, int l)
479 {
480 #ifdef LDAP_SLAPI
481         char buf[64];
482
483         snprintf( buf, sizeof( buf ), "%d", l );
484         slapi_entry_attr_set_charptr( e, type, buf );
485 #endif /* LDAP_SLAPI */
486 }
487
488 void
489 slapi_entry_attr_set_uint( Slapi_Entry* e, const char *type, unsigned int l)
490 {
491 #ifdef LDAP_SLAPI
492         char buf[64];
493
494         snprintf( buf, sizeof( buf ), "%u", l );
495         slapi_entry_attr_set_charptr( e, type, buf );
496 #endif /* LDAP_SLAPI */
497 }
498
499 void
500 slapi_entry_attr_set_long(Slapi_Entry* e, const char *type, long l)
501 {
502 #ifdef LDAP_SLAPI
503         char buf[64];
504
505         snprintf( buf, sizeof( buf ), "%ld", l );
506         slapi_entry_attr_set_charptr( e, type, buf );
507 #endif /* LDAP_SLAPI */
508 }
509
510 void
511 slapi_entry_attr_set_ulong(Slapi_Entry* e, const char *type, unsigned long l)
512 {
513 #ifdef LDAP_SLAPI
514         char buf[64];
515
516         snprintf( buf, sizeof( buf ), "%lu", l );
517         slapi_entry_attr_set_charptr( e, type, buf );
518 #endif /* LDAP_SLAPI */
519 }
520
521 int
522 slapi_is_rootdse( const char *dn )
523 {
524 #ifdef LDAP_SLAPI
525         return ( dn == NULL || dn[0] == '\0' );
526 #else
527         return 0;
528 #endif
529 }
530
531 int
532 slapi_entry_has_children(const Slapi_Entry *e)
533 {
534 #ifdef LDAP_SLAPI
535         Connection *pConn;
536         Operation *op;
537         int hasSubordinates = 0;
538
539         pConn = slapi_int_init_connection( NULL, LDAP_REQ_SEARCH );
540         if ( pConn == NULL ) {
541                 return 0;
542         }
543
544         op = (Operation *)pConn->c_pending_ops.stqh_first;
545         op->o_bd = select_backend( (struct berval *)&e->e_nname, 0, 0 );
546         if ( op->o_bd == NULL ) {
547                 return 0;
548         }
549
550         op->o_bd->be_has_subordinates( op, (Entry *)e, &hasSubordinates );
551
552         slapi_int_connection_destroy( &pConn );
553
554         return ( hasSubordinates == LDAP_COMPARE_TRUE );
555 #else
556         return 0;
557 #endif
558 }
559
560 /*
561  * Return approximate size of the entry rounded to the nearest
562  * 1K. Only the size of the attribute values are counted in the
563  * Sun implementation.
564  *
565  * http://docs.sun.com/source/816-6701-10/funcref.html#1017388
566  */
567 size_t slapi_entry_size(Slapi_Entry *e)
568 {
569 #ifdef LDAP_SLAPI
570         size_t size;
571         Attribute *a;
572         int i;
573
574         for ( size = 0, a = e->e_attrs; a != NULL; a = a->a_next ) {
575                 for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
576                         size += a->a_vals[i].bv_len + 1;
577                 }
578         }
579
580         size += 1023;
581         size -= (size % 1024);
582
583         return size;
584 #else
585         return 0;
586 #endif /* LDAP_SLAPI */
587 }
588
589 /*
590  * Add values to entry.
591  *
592  * Returns:
593  *      LDAP_SUCCESS                    Values added to entry
594  *      LDAP_TYPE_OR_VALUE_EXISTS       One or more values exist in entry already
595  *      LDAP_CONSTRAINT_VIOLATION       Any other error (odd, but it's the spec)
596  */
597 int
598 slapi_entry_add_values( Slapi_Entry *e, const char *type, struct berval **vals )
599 {
600 #ifdef LDAP_SLAPI
601         Modification            mod;
602         const char              *text;
603         int                     rc;
604         char                    textbuf[SLAP_TEXT_BUFLEN];
605
606         mod.sm_op = LDAP_MOD_ADD;
607         mod.sm_flags = 0;
608         mod.sm_desc = NULL;
609         mod.sm_type.bv_val = (char *)type;
610         mod.sm_type.bv_len = strlen( type );
611
612         rc = slap_str2ad( type, &mod.sm_desc, &text );
613         if ( rc != LDAP_SUCCESS ) {
614                 return rc;
615         }
616
617         if ( vals == NULL ) {
618                 /* Apparently vals can be NULL
619                  * FIXME: sm_values = NULL ? */
620                 mod.sm_values = (BerVarray)ch_malloc( sizeof(struct berval) );
621                 mod.sm_values->bv_val = NULL;
622
623         } else {
624                 rc = bvptr2obj( vals, &mod.sm_values );
625                 if ( rc != LDAP_SUCCESS ) {
626                         return LDAP_CONSTRAINT_VIOLATION;
627                 }
628         }
629         mod.sm_nvalues = NULL;
630
631         rc = modify_add_values( e, &mod, 0, &text, textbuf, sizeof(textbuf) );
632
633         ch_free( mod.sm_values );
634
635         return (rc == LDAP_SUCCESS) ? LDAP_SUCCESS : LDAP_CONSTRAINT_VIOLATION;
636 #else
637         return -1;
638 #endif /* LDAP_SLAPI */
639 }
640
641 int
642 slapi_entry_add_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
643 {
644 #ifdef LDAP_SLAPI
645         return slapi_entry_add_values( e, type, vals );
646 #else
647         return -1;
648 #endif /* LDAP_SLAPI */
649 }
650
651 int
652 slapi_entry_add_valueset(Slapi_Entry *e, const char *type, Slapi_ValueSet *vs)
653 {
654 #ifdef LDAP_SLAPI
655         AttributeDescription    *ad = NULL;
656         const char              *text;
657         int                     rc;
658         
659         rc = slap_str2ad( type, &ad, &text );
660         if ( rc != LDAP_SUCCESS ) {
661                 return -1;
662         }
663
664         return attr_merge_normalize( e, ad, *vs, NULL );
665 #else
666         return -1;
667 #endif /* LDAP_SLAPI */
668 }
669
670 int
671 slapi_entry_delete_values( Slapi_Entry *e, const char *type, struct berval **vals )
672 {
673 #ifdef LDAP_SLAPI
674         Modification            mod;
675         const char              *text;
676         int                     rc;
677         char                    textbuf[SLAP_TEXT_BUFLEN];
678
679         mod.sm_op = LDAP_MOD_DELETE;
680         mod.sm_flags = 0;
681         mod.sm_desc = NULL;
682         mod.sm_type.bv_val = (char *)type;
683         mod.sm_type.bv_len = strlen( type );
684
685         if ( vals == NULL ) {
686                 /* If vals is NULL, this is a NOOP. */
687                 return LDAP_SUCCESS;
688         }
689         
690         rc = slap_str2ad( type, &mod.sm_desc, &text );
691         if ( rc != LDAP_SUCCESS ) {
692                 return rc;
693         }
694
695         if ( vals[0] == NULL ) {
696                 /* SLAPI doco says LDAP_OPERATIONS_ERROR but LDAP_OTHER is better */
697                 return attr_delete( &e->e_attrs, mod.sm_desc ) ? LDAP_OTHER : LDAP_SUCCESS;
698         }
699
700         rc = bvptr2obj( vals, &mod.sm_values );
701         if ( rc != LDAP_SUCCESS ) {
702                 return LDAP_CONSTRAINT_VIOLATION;
703         }
704         mod.sm_nvalues = NULL;
705
706         rc = modify_delete_values( e, &mod, 0, &text, textbuf, sizeof(textbuf) );
707
708         ch_free( mod.sm_values );
709
710         return rc;
711 #else
712         return -1;
713 #endif /* LDAP_SLAPI */
714 }
715
716 int
717 slapi_entry_delete_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
718 {
719 #ifdef LDAP_SLAPI
720         return slapi_entry_delete_values( e, type, vals );
721 #else
722         return -1;
723 #endif /* LDAP_SLAPI */
724 }
725
726 int
727 slapi_entry_merge_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
728 {
729 #ifdef LDAP_SLAPI
730         return slapi_entry_attr_merge( e, (char *)type, vals );
731 #else
732         return -1;
733 #endif /* LDAP_SLAPI */
734 }
735
736 int
737 slapi_entry_add_value(Slapi_Entry *e, const char *type, const Slapi_Value *value)
738 {
739 #ifdef LDAP_SLAPI
740         AttributeDescription    *ad = NULL;
741         int                     rc;
742         const char              *text;
743
744         rc = slap_str2ad( type, &ad, &text );
745         if ( rc != LDAP_SUCCESS ) {
746                 return -1;
747         }
748
749         rc = attr_merge_normalize_one( e, ad, (Slapi_Value *)value, NULL );
750         if ( rc != LDAP_SUCCESS ) {
751                 return -1;
752         }
753
754         return 0;
755 #else
756         return -1;
757 #endif /* LDAP_SLAPI */
758 }
759
760 int
761 slapi_entry_add_string(Slapi_Entry *e, const char *type, const char *value)
762 {
763 #ifdef LDAP_SLAPI
764         Slapi_Value val;
765
766         val.bv_val = (char *)value;
767         val.bv_len = strlen( value );
768
769         return slapi_entry_add_value( e, type, &val );
770 #else
771         return -1;
772 #endif /* LDAP_SLAPI */
773 }
774
775 int
776 slapi_entry_delete_string(Slapi_Entry *e, const char *type, const char *value)
777 {
778 #ifdef LDAP_SLAPI
779         Slapi_Value *vals[2];
780         Slapi_Value val;
781
782         val.bv_val = (char *)value;
783         val.bv_len = strlen( value );
784         vals[0] = &val;
785         vals[1] = NULL;
786
787         return slapi_entry_delete_values_sv( e, type, vals );   
788 #else
789         return -1;
790 #endif /* LDAP_SLAPI */
791 }
792
793
794 int
795 slapi_entry_attr_merge_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
796 {
797 #ifdef LDAP_SLAPI
798         return slapi_entry_attr_merge( e, (char *)type, vals );
799 #else
800         return -1;
801 #endif
802 }
803
804 int
805 slapi_entry_first_attr( const Slapi_Entry *e, Slapi_Attr **attr )
806 {
807 #ifdef LDAP_SLAPI
808         if ( e == NULL ) {
809                 return -1;
810         }
811
812         *attr = e->e_attrs;
813
814         return ( *attr != NULL ) ? 0 : -1;
815 #else
816         return -1;
817 #endif
818 }
819
820 int
821 slapi_entry_next_attr( const Slapi_Entry *e, Slapi_Attr *prevattr, Slapi_Attr **attr )
822 {
823 #ifdef LDAP_SLAPI
824         if ( e == NULL ) {
825                 return -1;
826         }
827
828         if ( prevattr == NULL ) {
829                 return -1;
830         }
831
832         *attr = prevattr->a_next;
833
834         return ( *attr != NULL ) ? 0 : -1;
835 #else
836         return -1;
837 #endif
838 }
839
840 int
841 slapi_entry_attr_replace_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
842 {
843 #ifdef LDAP_SLAPI
844         AttributeDescription *ad = NULL;
845         const char *text;
846         int rc;
847         BerVarray bv;
848         
849         rc = slap_str2ad( type, &ad, &text );
850         if ( rc != LDAP_SUCCESS ) {
851                 return 0;
852         }
853
854         attr_delete( &e->e_attrs, ad );
855
856         rc = bvptr2obj( vals, &bv );
857         if ( rc != LDAP_SUCCESS ) {
858                 return -1;
859         }
860         
861         rc = attr_merge_normalize( e, ad, bv, NULL );
862         slapi_ch_free( (void **)&bv );
863         if ( rc != LDAP_SUCCESS ) {
864                 return -1;
865         }
866         
867         return 0;
868 #else
869         return -1;
870 #endif /* LDAP_SLAPI */
871 }
872
873 /* 
874  * FIXME -- The caller must free the allocated memory. 
875  * In Netscape they do not have to.
876  */
877 int 
878 slapi_attr_get_values(
879         Slapi_Attr      *attr, 
880         struct berval   ***vals ) 
881 {
882 #ifdef LDAP_SLAPI
883         int             i, j;
884         struct berval   **bv;
885
886         if ( attr == NULL ) {
887                 return 1;
888         }
889
890         for ( i = 0; attr->a_vals[i].bv_val != NULL; i++ ) {
891                 ; /* EMPTY */
892         }
893
894         bv = (struct berval **)ch_malloc( (i + 1) * sizeof(struct berval *) );
895         for ( j = 0; j < i; j++ ) {
896                 bv[j] = ber_dupbv( NULL, &attr->a_vals[j] );
897         }
898         bv[j] = NULL;
899         
900         *vals = (struct berval **)bv;
901
902         return 0;
903 #else /* LDAP_SLAPI */
904         return -1;
905 #endif /* LDAP_SLAPI */
906 }
907
908 char *
909 slapi_dn_normalize( char *dn ) 
910 {
911 #ifdef LDAP_SLAPI
912         struct berval   bdn;
913         struct berval   pdn;
914
915         assert( dn != NULL );
916         
917         bdn.bv_val = dn;
918         bdn.bv_len = strlen( dn );
919
920         if ( dnPretty( NULL, &bdn, &pdn, NULL ) != LDAP_SUCCESS ) {
921                 return NULL;
922         }
923
924         return pdn.bv_val;
925 #else /* LDAP_SLAPI */
926         return NULL;
927 #endif /* LDAP_SLAPI */
928 }
929
930 char *
931 slapi_dn_normalize_case( char *dn ) 
932 {
933 #ifdef LDAP_SLAPI
934         struct berval   bdn;
935         struct berval   ndn;
936
937         assert( dn != NULL );
938         
939         bdn.bv_val = dn;
940         bdn.bv_len = strlen( dn );
941
942         if ( dnNormalize( 0, NULL, NULL, &bdn, &ndn, NULL ) != LDAP_SUCCESS ) {
943                 return NULL;
944         }
945
946         return ndn.bv_val;
947 #else /* LDAP_SLAPI */
948         return NULL;
949 #endif /* LDAP_SLAPI */
950 }
951
952 int 
953 slapi_dn_issuffix(
954         char            *dn, 
955         char            *suffix )
956 {
957 #ifdef LDAP_SLAPI
958         struct berval   bdn, ndn;
959         struct berval   bsuffix, nsuffix;
960         int rc;
961
962         assert( dn != NULL );
963         assert( suffix != NULL );
964
965         bdn.bv_val = dn;
966         bdn.bv_len = strlen( dn );
967
968         bsuffix.bv_val = suffix;
969         bsuffix.bv_len = strlen( suffix );
970
971         if ( dnNormalize( 0, NULL, NULL, &bdn, &ndn, NULL ) != LDAP_SUCCESS ) {
972                 return 0;
973         }
974
975         if ( dnNormalize( 0, NULL, NULL, &bsuffix, &nsuffix, NULL )
976                 != LDAP_SUCCESS )
977         {
978                 slapi_ch_free( (void **)&ndn.bv_val );
979                 return 0;
980         }
981
982         rc = dnIsSuffix( &ndn, &nsuffix );
983
984         slapi_ch_free( (void **)&ndn.bv_val );
985         slapi_ch_free( (void **)&nsuffix.bv_val );
986
987         return rc;
988 #else /* LDAP_SLAPI */
989         return 0;
990 #endif /* LDAP_SLAPI */
991 }
992
993 int
994 slapi_dn_isparent(
995         const char      *parentdn,
996         const char      *childdn )
997 {
998 #ifdef LDAP_SLAPI
999         struct berval   assertedParentDN, normalizedAssertedParentDN;
1000         struct berval   childDN, normalizedChildDN;
1001         struct berval   normalizedParentDN;
1002         int             match;
1003
1004         assert( parentdn != NULL );
1005         assert( childdn != NULL );
1006
1007         assertedParentDN.bv_val = (char *)parentdn;
1008         assertedParentDN.bv_len = strlen( parentdn );
1009
1010         if ( dnNormalize( 0, NULL, NULL, &assertedParentDN,
1011                 &normalizedAssertedParentDN, NULL ) != LDAP_SUCCESS )
1012         {
1013                 return 0;
1014         }
1015
1016         childDN.bv_val = (char *)childdn;
1017         childDN.bv_len = strlen( childdn );
1018
1019         if ( dnNormalize( 0, NULL, NULL, &childDN,
1020                 &normalizedChildDN, NULL ) != LDAP_SUCCESS )
1021         {
1022                 slapi_ch_free( (void **)&normalizedAssertedParentDN.bv_val );
1023                 return 0;
1024         }
1025
1026         dnParent( &normalizedChildDN, &normalizedParentDN );
1027
1028         if ( dnMatch( &match, 0, slap_schema.si_syn_distinguishedName, NULL,
1029                 &normalizedParentDN, (void *)&normalizedAssertedParentDN ) != LDAP_SUCCESS )
1030         {
1031                 match = -1;
1032         }
1033
1034         slapi_ch_free( (void **)&normalizedAssertedParentDN.bv_val );
1035         slapi_ch_free( (void **)&normalizedChildDN.bv_val );
1036
1037         return ( match == 0 );
1038 #else
1039         return 0;
1040 #endif /* LDAP_SLAPI */
1041 }
1042
1043 /*
1044  * Returns DN of the parent entry, or NULL if the DN is
1045  * an empty string or NULL, or has no parent.
1046  */
1047 char *
1048 slapi_dn_parent( const char *_dn )
1049 {
1050 #ifdef LDAP_SLAPI
1051         struct berval   dn, prettyDN;
1052         struct berval   parentDN;
1053
1054         if ( _dn == NULL ) {
1055                 return NULL;
1056         }
1057
1058         dn.bv_val = (char *)_dn;
1059         dn.bv_len = strlen( _dn );
1060
1061         if ( dn.bv_len == 0 ) {
1062                 return NULL;
1063         }
1064
1065         if ( dnPretty( NULL, &dn, &prettyDN, NULL ) != LDAP_SUCCESS ) {
1066                 return NULL;
1067         }
1068
1069         dnParent( &prettyDN, &parentDN ); /* in-place */
1070
1071         slapi_ch_free( (void **)&prettyDN.bv_val );
1072
1073         if ( parentDN.bv_len == 0 ) {
1074                 return NULL;
1075         }
1076
1077         return slapi_ch_strdup( parentDN.bv_val );
1078 #else
1079         return NULL;
1080 #endif /* LDAP_SLAPI */
1081 }
1082
1083 /*
1084  * Returns DN of the parent entry; or NULL if the DN is
1085  * an empty string, if the DN has no parent, or if the
1086  * DN is the suffix of the backend database
1087  */
1088 char *slapi_dn_beparent( Slapi_PBlock *pb, const char *_dn )
1089 {
1090 #ifdef LDAP_SLAPI
1091         Backend         *be;
1092         struct berval   dn, prettyDN;
1093         struct berval   normalizedDN, parentDN;
1094
1095         if ( slapi_pblock_get( pb, SLAPI_BACKEND, (void **)&be ) != 0 )
1096                 be = NULL;
1097
1098         dn.bv_val = (char *)_dn;
1099         dn.bv_len = strlen( _dn );
1100
1101         if ( dnPrettyNormal( NULL, &dn, &prettyDN, &normalizedDN, NULL ) != LDAP_SUCCESS ) {
1102                 return NULL;
1103         }
1104
1105         if ( be != NULL && be_issuffix( be, &normalizedDN ) ) {
1106                 slapi_ch_free( (void **)&prettyDN.bv_val );
1107                 slapi_ch_free( (void **)&normalizedDN.bv_val );
1108                 return NULL;
1109         }
1110
1111         dnParent( &prettyDN, &parentDN );
1112
1113         slapi_ch_free( (void **)&prettyDN.bv_val );
1114         slapi_ch_free( (void **)&normalizedDN.bv_val );
1115
1116         if ( parentDN.bv_len == 0 ) {
1117                 return NULL;
1118         }
1119
1120         return slapi_ch_strdup( parentDN.bv_val );
1121 #else
1122         return NULL;
1123 #endif /* LDAP_SLAPI */
1124 }
1125
1126 char *
1127 slapi_dn_ignore_case( char *dn )
1128 {       
1129 #ifdef LDAP_SLAPI
1130         return slapi_dn_normalize_case( dn );
1131 #else /* LDAP_SLAPI */
1132         return NULL;
1133 #endif /* LDAP_SLAPI */
1134 }
1135
1136 char *
1137 slapi_ch_malloc( unsigned long size ) 
1138 {
1139 #ifdef LDAP_SLAPI
1140         return ch_malloc( size );       
1141 #else /* LDAP_SLAPI */
1142         return NULL;
1143 #endif /* LDAP_SLAPI */
1144 }
1145
1146 void 
1147 slapi_ch_free( void **ptr ) 
1148 {
1149 #ifdef LDAP_SLAPI
1150         ch_free( *ptr );
1151         *ptr = NULL;
1152 #endif /* LDAP_SLAPI */
1153 }
1154
1155 void 
1156 slapi_ch_free_string( char **ptr ) 
1157 {
1158 #ifdef LDAP_SLAPI
1159         slapi_ch_free( (void **)ptr );
1160 #endif /* LDAP_SLAPI */
1161 }
1162
1163 void
1164 slapi_ch_array_free( char **arrayp )
1165 {
1166 #ifdef LDAP_SLAPI
1167         char **p;
1168
1169         if ( arrayp != NULL ) {
1170                 for ( p = arrayp; *p != NULL; p++ ) {
1171                         slapi_ch_free( (void **)p );
1172                 }
1173                 slapi_ch_free( (void **)&arrayp );
1174         }
1175 #endif
1176 }
1177
1178 struct berval *
1179 slapi_ch_bvdup(const struct berval *v)
1180 {
1181 #ifdef LDAP_SLAPI
1182         struct berval *bv;
1183
1184         bv = (struct berval *) slapi_ch_malloc( sizeof(struct berval) );
1185         bv->bv_len = v->bv_len;
1186         bv->bv_val = slapi_ch_malloc( bv->bv_len );
1187         AC_MEMCPY( bv->bv_val, v->bv_val, bv->bv_len );
1188
1189         return bv;
1190 #else
1191         return NULL;
1192 #endif
1193 }
1194
1195 struct berval **
1196 slapi_ch_bvecdup(const struct berval **v)
1197 {
1198 #ifdef LDAP_SLAPI
1199         int i;
1200         struct berval **rv;
1201
1202         if ( v == NULL ) {
1203                 return NULL;
1204         }
1205
1206         for ( i = 0; v[i] != NULL; i++ )
1207                 ;
1208
1209         rv = (struct berval **) slapi_ch_malloc( (i + 1) * sizeof(struct berval *) );
1210
1211         for ( i = 0; v[i] != NULL; i++ ) {
1212                 rv[i] = slapi_ch_bvdup( v[i] );
1213         }
1214         rv[i] = NULL;
1215
1216         return rv;
1217 #else
1218         return NULL;
1219 #endif
1220 }
1221
1222 char *
1223 slapi_ch_calloc(
1224         unsigned long nelem, 
1225         unsigned long size ) 
1226 {
1227 #ifdef LDAP_SLAPI
1228         return ch_calloc( nelem, size );
1229 #else /* LDAP_SLAPI */
1230         return NULL;
1231 #endif /* LDAP_SLAPI */
1232 }
1233
1234 char *
1235 slapi_ch_realloc(
1236         char *block, 
1237         unsigned long size ) 
1238 {
1239 #ifdef LDAP_SLAPI
1240         return ch_realloc( block, size );
1241 #else /* LDAP_SLAPI */
1242         return NULL;
1243 #endif /* LDAP_SLAPI */
1244 }
1245
1246 char *
1247 slapi_ch_strdup( char *s ) 
1248 {
1249 #ifdef LDAP_SLAPI
1250         return ch_strdup( (const char *)s );
1251 #else /* LDAP_SLAPI */
1252         return NULL;
1253 #endif /* LDAP_SLAPI */
1254 }
1255
1256 size_t
1257 slapi_ch_stlen( char *s ) 
1258 {
1259 #ifdef LDAP_SLAPI
1260         return strlen( (const char *)s );
1261 #else /* LDAP_SLAPI */
1262         return 0;
1263 #endif /* LDAP_SLAPI */
1264 }
1265
1266 int 
1267 slapi_control_present(
1268         LDAPControl     **controls, 
1269         char            *oid, 
1270         struct berval   **val, 
1271         int             *iscritical ) 
1272 {
1273 #ifdef LDAP_SLAPI
1274         int             i;
1275         int             rc = 0;
1276
1277         if ( val ) {
1278                 *val = NULL;
1279         }
1280         
1281         if ( iscritical ) {
1282                 *iscritical = 0;
1283         }
1284         
1285         for ( i = 0; controls != NULL && controls[i] != NULL; i++ ) {
1286                 if ( strcmp( controls[i]->ldctl_oid, oid ) != 0 ) {
1287                         continue;
1288                 }
1289
1290                 rc = 1;
1291                 if ( controls[i]->ldctl_value.bv_len != 0 ) {
1292                         /*
1293                          * FIXME: according to 6.1 specification,
1294                          *    "The val output parameter is set
1295                          *    to point into the controls array.
1296                          *    A copy of the control value is
1297                          *    not made."
1298                          */
1299 #if 0
1300                         struct berval   *pTmpBval;
1301
1302                         pTmpBval = (struct berval *)slapi_ch_malloc( sizeof(struct berval));
1303                         if ( pTmpBval == NULL ) {
1304                                 rc = 0;
1305                         } else {
1306                                 pTmpBval->bv_len = controls[i]->ldctl_value.bv_len;
1307                                 pTmpBval->bv_val = controls[i]->ldctl_value.bv_val;
1308                                 if ( val ) {
1309                                         *val = pTmpBval;
1310                                 } else {
1311                                         slapi_ch_free( (void **)&pTmpBval );
1312                                         rc = 0;
1313                                 }
1314                         }
1315 #endif /* 0 */
1316                         if ( val ) {
1317                                 *val = &controls[i]->ldctl_value;
1318                         }
1319                 }
1320
1321                 if ( iscritical ) {
1322                         *iscritical = controls[i]->ldctl_iscritical;
1323                 }
1324
1325                 break;
1326         }
1327
1328         return rc;
1329 #else /* LDAP_SLAPI */
1330         return 0;
1331 #endif /* LDAP_SLAPI */
1332 }
1333
1334 #ifdef LDAP_SLAPI
1335 static void
1336 slapControlMask2SlapiControlOp(slap_mask_t slap_mask,
1337         unsigned long *slapi_mask)
1338 {
1339         *slapi_mask = SLAPI_OPERATION_NONE;
1340
1341         if ( slap_mask & SLAP_CTRL_ABANDON ) 
1342                 *slapi_mask |= SLAPI_OPERATION_ABANDON;
1343
1344         if ( slap_mask & SLAP_CTRL_ADD )
1345                 *slapi_mask |= SLAPI_OPERATION_ADD;
1346
1347         if ( slap_mask & SLAP_CTRL_BIND )
1348                 *slapi_mask |= SLAPI_OPERATION_BIND;
1349
1350         if ( slap_mask & SLAP_CTRL_COMPARE )
1351                 *slapi_mask |= SLAPI_OPERATION_COMPARE;
1352
1353         if ( slap_mask & SLAP_CTRL_DELETE )
1354                 *slapi_mask |= SLAPI_OPERATION_DELETE;
1355
1356         if ( slap_mask & SLAP_CTRL_MODIFY )
1357                 *slapi_mask |= SLAPI_OPERATION_MODIFY;
1358
1359         if ( slap_mask & SLAP_CTRL_RENAME )
1360                 *slapi_mask |= SLAPI_OPERATION_MODDN;
1361
1362         if ( slap_mask & SLAP_CTRL_SEARCH )
1363                 *slapi_mask |= SLAPI_OPERATION_SEARCH;
1364
1365         if ( slap_mask & SLAP_CTRL_UNBIND )
1366                 *slapi_mask |= SLAPI_OPERATION_UNBIND;
1367 }
1368
1369 static void
1370 slapiControlOp2SlapControlMask(unsigned long slapi_mask,
1371         slap_mask_t *slap_mask)
1372 {
1373         *slap_mask = 0;
1374
1375         if ( slapi_mask & SLAPI_OPERATION_BIND )
1376                 *slap_mask |= SLAP_CTRL_BIND;
1377
1378         if ( slapi_mask & SLAPI_OPERATION_UNBIND )
1379                 *slap_mask |= SLAP_CTRL_UNBIND;
1380
1381         if ( slapi_mask & SLAPI_OPERATION_SEARCH )
1382                 *slap_mask |= SLAP_CTRL_SEARCH;
1383
1384         if ( slapi_mask & SLAPI_OPERATION_MODIFY )
1385                 *slap_mask |= SLAP_CTRL_MODIFY;
1386
1387         if ( slapi_mask & SLAPI_OPERATION_ADD )
1388                 *slap_mask |= SLAP_CTRL_ADD;
1389
1390         if ( slapi_mask & SLAPI_OPERATION_DELETE )
1391                 *slap_mask |= SLAP_CTRL_DELETE;
1392
1393         if ( slapi_mask & SLAPI_OPERATION_MODDN )
1394                 *slap_mask |= SLAP_CTRL_RENAME;
1395
1396         if ( slapi_mask & SLAPI_OPERATION_COMPARE )
1397                 *slap_mask |= SLAP_CTRL_COMPARE;
1398
1399         if ( slapi_mask & SLAPI_OPERATION_ABANDON )
1400                 *slap_mask |= SLAP_CTRL_ABANDON;
1401
1402         *slap_mask |= SLAP_CTRL_GLOBAL;
1403 }
1404
1405 static int
1406 slapi_int_parse_control(
1407         Operation *op,
1408         SlapReply *rs,
1409         LDAPControl *ctrl )
1410 {
1411         /* Plugins must deal with controls themselves. */
1412
1413         return LDAP_SUCCESS;
1414 }
1415 #endif /* LDAP_SLAPI */
1416
1417 void 
1418 slapi_register_supported_control(
1419         char            *controloid, 
1420         unsigned long   controlops )
1421 {
1422 #ifdef LDAP_SLAPI
1423         slap_mask_t controlmask;
1424
1425         slapiControlOp2SlapControlMask( controlops, &controlmask );
1426
1427         register_supported_control( controloid, controlmask, NULL, slapi_int_parse_control, NULL );
1428 #endif /* LDAP_SLAPI */
1429 }
1430
1431 int 
1432 slapi_get_supported_controls(
1433         char            ***ctrloidsp, 
1434         unsigned long   **ctrlopsp ) 
1435 {
1436 #ifdef LDAP_SLAPI
1437         int i, rc;
1438
1439         rc = get_supported_controls( ctrloidsp, (slap_mask_t **)ctrlopsp );
1440         if ( rc != LDAP_SUCCESS ) {
1441                 return rc;
1442         }
1443
1444         for ( i = 0; (*ctrloidsp)[i] != NULL; i++ ) {
1445                 /* In place, naughty. */
1446                 slapControlMask2SlapiControlOp( (*ctrlopsp)[i], &((*ctrlopsp)[i]) );
1447         }
1448
1449         return LDAP_SUCCESS;
1450 #else /* LDAP_SLAPI */
1451         return 1;
1452 #endif /* LDAP_SLAPI */
1453 }
1454
1455 LDAPControl *
1456 slapi_dup_control( LDAPControl *ctrl )
1457 {
1458 #ifdef LDAP_SLAPI
1459         LDAPControl *ret;
1460
1461         ret = (LDAPControl *)slapi_ch_malloc( sizeof(*ret) );
1462         ret->ldctl_oid = slapi_ch_strdup( ctrl->ldctl_oid );
1463         ber_dupbv( &ret->ldctl_value, &ctrl->ldctl_value );
1464         ret->ldctl_iscritical = ctrl->ldctl_iscritical;
1465
1466         return ret;
1467 #else
1468         return NULL;
1469 #endif /* LDAP_SLAPI */
1470 }
1471
1472 void 
1473 slapi_register_supported_saslmechanism( char *mechanism )
1474 {
1475 #ifdef LDAP_SLAPI
1476         /* FIXME -- can not add saslmechanism to OpenLDAP dynamically */
1477         slapi_log_error( SLAPI_LOG_FATAL, "slapi_register_supported_saslmechanism",
1478                         "OpenLDAP does not support dynamic registration of SASL mechanisms\n" );
1479 #endif /* LDAP_SLAPI */
1480 }
1481
1482 char **
1483 slapi_get_supported_saslmechanisms( void )
1484 {
1485 #ifdef LDAP_SLAPI
1486         /* FIXME -- can not get the saslmechanism without a connection. */
1487         slapi_log_error( SLAPI_LOG_FATAL, "slapi_get_supported_saslmechanisms",
1488                         "can not get the SASL mechanism list "
1489                         "without a connection\n" );
1490         return NULL;
1491 #else /* LDAP_SLAPI */
1492         return NULL;
1493 #endif /* LDAP_SLAPI */
1494 }
1495
1496 char **
1497 slapi_get_supported_extended_ops( void )
1498 {
1499 #ifdef LDAP_SLAPI
1500         int             i, j, k;
1501         char            **ppExtOpOID = NULL;
1502         int             numExtOps = 0;
1503
1504         for ( i = 0; get_supported_extop( i ) != NULL; i++ ) {
1505                 ;
1506         }
1507         
1508         for ( j = 0; slapi_int_get_supported_extop( j ) != NULL; j++ ) {
1509                 ;
1510         }
1511
1512         numExtOps = i + j;
1513         if ( numExtOps == 0 ) {
1514                 return NULL;
1515         }
1516
1517         ppExtOpOID = (char **)slapi_ch_malloc( (numExtOps + 1) * sizeof(char *) );
1518         for ( k = 0; k < i; k++ ) {
1519                 struct berval   *bv;
1520
1521                 bv = get_supported_extop( k );
1522                 assert( bv != NULL );
1523
1524                 ppExtOpOID[ k ] = bv->bv_val;
1525         }
1526         
1527         for ( ; k < j; k++ ) {
1528                 struct berval   *bv;
1529
1530                 bv = slapi_int_get_supported_extop( k );
1531                 assert( bv != NULL );
1532
1533                 ppExtOpOID[ i + k ] = bv->bv_val;
1534         }
1535         ppExtOpOID[ i + k ] = NULL;
1536
1537         return ppExtOpOID;
1538 #else /* LDAP_SLAPI */
1539         return NULL;
1540 #endif /* LDAP_SLAPI */
1541 }
1542
1543 void 
1544 slapi_send_ldap_result(
1545         Slapi_PBlock    *pb, 
1546         int             err, 
1547         char            *matched, 
1548         char            *text, 
1549         int             nentries, 
1550         struct berval   **urls ) 
1551 {
1552 #ifdef LDAP_SLAPI
1553         Operation       *op;
1554         char            *extOID = NULL;
1555         SlapReply       rs = { REP_RESULT };
1556
1557         slapi_pblock_get( pb, SLAPI_OPERATION, &op );
1558
1559         rs.sr_err = err;
1560         rs.sr_matched = matched;
1561         rs.sr_text = text;
1562         rs.sr_ref = NULL;
1563         rs.sr_ctrls = NULL;
1564
1565         slapi_pblock_get( pb, SLAPI_RESCONTROLS, &rs.sr_ctrls );
1566
1567         if ( err == LDAP_SASL_BIND_IN_PROGRESS ) {
1568                 slapi_pblock_get( pb, SLAPI_BIND_RET_SASLCREDS, (void *) &rs.sr_sasldata );
1569                 send_ldap_sasl( op, &rs );
1570                 return;
1571         }
1572
1573         slapi_pblock_get( pb, SLAPI_EXT_OP_RET_OID, &extOID );
1574         if ( extOID != NULL ) {
1575                 rs.sr_rspoid = extOID;
1576                 slapi_pblock_get( pb, SLAPI_EXT_OP_RET_VALUE, &rs.sr_rspdata );
1577                 send_ldap_extended( op, &rs );
1578                 return;
1579         }
1580
1581         if (op->o_tag == LDAP_REQ_SEARCH)
1582                 rs.sr_nentries = nentries;
1583
1584         send_ldap_result( op, &rs );
1585 #endif /* LDAP_SLAPI */
1586 }
1587
1588 int 
1589 slapi_send_ldap_search_entry(
1590         Slapi_PBlock    *pb, 
1591         Slapi_Entry     *e, 
1592         LDAPControl     **ectrls, 
1593         char            **attrs, 
1594         int             attrsonly )
1595 {
1596 #ifdef LDAP_SLAPI
1597         Operation       *pOp;
1598         SlapReply       rs = { REP_RESULT };
1599         int             i;
1600         AttributeName   *an = NULL;
1601         const char      *text;
1602
1603         if ( attrs != NULL ) {
1604                 for ( i = 0; attrs[ i ] != NULL; i++ ) {
1605                         ; /* empty */
1606                 }
1607         } else {
1608                 i = 0;
1609         }
1610
1611         if ( i > 0 ) {
1612                 an = (AttributeName *) ch_malloc( (i+1) * sizeof(AttributeName) );
1613                 for ( i = 0; attrs[i] != NULL; i++ ) {
1614                         an[i].an_name.bv_val = ch_strdup( attrs[i] );
1615                         an[i].an_name.bv_len = strlen( attrs[i] );
1616                         an[i].an_desc = NULL;
1617                         if( slap_bv2ad( &an[i].an_name, &an[i].an_desc, &text ) != LDAP_SUCCESS)
1618                                 return -1;
1619                 }
1620                 an[i].an_name.bv_len = 0;
1621                 an[i].an_name.bv_val = NULL;
1622         }
1623
1624         rs.sr_err = LDAP_SUCCESS;
1625         rs.sr_matched = NULL;
1626         rs.sr_text = NULL;
1627         rs.sr_ref = NULL;
1628         rs.sr_ctrls = ectrls;
1629         rs.sr_attrs = an;
1630         rs.sr_operational_attrs = NULL;
1631         rs.sr_entry = e;
1632         rs.sr_v2ref = NULL;
1633         rs.sr_flags = 0;
1634
1635         if ( slapi_pblock_get( pb, SLAPI_OPERATION, (void *)&pOp ) != 0 ) {
1636                 return LDAP_OTHER;
1637         }
1638
1639         return send_search_entry( pOp, &rs );
1640 #else /* LDAP_SLAPI */
1641         return -1;
1642 #endif /* LDAP_SLAPI */
1643 }
1644
1645 int 
1646 slapi_send_ldap_search_reference(
1647         Slapi_PBlock    *pb,
1648         Slapi_Entry     *e,
1649         struct berval   **references,
1650         LDAPControl     **ectrls, 
1651         struct berval   **v2refs
1652         )
1653 {
1654 #ifdef LDAP_SLAPI
1655         Operation       *pOp;
1656         SlapReply       rs = { REP_SEARCHREF };
1657         int             rc;
1658
1659         rs.sr_err = LDAP_SUCCESS;
1660         rs.sr_matched = NULL;
1661         rs.sr_text = NULL;
1662
1663         rc = bvptr2obj( references, &rs.sr_ref );
1664         if ( rc != LDAP_SUCCESS ) {
1665                 return rc;
1666         }
1667
1668         rs.sr_ctrls = ectrls;
1669         rs.sr_attrs = NULL;
1670         rs.sr_operational_attrs = NULL;
1671         rs.sr_entry = e;
1672
1673         if ( v2refs != NULL ) {
1674                 rc = bvptr2obj( v2refs, &rs.sr_v2ref );
1675                 if ( rc != LDAP_SUCCESS ) {
1676                         slapi_ch_free( (void **)&rs.sr_ref );
1677                         return rc;
1678                 }
1679         } else {
1680                 rs.sr_v2ref = NULL;
1681         }
1682
1683         if ( slapi_pblock_get( pb, SLAPI_OPERATION, (void *)&pOp ) != 0 ) {
1684                 return LDAP_OTHER;
1685         }
1686
1687         rc = send_search_reference( pOp, &rs );
1688
1689         if ( rs.sr_ref != NULL )
1690                 slapi_ch_free( (void **)&rs.sr_ref );
1691
1692         if ( rs.sr_v2ref != NULL )
1693                 slapi_ch_free( (void **)&rs.sr_v2ref );
1694
1695         return rc;
1696 #else
1697         return -1;
1698 #endif /* LDAP_SLAPI */
1699 }
1700
1701 Slapi_Filter *
1702 slapi_str2filter( char *str ) 
1703 {
1704 #ifdef LDAP_SLAPI
1705         return str2filter( str );
1706 #else /* LDAP_SLAPI */
1707         return NULL;
1708 #endif /* LDAP_SLAPI */
1709 }
1710
1711 void 
1712 slapi_filter_free(
1713         Slapi_Filter    *f, 
1714         int             recurse ) 
1715 {
1716 #ifdef LDAP_SLAPI
1717         filter_free( f );
1718 #endif /* LDAP_SLAPI */
1719 }
1720
1721 Slapi_Filter *
1722 slapi_filter_dup( Slapi_Filter *filter )
1723 {
1724 #ifdef LDAP_SLAPI
1725         Filter *f;
1726
1727         f = (Filter *) slapi_ch_malloc( sizeof(Filter) );
1728         f->f_next = NULL;
1729         f->f_choice = filter->f_choice;
1730
1731         switch ( f->f_choice ) {
1732         case LDAP_FILTER_AND:
1733         case LDAP_FILTER_NOT:
1734         case LDAP_FILTER_OR: {
1735                 Filter *pFilter, **ppF;
1736
1737                 for ( pFilter = filter->f_list, ppF = &f->f_list;
1738                       pFilter != NULL;
1739                       pFilter = pFilter->f_next, ppF = &f->f_next )
1740                 {
1741                         *ppF = slapi_filter_dup( pFilter );
1742                         if ( *ppF == NULL )
1743                                 break;
1744                 }
1745                 break;
1746         }
1747         case LDAP_FILTER_PRESENT:
1748                 f->f_desc = filter->f_desc;
1749                 break;
1750         case LDAP_FILTER_EQUALITY:
1751         case LDAP_FILTER_GE:
1752         case LDAP_FILTER_LE:
1753         case LDAP_FILTER_APPROX:
1754                 f->f_ava = (AttributeAssertion *)slapi_ch_malloc( sizeof(AttributeAssertion) );
1755                 f->f_ava->aa_desc = filter->f_ava->aa_desc;
1756                 ber_dupbv( &f->f_ava->aa_value, &filter->f_ava->aa_value );
1757                 break;
1758         case LDAP_FILTER_EXT:
1759                 f->f_mra = (MatchingRuleAssertion *)slapi_ch_malloc( sizeof(MatchingRuleAssertion) );
1760                 f->f_mra->ma_rule = filter->f_mra->ma_rule;
1761                 f->f_mra->ma_rule_text = filter->f_mra->ma_rule_text; /* struct copy */
1762                 f->f_mra->ma_desc = filter->f_mra->ma_desc;
1763                 f->f_mra->ma_dnattrs = filter->f_mra->ma_dnattrs;
1764                 ber_dupbv( &f->f_mra->ma_value, &filter->f_mra->ma_value );
1765                 break;
1766         case LDAP_FILTER_SUBSTRINGS: {
1767                 int i;
1768
1769                 f->f_sub = (SubstringsAssertion *)slapi_ch_malloc( sizeof(SubstringsAssertion) );
1770                 f->f_sub->sa_desc = filter->f_sub->sa_desc;
1771                 ber_dupbv( &f->f_sub_initial, &filter->f_sub_initial );
1772                 if ( filter->f_sub_any != NULL ) {
1773                         for ( i = 0; filter->f_sub_any[i].bv_val != NULL; i++ )
1774                                 ;
1775                         f->f_sub_any = (BerVarray)slapi_ch_malloc( (i + 1) * (sizeof(struct berval)) );
1776                         for ( i = 0; filter->f_sub_any[i].bv_val != NULL; i++ ) {
1777                                 ber_dupbv( &f->f_sub_any[i], &filter->f_sub_any[i] );
1778                         }
1779                         f->f_sub_any[i].bv_val = NULL;
1780                 } else {
1781                         f->f_sub_any = NULL;
1782                 }
1783                 ber_dupbv( &f->f_sub_final, &filter->f_sub_final );
1784                 break;
1785         }
1786         case SLAPD_FILTER_COMPUTED:
1787                 f->f_result = filter->f_result;
1788                 break;
1789         default:
1790                 slapi_ch_free( (void **)&f );
1791                 f = NULL;
1792                 break;
1793         }
1794
1795         return f;
1796 #else
1797         return NULL;
1798 #endif /* LDAP_SLAPI */
1799 }
1800
1801 int 
1802 slapi_filter_get_choice( Slapi_Filter *f )
1803 {
1804 #ifdef LDAP_SLAPI
1805         int             rc;
1806
1807         if ( f != NULL ) {
1808                 rc = f->f_choice;
1809         } else {
1810                 rc = 0;
1811         }
1812
1813         return rc;
1814 #else /* LDAP_SLAPI */
1815         return -1;              /* invalid filter type */
1816 #endif /* LDAP_SLAPI */
1817 }
1818
1819 int 
1820 slapi_filter_get_ava(
1821         Slapi_Filter    *f, 
1822         char            **type, 
1823         struct berval   **bval )
1824 {
1825 #ifdef LDAP_SLAPI
1826         int             ftype;
1827         int             rc = LDAP_SUCCESS;
1828
1829         assert( type != NULL );
1830         assert( bval != NULL );
1831
1832         *type = NULL;
1833         *bval = NULL;
1834
1835         ftype = f->f_choice;
1836         if ( ftype == LDAP_FILTER_EQUALITY 
1837                         || ftype ==  LDAP_FILTER_GE 
1838                         || ftype == LDAP_FILTER_LE 
1839                         || ftype == LDAP_FILTER_APPROX ) {
1840                 /*
1841                  * According to the SLAPI Reference Manual these are
1842                  * not duplicated.
1843                  */
1844                 *type = f->f_un.f_un_ava->aa_desc->ad_cname.bv_val;
1845                 *bval = &f->f_un.f_un_ava->aa_value;
1846         } else { /* filter type not supported */
1847                 rc = -1;
1848         }
1849
1850         return rc;
1851 #else /* LDAP_SLAPI */
1852         return -1;
1853 #endif /* LDAP_SLAPI */
1854 }
1855
1856 Slapi_Filter *
1857 slapi_filter_list_first( Slapi_Filter *f )
1858 {
1859 #ifdef LDAP_SLAPI
1860         int             ftype;
1861
1862         if ( f == NULL ) {
1863                 return NULL;
1864         }
1865
1866         ftype = f->f_choice;
1867         if ( ftype == LDAP_FILTER_AND
1868                         || ftype == LDAP_FILTER_OR
1869                         || ftype == LDAP_FILTER_NOT ) {
1870                 return (Slapi_Filter *)f->f_list;
1871         } else {
1872                 return NULL;
1873         }
1874 #else /* LDAP_SLAPI */
1875         return NULL;
1876 #endif /* LDAP_SLAPI */
1877 }
1878
1879 Slapi_Filter *
1880 slapi_filter_list_next(
1881         Slapi_Filter    *f, 
1882         Slapi_Filter    *fprev )
1883 {
1884 #ifdef LDAP_SLAPI
1885         int             ftype;
1886
1887         if ( f == NULL ) {
1888                 return NULL;
1889         }
1890
1891         ftype = f->f_choice;
1892         if ( ftype == LDAP_FILTER_AND
1893                         || ftype == LDAP_FILTER_OR
1894                         || ftype == LDAP_FILTER_NOT )
1895         {
1896                 return fprev->f_next;
1897         }
1898
1899         return NULL;
1900 #else /* LDAP_SLAPI */
1901         return NULL;
1902 #endif /* LDAP_SLAPI */
1903 }
1904
1905 int
1906 slapi_filter_get_attribute_type( Slapi_Filter *f, char **type )
1907 {
1908 #ifdef LDAP_SLAPI
1909         if ( f == NULL ) {
1910                 return -1;
1911         }
1912
1913         switch ( f->f_choice ) {
1914         case LDAP_FILTER_GE:
1915         case LDAP_FILTER_LE:
1916         case LDAP_FILTER_EQUALITY:
1917         case LDAP_FILTER_APPROX:
1918                 *type = f->f_av_desc->ad_cname.bv_val;
1919                 break;
1920         case LDAP_FILTER_SUBSTRINGS:
1921                 *type = f->f_sub_desc->ad_cname.bv_val;
1922                 break;
1923         case LDAP_FILTER_PRESENT:
1924                 *type = f->f_desc->ad_cname.bv_val;
1925                 break;
1926         case LDAP_FILTER_EXT:
1927                 *type = f->f_mr_desc->ad_cname.bv_val;
1928                 break;
1929         default:
1930                 /* Complex filters need not apply. */
1931                 *type = NULL;
1932                 return -1;
1933         }
1934
1935         return 0;
1936 #else
1937         return -1;
1938 #endif /* LDAP_SLAPI */
1939 }
1940
1941 int
1942 slapi_filter_get_subfilt( Slapi_Filter *f, char **type, char **initial,
1943         char ***any, char **final )
1944 {
1945 #ifdef LDAP_SLAPI
1946         int i;
1947
1948         if ( f->f_choice != LDAP_FILTER_SUBSTRINGS ) {
1949                 return -1;
1950         }
1951
1952         /*
1953          * The caller shouldn't free but we can't return an
1954          * array of char *s from an array of bervals without
1955          * allocating memory, so we may as well be consistent.
1956          * XXX
1957          */
1958         *type = f->f_sub_desc->ad_cname.bv_val;
1959         *initial = f->f_sub_initial.bv_val ? slapi_ch_strdup(f->f_sub_initial.bv_val) : NULL;
1960         if ( f->f_sub_any != NULL ) {
1961                 for ( i = 0; f->f_sub_any[i].bv_val != NULL; i++ )
1962                         ;
1963                 *any = (char **)slapi_ch_malloc( (i + 1) * sizeof(char *) );
1964                 for ( i = 0; f->f_sub_any[i].bv_val != NULL; i++ ) {
1965                         (*any)[i] = slapi_ch_strdup(f->f_sub_any[i].bv_val);
1966                 }
1967                 (*any)[i] = NULL;
1968         } else {
1969                 *any = NULL;
1970         }
1971         *final = f->f_sub_final.bv_val ? slapi_ch_strdup(f->f_sub_final.bv_val) : NULL;
1972
1973         return 0;
1974 #else
1975         return -1;
1976 #endif /* LDAP_SLAPI */
1977 }
1978
1979 Slapi_Filter *
1980 slapi_filter_join( int ftype, Slapi_Filter *f1, Slapi_Filter *f2 )
1981 {
1982 #ifdef LDAP_SLAPI
1983         Slapi_Filter *f = NULL;
1984
1985         if ( ftype == LDAP_FILTER_AND ||
1986              ftype == LDAP_FILTER_OR ||
1987              ftype == LDAP_FILTER_NOT )
1988         {
1989                 f = (Slapi_Filter *)slapi_ch_malloc( sizeof(*f) );
1990                 f->f_choice = ftype;
1991                 f->f_list = f1;
1992                 f->f_list->f_next = f2;
1993                 f->f_next = NULL;
1994         }
1995
1996         return f;
1997 #else
1998         return NULL;
1999 #endif /* LDAP_SLAPI */
2000 }
2001
2002 int
2003 slapi_x_filter_append( int ftype,
2004         Slapi_Filter **pContainingFilter, /* NULL on first call */
2005         Slapi_Filter **pNextFilter,
2006         Slapi_Filter *filterToAppend )
2007 {
2008 #ifdef LDAP_SLAPI
2009         if ( ftype == LDAP_FILTER_AND ||
2010              ftype == LDAP_FILTER_OR ||
2011              ftype == LDAP_FILTER_NOT )
2012         {
2013                 if ( *pContainingFilter == NULL ) {
2014                         *pContainingFilter = (Slapi_Filter *)slapi_ch_malloc( sizeof(Slapi_Filter) );
2015                         (*pContainingFilter)->f_choice = ftype;
2016                         (*pContainingFilter)->f_list = filterToAppend;
2017                         (*pContainingFilter)->f_next = NULL;
2018                 } else {
2019                         if ( (*pContainingFilter)->f_choice != ftype ) {
2020                                 /* Sanity check */
2021                                 return -1;
2022                         }
2023                         (*pNextFilter)->f_next = filterToAppend;
2024                 }
2025                 *pNextFilter = filterToAppend;
2026
2027                 return 0;
2028         }
2029 #endif /* LDAP_SLAPI */
2030         return -1;
2031 }
2032
2033 int
2034 slapi_filter_test( Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Filter *f,
2035         int verify_access )
2036 {
2037 #ifdef LDAP_SLAPI
2038         Operation *op;
2039         int rc;
2040
2041         if ( f == NULL ) {
2042                 /* spec says return zero if no filter. */
2043                 return 0;
2044         }
2045
2046         if ( verify_access ) {
2047                 rc = slapi_pblock_get(pb, SLAPI_OPERATION, (void *)&op);
2048                 if ( rc != 0 ) {
2049                         return LDAP_PARAM_ERROR;
2050                 }
2051         } else {
2052                 op = NULL;
2053         }
2054         /*
2055          * According to acl.c it is safe to call test_filter() with
2056          * NULL arguments...
2057          */
2058         rc = test_filter( op, e, f );
2059         switch (rc) {
2060         case LDAP_COMPARE_TRUE:
2061                 rc = 0;
2062                 break;
2063         case LDAP_COMPARE_FALSE:
2064                 break;
2065         case SLAPD_COMPARE_UNDEFINED:
2066                 rc = LDAP_OTHER;
2067                 break;
2068         case LDAP_PROTOCOL_ERROR:
2069                 /* filter type unknown: spec says return -1 */
2070                 rc = -1;
2071                 break;
2072         }
2073
2074         return rc;
2075 #else
2076         return -1;
2077 #endif /* LDAP_SLAPI */
2078 }
2079
2080 int
2081 slapi_filter_test_simple( Slapi_Entry *e, Slapi_Filter *f)
2082 {
2083 #ifdef LDAP_SLAPI
2084         return slapi_filter_test( NULL, e, f, 0 );
2085 #else
2086         return -1;
2087 #endif
2088 }
2089
2090 int
2091 slapi_filter_apply( Slapi_Filter *f, FILTER_APPLY_FN fn, void *arg, int *error_code )
2092 {
2093 #ifdef LDAP_SLAPI
2094         switch ( f->f_choice ) {
2095         case LDAP_FILTER_AND:
2096         case LDAP_FILTER_NOT:
2097         case LDAP_FILTER_OR: {
2098                 int rc;
2099
2100                 /*
2101                  * FIXME: altering f; should we use a temporary?
2102                  */
2103                 for ( f = f->f_list; f != NULL; f = f->f_next ) {
2104                         rc = slapi_filter_apply( f, fn, arg, error_code );
2105                         if ( rc != 0 ) {
2106                                 return rc;
2107                         }
2108                         if ( *error_code == SLAPI_FILTER_SCAN_NOMORE ) {
2109                                 break;
2110                         }
2111                 }
2112                 break;
2113         }
2114         case LDAP_FILTER_EQUALITY:
2115         case LDAP_FILTER_SUBSTRINGS:
2116         case LDAP_FILTER_GE:
2117         case LDAP_FILTER_LE:
2118         case LDAP_FILTER_PRESENT:
2119         case LDAP_FILTER_APPROX:
2120         case LDAP_FILTER_EXT:
2121                 *error_code = fn( f, arg );
2122                 break;
2123         default:
2124                 *error_code = SLAPI_FILTER_UNKNOWN_FILTER_TYPE;
2125         }
2126
2127         if ( *error_code == SLAPI_FILTER_SCAN_NOMORE ||
2128              *error_code == SLAPI_FILTER_SCAN_CONTINUE ) {
2129                 return 0;
2130         }
2131
2132         return -1;
2133 #else
2134         *error_code = SLAPI_FILTER_UNKNOWN_FILTER_TYPE;
2135         return -1;
2136 #endif /* LDAP_SLAPI */
2137 }
2138
2139 int 
2140 slapi_send_ldap_extended_response(
2141         Connection      *conn, 
2142         Operation       *op,
2143         int             errornum, 
2144         char            *respName,
2145         struct berval   *response )
2146 {
2147 #ifdef LDAP_SLAPI
2148         SlapReply       rs;
2149
2150         rs.sr_err = errornum;
2151         rs.sr_matched = NULL;
2152         rs.sr_text = NULL;
2153         rs.sr_ref = NULL;
2154         rs.sr_ctrls = NULL;
2155         rs.sr_rspoid = respName;
2156         rs.sr_rspdata = response;
2157
2158         send_ldap_extended( op, &rs );
2159
2160         return LDAP_SUCCESS;
2161 #else /* LDAP_SLAPI */
2162         return -1;
2163 #endif /* LDAP_SLAPI */
2164 }
2165
2166 int 
2167 slapi_pw_find(
2168         struct berval   **vals, 
2169         struct berval   *v ) 
2170 {
2171 #ifdef LDAP_SLAPI
2172         /*
2173          * FIXME: what's the point?
2174          */
2175         return 1;
2176 #else /* LDAP_SLAPI */
2177         return 1;
2178 #endif /* LDAP_SLAPI */
2179 }
2180
2181 #define MAX_HOSTNAME 512
2182
2183 char *
2184 slapi_get_hostname( void ) 
2185 {
2186 #ifdef LDAP_SLAPI
2187         char            *hn = NULL;
2188         static int      been_here = 0;   
2189         static char     *static_hn = NULL;
2190
2191         ldap_pvt_thread_mutex_lock( &slapi_hn_mutex );
2192         if ( !been_here ) {
2193                 static_hn = (char *)slapi_ch_malloc( MAX_HOSTNAME );
2194                 if ( static_hn == NULL) {
2195                         slapi_log_error( SLAPI_LOG_FATAL, "slapi_get_hostname",
2196                                         "Cannot allocate memory for hostname\n" );
2197                         static_hn = NULL;
2198                         ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
2199
2200                         return hn;
2201                         
2202                 } else { 
2203                         if ( gethostname( static_hn, MAX_HOSTNAME ) != 0 ) {
2204                                 slapi_log_error( SLAPI_LOG_FATAL,
2205                                                 "SLAPI",
2206                                                 "can't get hostname\n" );
2207                                 slapi_ch_free( (void **)&static_hn );
2208                                 static_hn = NULL;
2209                                 ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
2210
2211                                 return hn;
2212
2213                         } else {
2214                                 been_here = 1;
2215                         }
2216                 }
2217         }
2218         ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
2219         
2220         hn = ch_strdup( static_hn );
2221
2222         return hn;
2223 #else /* LDAP_SLAPI */
2224         return NULL;
2225 #endif /* LDAP_SLAPI */
2226 }
2227
2228 /*
2229  * FIXME: this should go in an appropriate header ...
2230  */
2231 extern int slapi_int_log_error( int level, char *subsystem, char *fmt, va_list arglist );
2232
2233 int 
2234 slapi_log_error(
2235         int             severity, 
2236         char            *subsystem, 
2237         char            *fmt, 
2238         ... ) 
2239 {
2240 #ifdef LDAP_SLAPI
2241         int             rc = LDAP_SUCCESS;
2242         va_list         arglist;
2243
2244         va_start( arglist, fmt );
2245         rc = slapi_int_log_error( severity, subsystem, fmt, arglist );
2246         va_end( arglist );
2247
2248         return rc;
2249 #else /* LDAP_SLAPI */
2250         return -1;
2251 #endif /* LDAP_SLAPI */
2252 }
2253
2254
2255 unsigned long
2256 slapi_timer_current_time( void ) 
2257 {
2258 #ifdef LDAP_SLAPI
2259         static int      first_time = 1;
2260 #if !defined (_WIN32)
2261         struct timeval  now;
2262         unsigned long   ret;
2263
2264         ldap_pvt_thread_mutex_lock( &slapi_time_mutex );
2265         if (first_time) {
2266                 first_time = 0;
2267                 gettimeofday( &base_time, NULL );
2268         }
2269         gettimeofday( &now, NULL );
2270         ret = ( now.tv_sec  - base_time.tv_sec ) * 1000000 + 
2271                         (now.tv_usec - base_time.tv_usec);
2272         ldap_pvt_thread_mutex_unlock( &slapi_time_mutex );
2273
2274         return ret;
2275
2276         /*
2277          * Ain't it better?
2278         return (slap_get_time() - starttime) * 1000000;
2279          */
2280 #else /* _WIN32 */
2281         LARGE_INTEGER now;
2282
2283         if ( first_time ) {
2284                 first_time = 0;
2285                 performance_counter_present = QueryPerformanceCounter( &base_time );
2286                 QueryPerformanceFrequency( &performance_freq );
2287         }
2288
2289         if ( !performance_counter_present )
2290              return 0;
2291
2292         QueryPerformanceCounter( &now );
2293         return (1000000*(now.QuadPart-base_time.QuadPart))/performance_freq.QuadPart;
2294 #endif /* _WIN32 */
2295 #else /* LDAP_SLAPI */
2296         return 0;
2297 #endif /* LDAP_SLAPI */
2298 }
2299
2300 /*
2301  * FIXME ?
2302  */
2303 unsigned long
2304 slapi_timer_get_time( char *label ) 
2305 {
2306 #ifdef LDAP_SLAPI
2307         unsigned long start = slapi_timer_current_time();
2308         printf("%10ld %10d usec %s\n", start, 0, label);
2309         return start;
2310 #else /* LDAP_SLAPI */
2311         return 0;
2312 #endif /* LDAP_SLAPI */
2313 }
2314
2315 /*
2316  * FIXME ?
2317  */
2318 void
2319 slapi_timer_elapsed_time(
2320         char *label,
2321         unsigned long start ) 
2322 {
2323 #ifdef LDAP_SLAPI
2324         unsigned long stop = slapi_timer_current_time();
2325         printf ("%10ld %10ld usec %s\n", stop, stop - start, label);
2326 #endif /* LDAP_SLAPI */
2327 }
2328
2329 void
2330 slapi_free_search_results_internal( Slapi_PBlock *pb ) 
2331 {
2332 #ifdef LDAP_SLAPI
2333         Slapi_Entry     **entries;
2334         int             k = 0, nEnt = 0;
2335
2336         slapi_pblock_get( pb, SLAPI_NENTRIES, &nEnt );
2337         slapi_pblock_get( pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries );
2338         if ( nEnt == 0 ) {
2339                 return;
2340         }
2341         
2342         if ( entries == NULL ) {
2343                 return;
2344         }
2345         
2346         for ( k = 0; k < nEnt; k++ ) {
2347                 slapi_entry_free( entries[k] );
2348         }
2349         
2350         slapi_ch_free( (void **)&entries );
2351 #endif /* LDAP_SLAPI */
2352 }
2353
2354 #ifdef LDAP_SLAPI
2355 /*
2356  * Internal API to prime a Slapi_PBlock with a Backend.
2357  */
2358 static int slapi_int_pblock_set_backend( Slapi_PBlock *pb, Backend *be )
2359 {
2360         int rc;
2361         
2362         rc = slapi_pblock_set( pb, SLAPI_BACKEND, (void *)be );
2363         if ( rc != LDAP_SUCCESS )
2364                 return rc;
2365         
2366         if ( be != NULL ) {
2367                 rc = slapi_pblock_set( pb, SLAPI_BE_TYPE, (void *)be->bd_info->bi_type );
2368                 if ( rc != LDAP_SUCCESS )
2369                         return rc;
2370         }
2371
2372         return LDAP_SUCCESS;
2373 }
2374
2375 /*
2376  * If oldStyle is TRUE, then a value suitable for setting to
2377  * the deprecated SLAPI_CONN_AUTHTYPE value is returned 
2378  * (pointer to static storage).
2379  *
2380  * If oldStyle is FALSE, then a value suitable for setting to
2381  * the new SLAPI_CONN_AUTHMETHOD will be returned, which is
2382  * a pointer to allocated memory and will include the SASL
2383  * mechanism (if any).
2384  */
2385 static char *Authorization2AuthType( AuthorizationInformation *authz, int is_tls, int oldStyle )
2386 {
2387         size_t len;
2388         char *authType;
2389
2390         switch ( authz->sai_method ) {
2391         case LDAP_AUTH_SASL:
2392                 if ( oldStyle ) {
2393                         authType = SLAPD_AUTH_SASL;
2394                 } else {
2395                         len = sizeof(SLAPD_AUTH_SASL) + authz->sai_mech.bv_len;
2396                         authType = slapi_ch_malloc( len );
2397                         snprintf( authType, len, "%s%s", SLAPD_AUTH_SASL, authz->sai_mech.bv_val );
2398                 }
2399                 break;
2400         case LDAP_AUTH_SIMPLE:
2401                 authType = oldStyle ? SLAPD_AUTH_SIMPLE : slapi_ch_strdup( SLAPD_AUTH_SIMPLE );
2402                 break;
2403         case LDAP_AUTH_NONE:
2404                 authType = oldStyle ? SLAPD_AUTH_NONE : slapi_ch_strdup( SLAPD_AUTH_NONE );
2405                 break;
2406         default:
2407                 authType = NULL;
2408                 break;
2409         }
2410         if ( is_tls && authType == NULL ) {
2411                 authType = oldStyle ? SLAPD_AUTH_SSL : slapi_ch_strdup( SLAPD_AUTH_SSL );
2412         }
2413
2414         return authType;
2415 }
2416
2417 /*
2418  * Internal API to prime a Slapi_PBlock with a Connection.
2419  */
2420 static int slapi_int_pblock_set_connection( Slapi_PBlock *pb, Connection *conn )
2421 {
2422         char *connAuthType;
2423         int rc;
2424
2425         rc = slapi_pblock_set( pb, SLAPI_CONNECTION, (void *)conn );
2426         if ( rc != LDAP_SUCCESS )
2427                 return rc;
2428
2429         if ( strncmp( conn->c_peer_name.bv_val, "IP=", 3 ) == 0 ) {
2430                 rc = slapi_pblock_set( pb, SLAPI_CONN_CLIENTIP, (void *)&conn->c_peer_name.bv_val[3] );
2431                 if ( rc != LDAP_SUCCESS )
2432                         return rc;
2433         } else if ( strncmp( conn->c_peer_name.bv_val, "PATH=", 5 ) == 0 ) {
2434                 rc = slapi_pblock_set( pb, SLAPI_X_CONN_CLIENTPATH, (void *)&conn->c_peer_name.bv_val[5] );
2435                 if ( rc != LDAP_SUCCESS )
2436                         return rc;
2437         }
2438
2439         if ( strncmp( conn->c_sock_name.bv_val, "IP=", 3 ) == 0 ) {
2440                 rc = slapi_pblock_set( pb, SLAPI_CONN_SERVERIP, (void *)&conn->c_sock_name.bv_val[3] );
2441                 if ( rc != LDAP_SUCCESS )
2442                         return rc;
2443         } else if ( strncmp( conn->c_sock_name.bv_val, "PATH=", 5 ) == 0 ) {
2444                 rc = slapi_pblock_set( pb, SLAPI_X_CONN_SERVERPATH, (void *)&conn->c_sock_name.bv_val[5] );
2445                 if ( rc != LDAP_SUCCESS )
2446                         return rc;
2447         }
2448
2449 #ifdef LDAP_CONNECTIONLESS
2450         rc = slapi_pblock_set( pb, SLAPI_X_CONN_IS_UDP, (void *)conn->c_is_udp );
2451         if ( rc != LDAP_SUCCESS )
2452                 return rc;
2453 #endif
2454
2455         rc = slapi_pblock_set( pb, SLAPI_CONN_ID, (void *)conn->c_connid );
2456         if ( rc != LDAP_SUCCESS )
2457                 return rc;
2458
2459         /* Returns pointer to static string */
2460         connAuthType = Authorization2AuthType( &conn->c_authz,
2461 #ifdef HAVE_TLS
2462                 conn->c_is_tls,
2463 #else
2464                 0,
2465 #endif
2466                 1 );
2467         if ( connAuthType != NULL ) {
2468                 rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHTYPE, (void *)connAuthType);
2469                 if ( rc != LDAP_SUCCESS )
2470                         return rc;
2471         }
2472
2473         /* Returns pointer to allocated string */
2474         connAuthType = Authorization2AuthType( &conn->c_authz,
2475 #ifdef HAVE_TLS
2476                 conn->c_is_tls,
2477 #else
2478                 0,
2479 #endif
2480                 0 );
2481         if ( connAuthType != NULL ) {
2482                 rc = slapi_pblock_set(pb, SLAPI_CONN_AUTHMETHOD, (void *)connAuthType);
2483                 /* slapi_pblock_set dups this itself */
2484                 slapi_ch_free( (void **)&connAuthType );
2485                 if ( rc != LDAP_SUCCESS )
2486                         return rc;
2487         }
2488
2489         if ( conn->c_authz.sai_dn.bv_val != NULL ) {
2490                 /* slapi_pblock_set dups this itself */
2491                 rc = slapi_pblock_set(pb, SLAPI_CONN_DN, (void *)conn->c_authz.sai_dn.bv_val);
2492                 if ( rc != LDAP_SUCCESS )
2493                         return rc;
2494         }
2495
2496         rc = slapi_pblock_set(pb, SLAPI_X_CONN_SSF, (void *)conn->c_ssf);
2497         if ( rc != LDAP_SUCCESS )
2498                 return rc;
2499
2500         rc = slapi_pblock_set(pb, SLAPI_X_CONN_SASL_CONTEXT,
2501                 ( conn->c_sasl_authctx != NULL ? conn->c_sasl_authctx :
2502                                                  conn->c_sasl_sockctx ) );
2503         if ( rc != LDAP_SUCCESS )
2504                 return rc;
2505
2506         return rc;
2507 }
2508 #endif /* LDAP_SLAPI */
2509
2510 /*
2511  * Internal API to prime a Slapi_PBlock with an Operation.
2512  */
2513 int slapi_int_pblock_set_operation( Slapi_PBlock *pb, Operation *op )
2514 {
2515 #ifdef LDAP_SLAPI
2516         int isRoot = 0;
2517         int isUpdateDn = 0;
2518         int rc;
2519         char *opAuthType;
2520
2521         if ( op->o_bd != NULL ) {
2522                 isRoot = be_isroot( op );
2523                 isUpdateDn = be_isupdate( op );
2524         }
2525
2526         rc = slapi_int_pblock_set_backend( pb, op->o_bd );
2527         if ( rc != LDAP_SUCCESS )
2528                 return rc;
2529
2530         rc = slapi_int_pblock_set_connection( pb, op->o_conn );
2531         if ( rc != LDAP_SUCCESS )
2532                 return rc;
2533
2534         rc = slapi_pblock_set( pb, SLAPI_OPERATION, (void *)op );
2535         if ( rc != LDAP_SUCCESS )
2536                 return rc;
2537
2538         rc = slapi_pblock_set( pb, SLAPI_OPINITIATED_TIME, (void *)op->o_time );
2539         if ( rc != LDAP_SUCCESS )
2540                 return rc;
2541
2542         rc = slapi_pblock_set( pb, SLAPI_OPERATION_ID, (void *)op->o_opid );
2543         if ( rc != LDAP_SUCCESS )
2544                 return rc;
2545
2546         rc = slapi_pblock_set( pb, SLAPI_OPERATION_TYPE, (void *)op->o_tag );
2547         if ( rc != LDAP_SUCCESS )
2548                 return rc;
2549
2550         rc = slapi_pblock_set( pb, SLAPI_REQUESTOR_ISROOT, (void *)isRoot );
2551         if ( rc != LDAP_SUCCESS )
2552                 return rc;
2553
2554         rc = slapi_pblock_set( pb, SLAPI_REQUESTOR_ISUPDATEDN, (void *)isUpdateDn );
2555         if ( rc != LDAP_SUCCESS )
2556                 return rc;
2557
2558         rc = slapi_pblock_set( pb, SLAPI_REQCONTROLS, (void *)op->o_ctrls );
2559         if ( rc != LDAP_SUCCESS)
2560                 return rc;
2561
2562         rc = slapi_pblock_set( pb, SLAPI_REQUESTOR_DN, (void *)op->o_ndn.bv_val );
2563         if ( rc != LDAP_SUCCESS )
2564                 return rc;
2565
2566         rc = slapi_pblock_get( pb, SLAPI_CONN_AUTHMETHOD, (void *)&opAuthType );
2567         if ( rc == LDAP_SUCCESS && opAuthType != NULL ) {
2568                 /* Not quite sure what the point of this is. */
2569                 rc = slapi_pblock_set( pb, SLAPI_OPERATION_AUTHTYPE, (void *)opAuthType );
2570                 if ( rc != LDAP_SUCCESS )
2571                         return rc;
2572         }
2573
2574         return LDAP_SUCCESS;
2575 #else
2576         return -1;
2577 #endif
2578 }
2579
2580 int slapi_is_connection_ssl( Slapi_PBlock *pb, int *isSSL )
2581 {
2582 #ifdef LDAP_SLAPI
2583         Connection *conn;
2584
2585         slapi_pblock_get( pb, SLAPI_CONNECTION, &conn );
2586 #ifdef HAVE_TLS
2587         *isSSL = conn->c_is_tls;
2588 #else
2589         *isSSL = 0;
2590 #endif
2591
2592         return LDAP_SUCCESS;
2593 #else
2594         return -1;
2595 #endif /* LDAP_SLAPI */
2596 }
2597
2598 /*
2599  * DS 5.x compatability API follow
2600  */
2601
2602 int slapi_attr_get_flags( const Slapi_Attr *attr, unsigned long *flags )
2603 {
2604 #ifdef LDAP_SLAPI
2605         AttributeType *at;
2606
2607         if ( attr == NULL )
2608                 return LDAP_PARAM_ERROR;
2609
2610         at = attr->a_desc->ad_type;
2611
2612         *flags = SLAPI_ATTR_FLAG_STD_ATTR;
2613
2614         if ( is_at_single_value( at ) )
2615                 *flags |= SLAPI_ATTR_FLAG_SINGLE;
2616         if ( is_at_operational( at ) )
2617                 *flags |= SLAPI_ATTR_FLAG_OPATTR;
2618         if ( is_at_obsolete( at ) )
2619                 *flags |= SLAPI_ATTR_FLAG_OBSOLETE;
2620         if ( is_at_collective( at ) )
2621                 *flags |= SLAPI_ATTR_FLAG_COLLECTIVE;
2622         if ( is_at_no_user_mod( at ) )
2623                 *flags |= SLAPI_ATTR_FLAG_NOUSERMOD;
2624
2625         return LDAP_SUCCESS;
2626 #else
2627         return -1;
2628 #endif /* LDAP_SLAPI */
2629 }
2630
2631 int slapi_attr_flag_is_set( const Slapi_Attr *attr, unsigned long flag )
2632 {
2633 #ifdef LDAP_SLAPI
2634         unsigned long flags;
2635
2636         if ( slapi_attr_get_flags( attr, &flags ) != 0 )
2637                 return 0;
2638         return (flags & flag) ? 1 : 0;
2639 #else
2640         return 0;
2641 #endif /* LDAP_SLAPI */
2642 }
2643
2644 Slapi_Attr *slapi_attr_new( void )
2645 {
2646 #ifdef LDAP_SLAPI
2647         Attribute *ad;
2648
2649         ad = (Attribute  *)slapi_ch_calloc( 1, sizeof(*ad) );
2650
2651         return ad;
2652 #else
2653         return NULL;
2654 #endif
2655 }
2656
2657 Slapi_Attr *slapi_attr_init( Slapi_Attr *a, const char *type )
2658 {
2659 #ifdef LDAP_SLAPI
2660         const char *text;
2661         AttributeDescription *ad = NULL;
2662
2663         if( slap_str2ad( type, &ad, &text ) != LDAP_SUCCESS ) {
2664                 return NULL;
2665         }
2666
2667         a->a_desc = ad;
2668         a->a_vals = NULL;
2669         a->a_nvals = NULL;
2670         a->a_next = NULL;
2671         a->a_flags = 0;
2672
2673         return a;
2674 #else
2675         return NULL;
2676 #endif
2677 }
2678
2679 void slapi_attr_free( Slapi_Attr **a )
2680 {
2681 #ifdef LDAP_SLAPI
2682         attr_free( *a );
2683         *a = NULL;
2684 #endif
2685 }
2686
2687 Slapi_Attr *slapi_attr_dup( const Slapi_Attr *attr )
2688 {
2689 #ifdef LDAP_SLAPI
2690         return attr_dup( (Slapi_Attr *)attr );
2691 #else
2692         return NULL;
2693 #endif
2694 }
2695
2696 int slapi_attr_add_value( Slapi_Attr *a, const Slapi_Value *v )
2697 {
2698 #ifdef LDAP_SLAPI
2699         struct berval nval;
2700         struct berval *nvalp;
2701         int rc;
2702         AttributeDescription *desc = a->a_desc;
2703
2704         if ( desc->ad_type->sat_equality &&
2705              desc->ad_type->sat_equality->smr_normalize ) {
2706                 rc = (*desc->ad_type->sat_equality->smr_normalize)(
2707                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
2708                         desc->ad_type->sat_syntax,
2709                         desc->ad_type->sat_equality,
2710                         (Slapi_Value *)v, &nval, NULL );
2711                 if ( rc != LDAP_SUCCESS ) {
2712                         return rc;
2713                 }
2714                 nvalp = &nval;
2715         } else {
2716                 nvalp = NULL;
2717         }
2718
2719         rc = value_add_one( &a->a_vals, (Slapi_Value *)v );
2720         if ( rc == 0 && nvalp != NULL ) {
2721                 rc = value_add_one( &a->a_nvals, nvalp );
2722         } else {
2723                 a->a_nvals = a->a_vals;
2724         }
2725
2726         if ( nvalp != NULL ) {
2727                 slapi_ch_free_string( &nval.bv_val );
2728         }
2729
2730         return rc;
2731 #else
2732         return -1;
2733 #endif
2734 }
2735
2736 int slapi_attr_type2plugin( const char *type, void **pi )
2737 {
2738         *pi = NULL;
2739
2740         return LDAP_OTHER;
2741 }
2742
2743 int slapi_attr_get_type( const Slapi_Attr *attr, char **type )
2744 {
2745 #ifdef LDAP_SLAPI
2746         if ( attr == NULL ) {
2747                 return LDAP_PARAM_ERROR;
2748         }
2749
2750         *type = attr->a_desc->ad_cname.bv_val;
2751
2752         return LDAP_SUCCESS;
2753 #else
2754         return -1;
2755 #endif
2756 }
2757
2758 int slapi_attr_get_oid_copy( const Slapi_Attr *attr, char **oidp )
2759 {
2760 #ifdef LDAP_SLAPI
2761         if ( attr == NULL ) {
2762                 return LDAP_PARAM_ERROR;
2763         }
2764         *oidp = attr->a_desc->ad_type->sat_oid;
2765
2766         return LDAP_SUCCESS;
2767 #else
2768         return -1;
2769 #endif
2770 }
2771
2772 int slapi_attr_value_cmp( const Slapi_Attr *a, const struct berval *v1, const struct berval *v2 )
2773 {
2774 #ifdef LDAP_SLAPI
2775         MatchingRule *mr;
2776         int ret;
2777         int rc;
2778         const char *text;
2779
2780         mr = a->a_desc->ad_type->sat_equality;
2781         rc = value_match( &ret, a->a_desc, mr,
2782                         SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
2783                 (struct berval *)v1, (void *)v2, &text );
2784         if ( rc != LDAP_SUCCESS ) 
2785                 return -1;
2786
2787         return ( ret == 0 ) ? 0 : -1;
2788 #else
2789         return -1;
2790 #endif
2791 }
2792
2793 int slapi_attr_value_find( const Slapi_Attr *a, struct berval *v )
2794 {
2795 #ifdef LDAP_SLAPI
2796         MatchingRule *mr;
2797         struct berval *bv;
2798         int j;
2799         const char *text;
2800         int rc;
2801         int ret;
2802
2803         if ( a ->a_vals == NULL ) {
2804                 return -1;
2805         }
2806         mr = a->a_desc->ad_type->sat_equality;
2807         for ( bv = a->a_vals, j = 0; bv->bv_val != NULL; bv++, j++ ) {
2808                 rc = value_match( &ret, a->a_desc, mr,
2809                         SLAP_MR_VALUE_OF_ASSERTION_SYNTAX, bv, v, &text );
2810                 if ( rc != LDAP_SUCCESS ) {
2811                         return -1;
2812                 }
2813                 if ( ret == 0 ) {
2814                         return 0;
2815                 }
2816         }
2817 #endif /* LDAP_SLAPI */
2818         return -1;
2819 }
2820
2821 int slapi_attr_type_cmp( const char *t1, const char *t2, int opt )
2822 {
2823 #ifdef LDAP_SLAPI
2824         AttributeDescription *a1 = NULL;
2825         AttributeDescription *a2 = NULL;
2826         const char *text;
2827         int ret;
2828
2829         if ( slap_str2ad( t1, &a1, &text ) != LDAP_SUCCESS ) {
2830                 return -1;
2831         }
2832
2833         if ( slap_str2ad( t2, &a2, &text ) != LDAP_SUCCESS ) {
2834                 return 1;
2835         }
2836
2837 #define ad_base_cmp(l,r) (((l)->ad_type->sat_cname.bv_len < (r)->ad_type->sat_cname.bv_len) \
2838         ? -1 : (((l)->ad_type->sat_cname.bv_len > (r)->ad_type->sat_cname.bv_len) \
2839                 ? 1 : strcasecmp((l)->ad_type->sat_cname.bv_val, (r)->ad_type->sat_cname.bv_val )))
2840
2841         switch ( opt ) {
2842         case SLAPI_TYPE_CMP_EXACT:
2843                 ret = ad_cmp( a1, a2 );
2844                 break;
2845         case SLAPI_TYPE_CMP_BASE:
2846                 ret = ad_base_cmp( a1, a2 );
2847                 break;
2848         case SLAPI_TYPE_CMP_SUBTYPE:
2849                 ret = is_ad_subtype( a2, a2 );
2850                 break;
2851         default:
2852                 ret = -1;
2853                 break;
2854         }
2855
2856         return ret;
2857 #else
2858         return -1;
2859 #endif
2860 }
2861
2862 int slapi_attr_types_equivalent( const char *t1, const char *t2 )
2863 {
2864 #ifdef LDAP_SLAPI
2865         return slapi_attr_type_cmp( t1, t2, SLAPI_TYPE_CMP_EXACT );
2866 #else
2867         return -1;
2868 #endif
2869 }
2870
2871 int slapi_attr_first_value( Slapi_Attr *a, Slapi_Value **v )
2872 {
2873 #ifdef LDAP_SLAPI
2874         return slapi_valueset_first_value( &a->a_vals, v );
2875 #else
2876         return -1;
2877 #endif
2878 }
2879
2880 int slapi_attr_next_value( Slapi_Attr *a, int hint, Slapi_Value **v )
2881 {
2882 #ifdef LDAP_SLAPI
2883         return slapi_valueset_next_value( &a->a_vals, hint, v );
2884 #else
2885         return -1;
2886 #endif
2887 }
2888
2889 int slapi_attr_get_numvalues( const Slapi_Attr *a, int *numValues )
2890 {
2891 #ifdef LDAP_SLAPI
2892         *numValues = slapi_valueset_count( &a->a_vals );
2893
2894         return 0;
2895 #else
2896         return -1;
2897 #endif
2898 }
2899
2900 int slapi_attr_get_valueset( const Slapi_Attr *a, Slapi_ValueSet **vs )
2901 {
2902 #ifdef LDAP_SLAPI
2903         *vs = &((Slapi_Attr *)a)->a_vals;
2904
2905         return 0;
2906 #else
2907         return -1;
2908 #endif
2909 }
2910
2911 int slapi_attr_get_bervals_copy( Slapi_Attr *a, struct berval ***vals )
2912 {
2913 #ifdef LDAP_SLAPI
2914         return slapi_attr_get_values( a, vals );
2915 #else
2916         return -1;
2917 #endif
2918 }
2919
2920 char *slapi_attr_syntax_normalize( const char *s )
2921 {
2922 #ifdef LDAP_SLAPI
2923         AttributeDescription *ad = NULL;
2924         const char *text;
2925
2926         if ( slap_str2ad( s, &ad, &text ) != LDAP_SUCCESS ) {
2927                 return NULL;
2928         }
2929
2930         return ad->ad_cname.bv_val;
2931 #else
2932         return -1;
2933 #endif
2934 }
2935
2936 Slapi_Value *slapi_value_new( void )
2937 {
2938 #ifdef LDAP_SLAPI
2939         struct berval *bv;
2940
2941         bv = (struct berval *)slapi_ch_malloc( sizeof(*bv) );
2942
2943         return bv;
2944 #else
2945         return NULL;
2946 #endif
2947 }
2948
2949 Slapi_Value *slapi_value_new_berval(const struct berval *bval)
2950 {
2951 #ifdef LDAP_SLAPI
2952         return ber_dupbv( NULL, (struct berval *)bval );
2953 #else
2954         return NULL;
2955 #endif
2956 }
2957
2958 Slapi_Value *slapi_value_new_value(const Slapi_Value *v)
2959 {
2960 #ifdef LDAP_SLAPI
2961         return slapi_value_new_berval( v );
2962 #else
2963         return NULL;
2964 #endif
2965 }
2966
2967 Slapi_Value *slapi_value_new_string(const char *s)
2968 {
2969 #ifdef LDAP_SLAPI
2970         struct berval bv;
2971
2972         bv.bv_val = (char *)s;
2973         bv.bv_len = strlen( s );
2974
2975         return slapi_value_new_berval( &bv );
2976 #else
2977         return NULL;
2978 #endif
2979 }
2980
2981 Slapi_Value *slapi_value_init(Slapi_Value *val)
2982 {
2983 #ifdef LDAP_SLAPI
2984         val->bv_val = NULL;
2985         val->bv_len = 0;
2986
2987         return val;
2988 #else
2989         return NULL;
2990 #endif
2991 }
2992
2993 Slapi_Value *slapi_value_init_berval(Slapi_Value *v, struct berval *bval)
2994 {
2995 #ifdef LDAP_SLAPI
2996         return ber_dupbv( v, bval );
2997 #else
2998         return NULL;
2999 #endif
3000 }
3001
3002 Slapi_Value *slapi_value_init_string(Slapi_Value *v, const char *s)
3003 {
3004 #ifdef LDAP_SLAPI
3005         v->bv_val = slapi_ch_strdup( (char *)s );
3006         v->bv_len = strlen( s );
3007
3008         return v;
3009 #else
3010         return NULL;
3011 #endif
3012 }
3013
3014 Slapi_Value *slapi_value_dup(const Slapi_Value *v)
3015 {
3016 #ifdef LDAP_SLAPI
3017         return slapi_value_new_value( v );
3018 #else
3019         return NULL;
3020 #endif
3021 }
3022
3023 void slapi_value_free(Slapi_Value **value)
3024 {
3025 #ifdef LDAP_SLAPI       
3026         if ( value == NULL ) {
3027                 return;
3028         }
3029
3030         if ( (*value) != NULL ) {
3031                 slapi_ch_free( (void **)&(*value)->bv_val );
3032                 slapi_ch_free( (void **)value );
3033         }
3034 #endif
3035 }
3036
3037 const struct berval *slapi_value_get_berval( const Slapi_Value *value )
3038 {
3039 #ifdef LDAP_SLAPI
3040         return value;
3041 #else
3042         return NULL;
3043 #endif
3044 }
3045
3046 Slapi_Value *slapi_value_set_berval( Slapi_Value *value, const struct berval *bval )
3047 {
3048 #ifdef LDAP_SLAPI
3049         if ( value == NULL ) {
3050                 return NULL;
3051         }
3052         if ( value->bv_val != NULL ) {
3053                 slapi_ch_free( (void **)&value->bv_val );
3054         }
3055         slapi_value_init_berval( value, (struct berval *)bval );
3056
3057         return value;
3058 #else
3059         return NULL;
3060 #endif
3061 }
3062
3063 Slapi_Value *slapi_value_set_value( Slapi_Value *value, const Slapi_Value *vfrom)
3064 {
3065 #ifdef LDAP_SLAPI
3066         if ( value == NULL ) {
3067                 return NULL;
3068         }
3069         return slapi_value_set_berval( value, vfrom );
3070 #else
3071         return NULL;
3072 #endif
3073 }
3074
3075 Slapi_Value *slapi_value_set( Slapi_Value *value, void *val, unsigned long len)
3076 {
3077 #ifdef LDAP_SLAPI
3078         if ( value == NULL ) {
3079                 return NULL;
3080         }
3081         if ( value->bv_val != NULL ) {
3082                 slapi_ch_free( (void **)&value->bv_val );
3083         }
3084         value->bv_val = slapi_ch_malloc( len );
3085         value->bv_len = len;
3086         AC_MEMCPY( value->bv_val, val, len );
3087
3088         return value;
3089 #else
3090         return NULL;
3091 #endif
3092 }
3093
3094 int slapi_value_set_string(Slapi_Value *value, const char *strVal)
3095 {
3096 #ifdef LDAP_SLAPI
3097         if ( value == NULL ) {
3098                 return -1;
3099         }
3100         slapi_value_set( value, (void *)strVal, strlen( strVal ) );
3101         return 0;
3102 #else
3103         return NULL;
3104 #endif
3105 }
3106
3107 int slapi_value_set_int(Slapi_Value *value, int intVal)
3108 {
3109 #ifdef LDAP_SLAPI
3110         char buf[64];
3111
3112         snprintf( buf, sizeof( buf ), "%d", intVal );
3113
3114         return slapi_value_set_string( value, buf );
3115 #else
3116         return -1;
3117 #endif
3118 }
3119
3120 const char *slapi_value_get_string(const Slapi_Value *value)
3121 {
3122 #ifdef LDAP_SLAPI
3123         if ( value == NULL ) return NULL;
3124         if ( value->bv_val == NULL ) return NULL;
3125         if ( !checkBVString( value ) ) return NULL;
3126
3127         return value->bv_val;
3128 #else
3129         return NULL;
3130 #endif
3131 }
3132
3133 int slapi_value_get_int(const Slapi_Value *value)
3134 {
3135 #ifdef LDAP_SLAPI
3136         if ( value == NULL ) return 0;
3137         if ( value->bv_val == NULL ) return 0;
3138         if ( !checkBVString( value ) ) return 0;
3139
3140         return (int)strtol( value->bv_val, NULL, 10 );
3141 #else
3142         return NULL;
3143 #endif
3144 }
3145
3146 unsigned int slapi_value_get_uint(const Slapi_Value *value)
3147 {
3148 #ifdef LDAP_SLAPI
3149         if ( value == NULL ) return 0;
3150         if ( value->bv_val == NULL ) return 0;
3151         if ( !checkBVString( value ) ) return 0;
3152
3153         return (unsigned int)strtoul( value->bv_val, NULL, 10 );
3154 #else
3155         return NULL;
3156 #endif
3157 }
3158
3159 long slapi_value_get_long(const Slapi_Value *value)
3160 {
3161 #ifdef LDAP_SLAPI
3162         if ( value == NULL ) return 0;
3163         if ( value->bv_val == NULL ) return 0;
3164         if ( !checkBVString( value ) ) return 0;
3165
3166         return strtol( value->bv_val, NULL, 10 );
3167 #else
3168         return NULL;
3169 #endif
3170 }
3171
3172 unsigned long slapi_value_get_ulong(const Slapi_Value *value)
3173 {
3174 #ifdef LDAP_SLAPI
3175         if ( value == NULL ) return 0;
3176         if ( value->bv_val == NULL ) return 0;
3177         if ( !checkBVString( value ) ) return 0;
3178
3179         return strtoul( value->bv_val, NULL, 10 );
3180 #else
3181         return NULL;
3182 #endif
3183 }
3184
3185 size_t slapi_value_get_length(const Slapi_Value *value)
3186 {
3187 #ifdef LDAP_SLAPI
3188         if ( value == NULL )
3189                 return 0;
3190
3191         return (size_t) value->bv_len;
3192 #else
3193         return 0;
3194 #endif
3195 }
3196
3197 int slapi_value_compare(const Slapi_Attr *a, const Slapi_Value *v1, const Slapi_Value *v2)
3198 {
3199 #ifdef LDAP_SLAPI
3200         return slapi_attr_value_cmp( a, v1, v2 );
3201 #else
3202         return -1;
3203 #endif
3204 }
3205
3206 /* A ValueSet is a container for a BerVarray. */
3207 Slapi_ValueSet *slapi_valueset_new( void )
3208 {
3209 #ifdef LDAP_SLAPI
3210         Slapi_ValueSet *vs;
3211
3212         vs = (Slapi_ValueSet *)slapi_ch_malloc( sizeof( *vs ) );
3213         *vs = NULL;
3214
3215         return vs;
3216 #else
3217         return NULL;
3218 #endif
3219 }
3220
3221 void slapi_valueset_free(Slapi_ValueSet *vs)
3222 {
3223 #ifdef LDAP_SLAPI
3224         if ( vs != NULL ) {
3225                 BerVarray vp = *vs;
3226
3227                 ber_bvarray_free( vp );
3228                 slapi_ch_free( (void **)&vp );
3229
3230                 *vs = NULL;
3231         }
3232 #endif
3233 }
3234
3235 void slapi_valueset_init(Slapi_ValueSet *vs)
3236 {
3237 #ifdef LDAP_SLAPI
3238         if ( vs != NULL && *vs == NULL ) {
3239                 *vs = (Slapi_ValueSet)slapi_ch_calloc( 1, sizeof(struct berval) );
3240                 (*vs)->bv_val = NULL;
3241                 (*vs)->bv_len = 0;
3242         }
3243 #endif
3244 }
3245
3246 void slapi_valueset_done(Slapi_ValueSet *vs)
3247 {
3248 #ifdef LDAP_SLAPI
3249         BerVarray vp;
3250
3251         if ( vs == NULL )
3252                 return;
3253
3254         for ( vp = *vs; vp->bv_val != NULL; vp++ ) {
3255                 vp->bv_len = 0;
3256                 slapi_ch_free( (void **)&vp->bv_val );
3257         }
3258         /* but don't free *vs or vs */
3259 #endif
3260 }
3261
3262 void slapi_valueset_add_value(Slapi_ValueSet *vs, const Slapi_Value *addval)
3263 {
3264 #ifdef LDAP_SLAPI
3265         struct berval bv;
3266
3267         ber_dupbv( &bv, (Slapi_Value *)addval );
3268         ber_bvarray_add( vs, &bv );
3269 #endif
3270 }
3271
3272 int slapi_valueset_first_value( Slapi_ValueSet *vs, Slapi_Value **v )
3273 {
3274 #ifdef LDAP_SLAPI
3275         return slapi_valueset_next_value( vs, 0, v );
3276 #else
3277         return -1;
3278 #endif
3279 }
3280
3281 int slapi_valueset_next_value( Slapi_ValueSet *vs, int index, Slapi_Value **v)
3282 {
3283 #ifdef LDAP_SLAPI
3284         int i;
3285         BerVarray vp;
3286
3287         if ( vs == NULL )
3288                 return -1;
3289
3290         vp = *vs;
3291
3292         for ( i = 0; vp[i].bv_val != NULL; i++ ) {
3293                 if ( i == index ) {
3294                         *v = &vp[i];
3295                         return index + 1;
3296                 }
3297         }
3298 #endif
3299
3300         return -1;
3301 }
3302
3303 int slapi_valueset_count( const Slapi_ValueSet *vs )
3304 {
3305 #ifdef LDAP_SLAPI
3306         int i;
3307         BerVarray vp;
3308
3309         if ( vs == NULL )
3310                 return 0;
3311
3312         vp = *vs;
3313
3314         for ( i = 0; vp[i].bv_val != NULL; i++ )
3315                 ;
3316
3317         return i;
3318 #else
3319         return 0;
3320 #endif
3321
3322 }
3323
3324 void slapi_valueset_set_valueset(Slapi_ValueSet *vs1, const Slapi_ValueSet *vs2)
3325 {
3326 #ifdef LDAP_SLAPI
3327         BerVarray vp;
3328
3329         for ( vp = *vs2; vp->bv_val != NULL; vp++ ) {
3330                 slapi_valueset_add_value( vs1, vp );
3331         }
3332 #endif
3333 }
3334
3335 int slapi_access_allowed( Slapi_PBlock *pb, Slapi_Entry *e, char *attr,
3336         struct berval *val, int access )
3337 {
3338 #ifdef LDAP_SLAPI
3339         Backend *be;
3340         Connection *conn;
3341         Operation *op;
3342         int ret;
3343         slap_access_t slap_access;
3344         AttributeDescription *ad = NULL;
3345         const char *text;
3346
3347         ret = slap_str2ad( attr, &ad, &text );
3348         if ( ret != LDAP_SUCCESS ) {
3349                 return ret;
3350         }
3351
3352         switch ( access & SLAPI_ACL_ALL ) {
3353         case SLAPI_ACL_COMPARE:
3354                 slap_access = ACL_COMPARE;
3355                 break;
3356         case SLAPI_ACL_SEARCH:
3357                 slap_access = ACL_SEARCH;
3358                 break;
3359         case SLAPI_ACL_READ:
3360                 slap_access = ACL_READ;
3361                 break;
3362         case SLAPI_ACL_WRITE:
3363         case SLAPI_ACL_DELETE:
3364         case SLAPI_ACL_ADD:
3365         case SLAPI_ACL_SELF:
3366                 /* FIXME: handle ACL_WADD/ACL_WDEL */
3367                 slap_access = ACL_WRITE;
3368                 break;
3369         default:
3370                 return LDAP_INSUFFICIENT_ACCESS;
3371                 break;
3372         }
3373
3374         if ( slapi_pblock_get( pb, SLAPI_BACKEND, (void *)&be ) != 0 ) {
3375                 return LDAP_PARAM_ERROR;
3376         }
3377
3378         if ( slapi_pblock_get( pb, SLAPI_CONNECTION, (void *)&conn ) != 0 ) {
3379                 return LDAP_PARAM_ERROR;
3380         }
3381
3382         if ( slapi_pblock_get( pb, SLAPI_OPERATION, (void *)&op ) != 0 ) {
3383                 return LDAP_PARAM_ERROR;
3384         }
3385
3386         ret = access_allowed( op, e, ad, val, slap_access, NULL );
3387
3388         return ret ? LDAP_SUCCESS : LDAP_INSUFFICIENT_ACCESS;
3389 #else
3390         return LDAP_UNWILLING_TO_PERFORM;
3391 #endif
3392 }
3393
3394 int slapi_acl_check_mods(Slapi_PBlock *pb, Slapi_Entry *e, LDAPMod **mods, char **errbuf)
3395 {
3396 #ifdef LDAP_SLAPI
3397         Operation *op;
3398         int rc = LDAP_SUCCESS;
3399         Modifications *ml, *mp;
3400
3401         if ( slapi_pblock_get( pb, SLAPI_OPERATION, (void *)&op ) != 0 ) {
3402                 return LDAP_PARAM_ERROR;
3403         }
3404
3405         ml = slapi_int_ldapmods2modifications( mods );
3406         if ( ml == NULL ) {
3407                 return LDAP_OTHER;
3408         }
3409
3410         for ( mp = ml; mp != NULL; mp = mp->sml_next ) {
3411                 rc = slap_bv2ad( &mp->sml_type, &mp->sml_desc, (const char **)errbuf );
3412                 if ( rc != LDAP_SUCCESS ) {
3413                         break;
3414                 }
3415         }
3416
3417         if ( rc == LDAP_SUCCESS ) {
3418                 rc = acl_check_modlist( op, e, ml ) ? LDAP_SUCCESS : LDAP_INSUFFICIENT_ACCESS;
3419         }
3420
3421         /* Careful when freeing the modlist because it has pointers into the mods array. */
3422         for ( ; ml != NULL; ml = mp ) {
3423                 mp = ml->sml_next;
3424
3425                 /* just free the containing array */
3426                 slapi_ch_free( (void **)&ml->sml_values );
3427                 slapi_ch_free( (void **)&ml );
3428         }
3429
3430         return rc;
3431 #else
3432         return LDAP_UNWILLING_TO_PERFORM;
3433 #endif
3434 }
3435
3436 /*
3437  * Synthesise an LDAPMod array from a Modifications list to pass
3438  * to SLAPI. This synthesis is destructive and as such the 
3439  * Modifications list may not be used after calling this 
3440  * function.
3441  * 
3442  * This function must also be called before slap_mods_check().
3443  */
3444 LDAPMod **slapi_int_modifications2ldapmods(Modifications **pmodlist)
3445 {
3446 #ifdef LDAP_SLAPI
3447         Modifications *ml, *modlist;
3448         LDAPMod **mods, *modp;
3449         int i, j;
3450
3451         modlist = *pmodlist;
3452
3453         for( i = 0, ml = modlist; ml != NULL; i++, ml = ml->sml_next )
3454                 ;
3455
3456         mods = (LDAPMod **)ch_malloc( (i + 1) * sizeof(LDAPMod *) );
3457
3458         for( i = 0, ml = modlist; ml != NULL; ml = ml->sml_next ) {
3459                 mods[i] = (LDAPMod *)ch_malloc( sizeof(LDAPMod) );
3460                 modp = mods[i];
3461                 modp->mod_op = ml->sml_op | LDAP_MOD_BVALUES;
3462
3463                 /* Take ownership of original type. */
3464                 modp->mod_type = ml->sml_type.bv_val;
3465                 ml->sml_type.bv_val = NULL;
3466
3467                 if ( ml->sml_values != NULL ) {
3468                         for( j = 0; ml->sml_values[j].bv_val != NULL; j++ )
3469                                 ;
3470                         modp->mod_bvalues = (struct berval **)ch_malloc( (j + 1) *
3471                                 sizeof(struct berval *) );
3472                         for( j = 0; ml->sml_values[j].bv_val != NULL; j++ ) {
3473                                 /* Take ownership of original values. */
3474                                 modp->mod_bvalues[j] = (struct berval *)ch_malloc( sizeof(struct berval) );
3475                                 modp->mod_bvalues[j]->bv_len = ml->sml_values[j].bv_len;
3476                                 modp->mod_bvalues[j]->bv_val = ml->sml_values[j].bv_val;
3477                                 ml->sml_values[j].bv_len = 0;
3478                                 ml->sml_values[j].bv_val = NULL;
3479                         }
3480                         modp->mod_bvalues[j] = NULL;
3481                 } else {
3482                         modp->mod_bvalues = NULL;
3483                 }
3484                 i++;
3485         }
3486
3487         mods[i] = NULL;
3488
3489         slap_mods_free( modlist );
3490         *pmodlist = NULL;
3491
3492         return mods;
3493 #else
3494         return NULL;
3495 #endif
3496 }
3497
3498 /*
3499  * Convert a potentially modified array of LDAPMods back to a
3500  * Modification list. 
3501  * 
3502  * The returned Modification list contains pointers into the
3503  * LDAPMods array; the latter MUST be freed with
3504  * slapi_int_free_ldapmods() (see below).
3505  */
3506 Modifications *slapi_int_ldapmods2modifications (LDAPMod **mods)
3507 {
3508 #ifdef LDAP_SLAPI
3509         Modifications *modlist = NULL, **modtail;
3510         LDAPMod **modp;
3511
3512         if ( mods == NULL ) {
3513                 return NULL;
3514         }
3515
3516         modtail = &modlist;
3517
3518         for( modp = mods; *modp != NULL; modp++ ) {
3519                 Modifications *mod;
3520                 int i;
3521                 char **p;
3522                 struct berval **bvp;
3523
3524                 mod = (Modifications *) ch_malloc( sizeof(Modifications) );
3525                 mod->sml_op = (*modp)->mod_op & (~LDAP_MOD_BVALUES);
3526                 mod->sml_flags = 0;
3527                 mod->sml_type.bv_val = (*modp)->mod_type;
3528                 mod->sml_type.bv_len = strlen( mod->sml_type.bv_val );
3529                 mod->sml_desc = NULL;
3530                 mod->sml_next = NULL;
3531
3532                 if ( (*modp)->mod_op & LDAP_MOD_BVALUES ) {
3533                         for( i = 0, bvp = (*modp)->mod_bvalues; bvp != NULL && *bvp != NULL; bvp++, i++ )
3534                                 ;
3535                 } else {
3536                         for( i = 0, p = (*modp)->mod_values; p != NULL && *p != NULL; p++, i++ )
3537                                 ;
3538                 }
3539
3540                 if ( i == 0 ) {
3541                         mod->sml_values = NULL;
3542                 } else {
3543                         mod->sml_values = (BerVarray) ch_malloc( (i + 1) * sizeof(struct berval) );
3544
3545                         /* NB: This implicitly trusts a plugin to return valid modifications. */
3546                         if ( (*modp)->mod_op & LDAP_MOD_BVALUES ) {
3547                                 for( i = 0, bvp = (*modp)->mod_bvalues; bvp != NULL && *bvp != NULL; bvp++, i++ ) {
3548                                         mod->sml_values[i].bv_val = (*bvp)->bv_val;
3549                                         mod->sml_values[i].bv_len = (*bvp)->bv_len;
3550                                 }
3551                         } else {
3552                                 for( i = 0, p = (*modp)->mod_values; p != NULL && *p != NULL; p++, i++ ) {
3553                                         mod->sml_values[i].bv_val = *p;
3554                                         mod->sml_values[i].bv_len = strlen( *p );
3555                                 }
3556                         }
3557                         mod->sml_values[i].bv_val = NULL;
3558                         mod->sml_values[i].bv_len = 0;
3559                 }
3560                 mod->sml_nvalues = NULL;
3561
3562                 *modtail = mod;
3563                 modtail = &mod->sml_next;
3564         }
3565         
3566         return modlist;
3567 #else
3568         return NULL;
3569 #endif 
3570 }
3571
3572 /*
3573  * This function only frees the parts of the mods array that
3574  * are not shared with the Modification list that was created
3575  * by slapi_int_ldapmods2modifications(). 
3576  *
3577  */
3578 void slapi_int_free_ldapmods (LDAPMod **mods)
3579 {
3580 #ifdef LDAP_SLAPI
3581         int i, j;
3582
3583         if (mods == NULL)
3584                 return;
3585
3586         for ( i = 0; mods[i] != NULL; i++ ) {
3587                 /*
3588                  * Don't free values themselves; they're owned by the
3589                  * Modification list. Do free the containing array.
3590                  */
3591                 if ( mods[i]->mod_op & LDAP_MOD_BVALUES ) {
3592                         for ( j = 0; mods[i]->mod_values != NULL && mods[i]->mod_values[j] != NULL; j++ ) {
3593                                 ch_free( mods[i]->mod_values[j] );
3594                         }
3595                         ch_free( mods[i]->mod_values );
3596                 } else {
3597                         ch_free( mods[i]->mod_values );
3598                 }
3599                 /* Don't free type, for same reasons. */
3600                 ch_free( mods[i] );
3601         }
3602         ch_free( mods );
3603 #endif /* LDAP_SLAPI */
3604 }
3605
3606 /*
3607  * Sun ONE DS 5.x computed attribute support. Computed attributes
3608  * allow for dynamically generated operational attributes, a very
3609  * useful thing indeed.
3610  */
3611
3612 /*
3613  * Write the computed attribute to a BerElement. Complementary 
3614  * functions need to be defined for anything that replaces 
3615  * op->o_callback->sc_sendentry, if you wish to make computed
3616  * attributes available to it.
3617  */
3618 int slapi_int_compute_output_ber(computed_attr_context *c, Slapi_Attr *a, Slapi_Entry *e)
3619 {
3620 #ifdef LDAP_SLAPI
3621         Operation *op = NULL;
3622         BerElement *ber;
3623         AttributeDescription *desc = NULL;
3624         int rc;
3625         int i;
3626
3627         if ( c == NULL ) {
3628                 return 1;
3629         }
3630
3631         if ( a == NULL ) {
3632                 return 1;
3633         }
3634
3635         if ( e == NULL ) {
3636                 return 1;
3637         }
3638
3639         rc = slapi_pblock_get( c->cac_pb, SLAPI_OPERATION, (void *)&op );
3640         if ( rc != 0 || op == NULL ) {
3641                 return rc;
3642         }
3643
3644         ber = (BerElement *)c->cac_private;
3645         desc = a->a_desc;
3646
3647         if ( c->cac_attrs == NULL ) {
3648                 /* All attrs request, skip operational attributes */
3649                 if ( is_at_operational( desc->ad_type ) ) {
3650                         return 0;
3651                 }
3652         } else {
3653                 /* Specific attrs requested */
3654                 if ( is_at_operational( desc->ad_type ) ) {
3655                         if ( !c->cac_opattrs && !ad_inlist( desc, c->cac_attrs ) ) {
3656                                 return 0;
3657                         }
3658                 } else {
3659                         if ( !c->cac_userattrs && !ad_inlist( desc, c->cac_attrs ) ) {
3660                                 return 0;
3661                         }
3662                 }
3663         }
3664
3665         if ( !access_allowed( op, e, desc, NULL, ACL_READ, &c->cac_acl_state) ) {
3666                 slapi_log_error( SLAPI_LOG_ACL, "slapi_int_compute_output_ber",
3667                         "acl: access to attribute %s not allowed\n",
3668                         desc->ad_cname.bv_val );
3669                 return 0;
3670         }
3671
3672         rc = ber_printf( ber, "{O[" /*]}*/ , &desc->ad_cname );
3673         if (rc == -1 ) {
3674                 slapi_log_error( SLAPI_LOG_BER, "slapi_int_compute_output_ber",
3675                         "ber_printf failed\n");
3676                 return 1;
3677         }
3678
3679         if ( !c->cac_attrsonly && a->a_vals != NULL ) {
3680                 for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
3681                         if ( !access_allowed( op, e,
3682                                 desc, &a->a_vals[i], ACL_READ, &c->cac_acl_state)) {
3683                                 slapi_log_error( SLAPI_LOG_ACL, "slapi_int_compute_output_ber",
3684                                         "conn %lu "
3685                                         "acl: access to %s, value %d not allowed\n",
3686                                         op->o_connid, desc->ad_cname.bv_val, i  );
3687                                 continue;
3688                         }
3689         
3690                         if (( rc = ber_printf( ber, "O", &a->a_vals[i] )) == -1 ) {
3691                                 slapi_log_error( SLAPI_LOG_BER, "slapi_int_compute_output_ber",
3692                                         "ber_printf failed\n");
3693                                 return 1;
3694                         }
3695                 }
3696         }
3697
3698         if (( rc = ber_printf( ber, /*{[*/ "]N}" )) == -1 ) {
3699                 slapi_log_error( SLAPI_LOG_BER, "slapi_int_compute_output_ber",
3700                         "ber_printf failed\n" );
3701                 return 1;
3702         }
3703
3704         return 0;
3705 #else
3706         return 1;
3707 #endif
3708 }
3709
3710 /*
3711  * For some reason Sun don't use the normal plugin mechanism
3712  * registration path to register an "evaluator" function (an
3713  * "evaluator" is responsible for adding computed attributes;
3714  * the nomenclature is somewhat confusing).
3715  *
3716  * As such slapi_compute_add_evaluator() registers the 
3717  * function directly.
3718  */
3719 int slapi_compute_add_evaluator(slapi_compute_callback_t function)
3720 {
3721 #ifdef LDAP_SLAPI
3722         Slapi_PBlock *pPlugin = NULL;
3723         int rc;
3724
3725         pPlugin = slapi_pblock_new();
3726         if ( pPlugin == NULL ) {
3727                 rc = LDAP_NO_MEMORY;
3728                 goto done;
3729         }
3730
3731         rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_TYPE, (void *)SLAPI_PLUGIN_OBJECT );
3732         if ( rc != LDAP_SUCCESS ) {
3733                 goto done;
3734         }
3735
3736         rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_COMPUTE_EVALUATOR_FN, (void *)function );
3737         if ( rc != LDAP_SUCCESS ) {
3738                 goto done;
3739         }
3740
3741         rc = slapi_int_register_plugin( NULL, pPlugin );
3742         if ( rc != 0 ) {
3743                 rc = LDAP_OTHER;
3744                 goto done;
3745         }
3746
3747 done:
3748         if ( rc != LDAP_SUCCESS ) {
3749                 if ( pPlugin != NULL ) {
3750                         slapi_pblock_destroy( pPlugin );
3751                 }
3752                 return -1;
3753         }
3754
3755         return 0;
3756 #else
3757         return -1;
3758 #endif /* LDAP_SLAPI */
3759 }
3760
3761 /*
3762  * See notes above regarding slapi_compute_add_evaluator().
3763  */
3764 int slapi_compute_add_search_rewriter(slapi_search_rewrite_callback_t function)
3765 {
3766 #ifdef LDAP_SLAPI
3767         Slapi_PBlock *pPlugin = NULL;
3768         int rc;
3769
3770         pPlugin = slapi_pblock_new();
3771         if ( pPlugin == NULL ) {
3772                 rc = LDAP_NO_MEMORY;
3773                 goto done;
3774         }
3775
3776         rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_TYPE, (void *)SLAPI_PLUGIN_OBJECT );
3777         if ( rc != LDAP_SUCCESS ) {
3778                 goto done;
3779         }
3780
3781         rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, (void *)function );
3782         if ( rc != LDAP_SUCCESS ) {
3783                 goto done;
3784         }
3785
3786         rc = slapi_int_register_plugin( NULL, pPlugin );
3787         if ( rc != 0 ) {
3788                 rc = LDAP_OTHER;
3789                 goto done;
3790         }
3791
3792 done:
3793         if ( rc != LDAP_SUCCESS ) {
3794                 if ( pPlugin != NULL ) {
3795                         slapi_pblock_destroy( pPlugin );
3796                 }
3797                 return -1;
3798         }
3799
3800         return 0;
3801 #else
3802         return -1;
3803 #endif /* LDAP_SLAPI */
3804 }
3805
3806 /*
3807  * Call compute evaluators
3808  */
3809 int compute_evaluator(computed_attr_context *c, char *type, Slapi_Entry *e, slapi_compute_output_t outputfn)
3810 {
3811 #ifdef LDAP_SLAPI
3812         int rc = 0;
3813         slapi_compute_callback_t *pGetPlugin, *tmpPlugin;
3814
3815         rc = slapi_int_get_plugins( NULL, SLAPI_PLUGIN_COMPUTE_EVALUATOR_FN, (SLAPI_FUNC **)&tmpPlugin );
3816         if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
3817                 /* Nothing to do; front-end should ignore. */
3818                 return 0;
3819         }
3820
3821         for ( pGetPlugin = tmpPlugin; *pGetPlugin != NULL; pGetPlugin++ ) {
3822                 /*
3823                  * -1: no attribute matched requested type
3824                  *  0: one attribute matched
3825                  * >0: error happened
3826                  */
3827                 rc = (*pGetPlugin)( c, type, e, outputfn );
3828                 if ( rc > 0 ) {
3829                         break;
3830                 }
3831         }
3832
3833         slapi_ch_free( (void **)&tmpPlugin );
3834
3835         return rc;
3836 #else
3837         return 1;
3838 #endif /* LDAP_SLAPI */
3839 }
3840
3841 int compute_rewrite_search_filter(Slapi_PBlock *pb)
3842 {
3843 #ifdef LDAP_SLAPI
3844         Backend *be;
3845         int rc;
3846
3847         rc = slapi_pblock_get( pb, SLAPI_BACKEND, (void *)&be );
3848         if ( rc != 0 ) {
3849                 return rc;
3850         }
3851
3852         return slapi_int_call_plugins( be, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, pb );
3853 #else
3854         return -1;
3855 #endif /* LDAP_SLAPI */
3856 }
3857
3858 /*
3859  * New API to provide the plugin with access to the search
3860  * pblock. Have informed Sun DS team.
3861  */
3862 int slapi_x_compute_get_pblock(computed_attr_context *c, Slapi_PBlock **pb)
3863 {
3864 #ifdef LDAP_SLAPI
3865         if ( c == NULL )
3866                 return -1;
3867
3868         if ( c->cac_pb == NULL )
3869                 return -1;
3870
3871         *pb = c->cac_pb;
3872
3873         return 0;
3874 #else
3875         return -1;
3876 #endif /* LDAP_SLAPI */
3877 }
3878
3879 Slapi_Mutex *slapi_new_mutex( void )
3880 {
3881 #ifdef LDAP_SLAPI
3882         Slapi_Mutex *m;
3883
3884         m = (Slapi_Mutex *)slapi_ch_malloc( sizeof(*m) );
3885         if ( ldap_pvt_thread_mutex_init( &m->mutex ) != 0 ) {
3886                 slapi_ch_free( (void **)&m );
3887                 return NULL;
3888         }
3889
3890         return m;
3891 #else
3892         return NULL;
3893 #endif
3894 }
3895
3896 void slapi_destroy_mutex( Slapi_Mutex *mutex )
3897 {
3898 #ifdef LDAP_SLAPI
3899         if ( mutex != NULL ) {
3900                 ldap_pvt_thread_mutex_destroy( &mutex->mutex );
3901                 slapi_ch_free( (void **)&mutex);
3902         }
3903 #endif
3904 }
3905
3906 void slapi_lock_mutex( Slapi_Mutex *mutex )
3907 {
3908 #ifdef LDAP_SLAPI
3909         ldap_pvt_thread_mutex_lock( &mutex->mutex );
3910 #endif
3911 }
3912
3913 int slapi_unlock_mutex( Slapi_Mutex *mutex )
3914 {
3915 #ifdef LDAP_SLAPI
3916         return ldap_pvt_thread_mutex_unlock( &mutex->mutex );
3917 #else
3918         return -1;
3919 #endif
3920 }
3921
3922 Slapi_CondVar *slapi_new_condvar( Slapi_Mutex *mutex )
3923 {
3924 #ifdef LDAP_SLAPI
3925         Slapi_CondVar *cv;
3926
3927         if ( mutex == NULL ) {
3928                 return NULL;
3929         }
3930
3931         cv = (Slapi_CondVar *)slapi_ch_malloc( sizeof(*cv) );
3932         if ( ldap_pvt_thread_cond_init( &cv->cond ) != 0 ) {
3933                 slapi_ch_free( (void **)&cv );
3934                 return NULL;
3935         }
3936
3937         /* XXX struct copy */
3938         cv->mutex = mutex->mutex;
3939
3940         return cv;
3941 #else   
3942         return NULL;
3943 #endif
3944 }
3945
3946 void slapi_destroy_condvar( Slapi_CondVar *cvar )
3947 {
3948 #ifdef LDAP_SLAPI
3949         if ( cvar != NULL ) {
3950                 ldap_pvt_thread_cond_destroy( &cvar->cond );
3951                 slapi_ch_free( (void **)&cvar );
3952         }
3953 #endif
3954 }
3955
3956 int slapi_wait_condvar( Slapi_CondVar *cvar, struct timeval *timeout )
3957 {
3958 #ifdef LDAP_SLAPI
3959         if ( cvar == NULL ) {
3960                 return -1;
3961         }
3962
3963         return ldap_pvt_thread_cond_wait( &cvar->cond, &cvar->mutex );
3964 #else
3965         return -1;
3966 #endif
3967 }
3968
3969 int slapi_notify_condvar( Slapi_CondVar *cvar, int notify_all )
3970 {
3971 #ifdef LDAP_SLAPI
3972         if ( cvar == NULL ) {
3973                 return -1;
3974         }
3975
3976         if ( notify_all ) {
3977                 return ldap_pvt_thread_cond_broadcast( &cvar->cond );
3978         }
3979
3980         return ldap_pvt_thread_cond_signal( &cvar->cond );
3981 #else
3982         return -1;
3983 #endif
3984 }
3985
3986 int slapi_int_access_allowed( Operation *op,
3987         Entry *entry,
3988         AttributeDescription *desc,
3989         struct berval *val,
3990         slap_access_t access,
3991         AccessControlState *state )
3992 {
3993 #ifdef LDAP_SLAPI
3994         int rc, slap_access = 0;
3995         slapi_acl_callback_t *pGetPlugin, *tmpPlugin;
3996
3997         if ( op->o_pb == NULL ) {
3998                 /* internal operation */
3999                 return 1;
4000         }
4001
4002         switch ( access ) {
4003         case ACL_WRITE:
4004                 /* FIXME: handle ACL_WADD/ACL_WDEL */
4005                 slap_access |= SLAPI_ACL_ADD | SLAPI_ACL_DELETE | SLAPI_ACL_WRITE;
4006                 break;
4007         case ACL_READ:
4008                 slap_access |= SLAPI_ACL_READ;
4009                 break;
4010         case ACL_SEARCH:
4011                 slap_access |= SLAPI_ACL_SEARCH;
4012                 break;
4013         case ACL_COMPARE:
4014                 slap_access = ACL_COMPARE;
4015                 break;
4016         default:
4017                 break;
4018         }
4019
4020         rc = slapi_int_get_plugins( op->o_bd, SLAPI_PLUGIN_ACL_ALLOW_ACCESS, (SLAPI_FUNC **)&tmpPlugin );
4021         if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
4022                 /* nothing to do; allowed access */
4023                 return 1;
4024         }
4025
4026         slapi_int_pblock_set_operation( op->o_pb, op );
4027
4028         rc = 1; /* default allow policy */
4029
4030         for ( pGetPlugin = tmpPlugin; *pGetPlugin != NULL; pGetPlugin++ ) {
4031                 /*
4032                  * 0    access denied
4033                  * 1    access granted
4034                  */
4035                 rc = (*pGetPlugin)( op->o_pb, entry, desc->ad_cname.bv_val,
4036                                         val, slap_access, (void *)state );
4037                 if ( rc == 0 ) {
4038                         break;
4039                 }
4040         }
4041
4042         slapi_ch_free( (void **)&tmpPlugin );
4043
4044         return rc;
4045 #else
4046         return 1;
4047 #endif /* LDAP_SLAPI */
4048 }
4049
4050 /*
4051  * There is no documentation for this.
4052  */
4053 int slapi_rdn2typeval( char *rdn, char **type, struct berval *bv )
4054 {
4055 #ifdef LDAP_SLAPI
4056         LDAPRDN lrdn;
4057         LDAPAVA *ava;
4058         int rc;
4059         char *p;
4060
4061         *type = NULL;
4062
4063         bv->bv_len = 0;
4064         bv->bv_val = NULL;
4065
4066         rc = ldap_str2rdn( rdn, &lrdn, &p, LDAP_DN_FORMAT_LDAPV3 );
4067         if ( rc != LDAP_SUCCESS ) {
4068                 return -1;
4069         }
4070
4071         if ( lrdn[1] != NULL ) {
4072                 return -1; /* not single valued */
4073         }
4074
4075         ava = lrdn[0];
4076
4077         *type = slapi_ch_strdup( ava->la_attr.bv_val );
4078         ber_dupbv( bv, &ava->la_value );
4079
4080         ldap_rdnfree(lrdn);
4081
4082         return 0;
4083 #else
4084         return -1;
4085 #endif /* LDAP_SLAPI */
4086 }
4087
4088 char *slapi_dn_plus_rdn( const char *dn, const char *rdn )
4089 {
4090 #ifdef LDAP_SLAPI
4091         struct berval new_dn, parent_dn, newrdn;
4092
4093         new_dn.bv_val = NULL;
4094
4095         parent_dn.bv_val = (char *)dn;
4096         parent_dn.bv_len = strlen( dn );
4097
4098         newrdn.bv_val = (char *)rdn;
4099         newrdn.bv_len = strlen( rdn );
4100
4101         build_new_dn( &new_dn, &parent_dn, &newrdn, NULL );
4102
4103         return new_dn.bv_val;
4104 #else
4105         return NULL;
4106 #endif /* LDAP_SLAPI */
4107 }
4108
4109 int slapi_entry_schema_check( Slapi_PBlock *pb, Slapi_Entry *e )
4110 {
4111 #ifdef LDAP_SLAPI
4112         Backend *be;
4113         const char *text;
4114         char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
4115         size_t textlen = sizeof textbuf;
4116         int rc;
4117
4118         if ( slapi_pblock_get( pb, SLAPI_BACKEND, (void **)&be ) != 0 )
4119                 return -1;
4120
4121         rc = entry_schema_check( be, e, NULL, 0,
4122                 &text, textbuf, textlen );
4123
4124         return ( rc == LDAP_SUCCESS ) ? 0 : 1;
4125 #else
4126         return -1;
4127 #endif /* LDAP_SLAPI */
4128 }
4129
4130 int slapi_entry_rdn_values_present( const Slapi_Entry *e )
4131 {
4132 #ifdef LDAP_SLAPI
4133         LDAPDN dn;
4134         int rc;
4135         int i = 0, match = 0;
4136
4137         rc = ldap_bv2dn( &((Entry *)e)->e_name, &dn, LDAP_DN_FORMAT_LDAPV3 );
4138         if ( rc != LDAP_SUCCESS ) {
4139                 return 0;
4140         }
4141
4142         if ( dn[0] != NULL ) {
4143                 LDAPRDN rdn = dn[0];
4144
4145                 for ( i = 0; rdn[i] != NULL; i++ ) {
4146                         LDAPAVA *ava = &rdn[0][i];
4147                         Slapi_Attr *a = NULL;
4148
4149                         if ( slapi_entry_attr_find( (Slapi_Entry *)e, ava->la_attr.bv_val, &a ) == 0 &&
4150                              slapi_attr_value_find( a, &ava->la_value ) == 0 )
4151                                 match++;
4152                 }
4153         }
4154
4155         ldap_dnfree( dn );
4156
4157         return ( i == match );
4158 #else
4159         return 0;
4160 #endif /* LDAP_SLAPI */
4161 }
4162
4163 int slapi_entry_add_rdn_values( Slapi_Entry *e )
4164 {
4165 #ifdef LDAP_SLAPI
4166         LDAPDN dn;
4167         int i, rc;
4168
4169         rc = ldap_bv2dn( &e->e_name, &dn, LDAP_DN_FORMAT_LDAPV3 );
4170         if ( rc != LDAP_SUCCESS ) {
4171                 return rc;
4172         }
4173
4174         if ( dn[0] != NULL ) {
4175                 LDAPRDN rdn = dn[0];
4176                 struct berval *vals[2];
4177
4178                 for ( i = 0; rdn[i] != NULL; i++ ) {
4179                         LDAPAVA *ava = &rdn[0][i];
4180                         Slapi_Attr *a = NULL;
4181
4182                         if ( slapi_entry_attr_find( e, ava->la_attr.bv_val, &a ) == 0 &&
4183                              slapi_attr_value_find( a, &ava->la_value ) == 0 )
4184                                 continue;
4185
4186                         vals[0] = &ava->la_value;
4187                         vals[1] = NULL;
4188
4189                         slapi_entry_attr_merge( e, ava->la_attr.bv_val, vals );
4190                 }
4191         }
4192
4193         ldap_dnfree( dn );
4194
4195         return LDAP_SUCCESS;
4196 #else
4197         return LDAP_OTHER;
4198 #endif /* LDAP_SLAPI */
4199 }
4200
4201 const char *slapi_entry_get_uniqueid( const Slapi_Entry *e )
4202 {
4203 #ifdef LDAP_SLAPI
4204         Attribute *attr;
4205
4206         attr = attr_find( e->e_attrs, slap_schema.si_ad_entryUUID );
4207         if ( attr == NULL ) {
4208                 return NULL;
4209         }
4210
4211         if ( attr->a_vals != NULL && attr->a_vals[0].bv_len != 0 ) {
4212                 return slapi_value_get_string( &attr->a_vals[0] );
4213         }
4214 #endif /* LDAP_SLAPI */
4215
4216         return NULL;
4217 }
4218
4219 void slapi_entry_set_uniqueid( Slapi_Entry *e, char *uniqueid )
4220 {
4221 #ifdef LDAP_SLAPI
4222         struct berval bv;
4223
4224         attr_delete ( &e->e_attrs, slap_schema.si_ad_entryUUID );
4225
4226         bv.bv_val = uniqueid;
4227         bv.bv_len = strlen( uniqueid );
4228         attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, &bv, NULL );
4229 #endif /* LDAP_SLAPI */
4230 }
4231
4232 LDAP *slapi_ldap_init( char *ldaphost, int ldapport, int secure, int shared )
4233 {
4234 #ifdef LDAP_SLAPI
4235         LDAP *ld;
4236         char *url;
4237         size_t size;
4238         int rc;
4239
4240         size = sizeof("ldap:///");
4241         if ( secure )
4242                 size++;
4243         size += strlen( ldaphost );
4244         if ( ldapport != 0 )
4245                 size += 32;
4246
4247         url = slapi_ch_malloc( size );
4248
4249         if ( ldapport != 0 ) {
4250                 sprintf( url, "ldap%s://%s:%d/", ( secure ? "s" : "" ), ldaphost, ldapport );
4251         } else {
4252                 sprintf( url, "ldap%s://%s/", ( secure ? "s" : "" ), ldaphost );
4253         }
4254
4255         rc = ldap_initialize( &ld, url );
4256
4257         slapi_ch_free_string( &url );
4258
4259         return ( rc == LDAP_SUCCESS ) ? ld : NULL;
4260 #else
4261         return NULL;
4262 #endif /* LDAP_SLAPI */
4263 }
4264
4265 void slapi_ldap_unbind( LDAP *ld )
4266 {
4267 #ifdef LDAP_SLAPI
4268         ldap_unbind( ld );
4269 #endif /* LDAP_SLAPI */
4270 }
4271
4272 int slapi_x_backend_get_flags( const Slapi_Backend *be, unsigned long *flags )
4273 {
4274 #ifdef LDAP_SLAPI
4275         if ( be == NULL )
4276                 return LDAP_PARAM_ERROR;
4277
4278         *flags = SLAP_DBFLAGS(be);
4279
4280         return LDAP_SUCCESS;
4281 #else
4282         return -1;
4283 #endif /* LDAP_SLAPI */
4284 }
4285