2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 2002-2012 The OpenLDAP Foundation.
5 * Portions Copyright 1997,2002-2003 IBM Corporation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
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>.
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:
25 #include <ac/string.h>
26 #include <ac/stdarg.h>
28 #include <ac/unistd.h>
39 * server start time (should we use a struct timeval also in slapd?
41 static struct timeval base_time;
42 ldap_pvt_thread_mutex_t slapi_hn_mutex;
43 ldap_pvt_thread_mutex_t slapi_time_mutex;
46 ldap_pvt_thread_mutex_t mutex;
49 struct slapi_condvar {
50 ldap_pvt_thread_cond_t cond;
51 ldap_pvt_thread_mutex_t mutex;
54 static int checkBVString(const struct berval *bv)
58 for ( i = 0; i < bv->bv_len; i++ ) {
59 if ( bv->bv_val[i] == '\0' )
62 if ( bv->bv_val[i] != '\0' )
69 * This function converts an array of pointers to berval objects to
70 * an array of berval objects.
75 struct berval **bvptr,
79 int rc = LDAP_SUCCESS;
83 if ( bvptr == NULL || *bvptr == NULL ) {
87 for ( i = 0; bvptr != NULL && bvptr[i] != NULL; i++ ) {
93 tmpberval = (BerVarray)slapi_ch_malloc( (i + 1)*sizeof(struct berval));
94 if ( tmpberval == NULL ) {
95 return LDAP_NO_MEMORY;
98 for ( i = 0; bvptr[i] != NULL; i++ ) {
99 tmpberval[i].bv_val = bvptr[i]->bv_val;
100 tmpberval[i].bv_len = bvptr[i]->bv_len;
102 tmpberval[i].bv_val = NULL;
103 tmpberval[i].bv_len = 0;
105 if ( rc == LDAP_SUCCESS ) {
117 return str2entry( s );
128 ldap_pvt_thread_mutex_lock( &entry2str_mutex );
129 s = entry2str( e, len );
131 ret = slapi_ch_strdup( s );
132 ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
138 slapi_entry_get_dn( Slapi_Entry *e )
140 return e->e_name.bv_val;
144 slapi_x_entry_get_id( Slapi_Entry *e )
150 slapi_int_dn_pretty( struct berval *in, struct berval *out )
152 Syntax *syntax = slap_schema.si_syn_distinguishedName;
154 assert( syntax != NULL );
156 return (syntax->ssyn_pretty)( syntax, in, out, NULL );
160 slapi_int_dn_normalize( struct berval *in, struct berval *out )
162 MatchingRule *mr = slap_schema.si_mr_distinguishedNameMatch;
163 Syntax *syntax = slap_schema.si_syn_distinguishedName;
165 assert( mr != NULL );
167 return (mr->smr_normalize)( 0, syntax, mr, in, out, NULL );
175 struct berval dn = BER_BVNULL;
178 dn.bv_len = strlen( ldn );
180 slapi_int_dn_pretty( &dn, &e->e_name );
181 slapi_int_dn_normalize( &dn, &e->e_nname );
185 slapi_entry_dup( Slapi_Entry *e )
187 return entry_dup( e );
191 slapi_entry_attr_delete(
195 AttributeDescription *ad = NULL;
198 if ( slap_str2ad( type, &ad, &text ) != LDAP_SUCCESS ) {
199 return 1; /* LDAP_NO_SUCH_ATTRIBUTE */
202 if ( attr_delete( &e->e_attrs, ad ) == LDAP_SUCCESS ) {
203 return 0; /* attribute is deleted */
205 return -1; /* something went wrong */
210 slapi_entry_alloc( void )
212 return (Slapi_Entry *)entry_alloc();
216 slapi_entry_free( Slapi_Entry *e )
223 slapi_entry_attr_merge(
226 struct berval **vals )
228 AttributeDescription *ad = NULL;
233 rc = slap_str2ad( type, &ad, &text );
234 if ( rc != LDAP_SUCCESS ) {
238 rc = bvptr2obj( vals, &bv, NULL );
239 if ( rc != LDAP_SUCCESS ) {
243 rc = attr_merge_normalize( e, ad, bv, NULL );
250 slapi_entry_attr_find(
255 AttributeDescription *ad = NULL;
259 rc = slap_str2ad( type, &ad, &text );
260 if ( rc != LDAP_SUCCESS ) {
264 *attr = attr_find( e->e_attrs, ad );
265 if ( *attr == NULL ) {
273 slapi_entry_attr_get_charptr( const Slapi_Entry *e, const char *type )
275 AttributeDescription *ad = NULL;
280 rc = slap_str2ad( type, &ad, &text );
281 if ( rc != LDAP_SUCCESS ) {
285 attr = attr_find( e->e_attrs, ad );
286 if ( attr == NULL ) {
290 if ( attr->a_vals != NULL && attr->a_vals[0].bv_len != 0 ) {
293 p = slapi_value_get_string( &attr->a_vals[0] );
295 return slapi_ch_strdup( p );
303 slapi_entry_attr_get_int( const Slapi_Entry *e, const char *type )
305 AttributeDescription *ad = NULL;
310 rc = slap_str2ad( type, &ad, &text );
311 if ( rc != LDAP_SUCCESS ) {
315 attr = attr_find( e->e_attrs, ad );
316 if ( attr == NULL ) {
320 return slapi_value_get_int( attr->a_vals );
324 slapi_entry_attr_get_long( const Slapi_Entry *e, const char *type )
326 AttributeDescription *ad = NULL;
331 rc = slap_str2ad( type, &ad, &text );
332 if ( rc != LDAP_SUCCESS ) {
336 attr = attr_find( e->e_attrs, ad );
337 if ( attr == NULL ) {
341 return slapi_value_get_long( attr->a_vals );
345 slapi_entry_attr_get_uint( const Slapi_Entry *e, const char *type )
347 AttributeDescription *ad = NULL;
352 rc = slap_str2ad( type, &ad, &text );
353 if ( rc != LDAP_SUCCESS ) {
357 attr = attr_find( e->e_attrs, ad );
358 if ( attr == NULL ) {
362 return slapi_value_get_uint( attr->a_vals );
366 slapi_entry_attr_get_ulong( const Slapi_Entry *e, const char *type )
368 AttributeDescription *ad = NULL;
373 rc = slap_str2ad( type, &ad, &text );
374 if ( rc != LDAP_SUCCESS ) {
378 attr = attr_find( e->e_attrs, ad );
379 if ( attr == NULL ) {
383 return slapi_value_get_ulong( attr->a_vals );
387 slapi_entry_attr_hasvalue( Slapi_Entry *e, const char *type, const char *value )
390 AttributeDescription *ad = NULL;
395 rc = slap_str2ad( type, &ad, &text );
396 if ( rc != LDAP_SUCCESS ) {
400 attr = attr_find( e->e_attrs, ad );
401 if ( attr == NULL ) {
405 bv.bv_val = (char *)value;
406 bv.bv_len = strlen( value );
408 return ( slapi_attr_value_find( attr, &bv ) != -1 );
412 slapi_entry_attr_set_charptr(Slapi_Entry* e, const char *type, const char *value)
414 AttributeDescription *ad = NULL;
419 rc = slap_str2ad( type, &ad, &text );
420 if ( rc != LDAP_SUCCESS ) {
424 attr_delete ( &e->e_attrs, ad );
425 if ( value != NULL ) {
426 bv.bv_val = (char *)value;
427 bv.bv_len = strlen(value);
428 attr_merge_normalize_one( e, ad, &bv, NULL );
433 slapi_entry_attr_set_int( Slapi_Entry* e, const char *type, int l)
437 snprintf( buf, sizeof( buf ), "%d", l );
438 slapi_entry_attr_set_charptr( e, type, buf );
442 slapi_entry_attr_set_uint( Slapi_Entry* e, const char *type, unsigned int l)
446 snprintf( buf, sizeof( buf ), "%u", l );
447 slapi_entry_attr_set_charptr( e, type, buf );
451 slapi_entry_attr_set_long(Slapi_Entry* e, const char *type, long l)
455 snprintf( buf, sizeof( buf ), "%ld", l );
456 slapi_entry_attr_set_charptr( e, type, buf );
460 slapi_entry_attr_set_ulong(Slapi_Entry* e, const char *type, unsigned long l)
464 snprintf( buf, sizeof( buf ), "%lu", l );
465 slapi_entry_attr_set_charptr( e, type, buf );
469 slapi_is_rootdse( const char *dn )
471 return ( dn == NULL || dn[0] == '\0' );
475 slapi_entry_has_children( const Slapi_Entry *e )
478 Backend *be = select_backend( (struct berval *)&e->e_nname, 0 );
479 int rc, hasSubordinates = 0;
481 if ( be == NULL || be->be_has_subordinates == 0 ) {
485 pb = slapi_pblock_new();
489 slapi_int_connection_init_pb( pb, LDAP_REQ_SEARCH );
491 rc = slapi_pblock_set( pb, SLAPI_TARGET_DN, slapi_entry_get_dn(
493 if ( rc == LDAP_SUCCESS ) {
494 pb->pb_op->o_bd = be;
495 rc = be->be_has_subordinates( pb->pb_op, (Entry *) e,
499 slapi_pblock_destroy( pb );
501 return ( rc == LDAP_SUCCESS && hasSubordinates == LDAP_COMPARE_TRUE );
505 * Return approximate size of the entry rounded to the nearest
506 * 1K. Only the size of the attribute values are counted in the
507 * Sun implementation.
509 * http://docs.sun.com/source/816-6701-10/funcref.html#1017388
511 size_t slapi_entry_size(Slapi_Entry *e)
517 for ( size = 0, a = e->e_attrs; a != NULL; a = a->a_next ) {
518 for ( i = 0; a->a_vals[i].bv_val != NULL; i++ ) {
519 size += a->a_vals[i].bv_len + 1;
524 size -= (size % 1024);
530 * Add values to entry.
533 * LDAP_SUCCESS Values added to entry
534 * LDAP_TYPE_OR_VALUE_EXISTS One or more values exist in entry already
535 * LDAP_CONSTRAINT_VIOLATION Any other error (odd, but it's the spec)
538 slapi_entry_add_values( Slapi_Entry *e, const char *type, struct berval **vals )
543 char textbuf[SLAP_TEXT_BUFLEN];
545 mod.sm_op = LDAP_MOD_ADD;
548 mod.sm_type.bv_val = (char *)type;
549 mod.sm_type.bv_len = strlen( type );
551 rc = slap_str2ad( type, &mod.sm_desc, &text );
552 if ( rc != LDAP_SUCCESS ) {
556 if ( vals == NULL ) {
557 /* Apparently vals can be NULL
558 * FIXME: sm_values = NULL ? */
559 mod.sm_values = (BerVarray)ch_malloc( sizeof(struct berval) );
560 mod.sm_values->bv_val = NULL;
564 rc = bvptr2obj( vals, &mod.sm_values, &mod.sm_numvals );
565 if ( rc != LDAP_SUCCESS ) {
566 return LDAP_CONSTRAINT_VIOLATION;
569 mod.sm_nvalues = NULL;
571 rc = modify_add_values( e, &mod, 0, &text, textbuf, sizeof(textbuf) );
573 slapi_ch_free( (void **)&mod.sm_values );
575 return (rc == LDAP_SUCCESS) ? LDAP_SUCCESS : LDAP_CONSTRAINT_VIOLATION;
579 slapi_entry_add_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
581 return slapi_entry_add_values( e, type, vals );
585 slapi_entry_add_valueset(Slapi_Entry *e, const char *type, Slapi_ValueSet *vs)
587 AttributeDescription *ad = NULL;
591 rc = slap_str2ad( type, &ad, &text );
592 if ( rc != LDAP_SUCCESS ) {
596 return attr_merge_normalize( e, ad, *vs, NULL );
600 slapi_entry_delete_values( Slapi_Entry *e, const char *type, struct berval **vals )
605 char textbuf[SLAP_TEXT_BUFLEN];
607 mod.sm_op = LDAP_MOD_DELETE;
610 mod.sm_type.bv_val = (char *)type;
611 mod.sm_type.bv_len = strlen( type );
613 if ( vals == NULL ) {
614 /* If vals is NULL, this is a NOOP. */
618 rc = slap_str2ad( type, &mod.sm_desc, &text );
619 if ( rc != LDAP_SUCCESS ) {
623 if ( vals[0] == NULL ) {
624 /* SLAPI doco says LDApb_opERATIONS_ERROR but LDAP_OTHER is better */
625 return attr_delete( &e->e_attrs, mod.sm_desc ) ? LDAP_OTHER : LDAP_SUCCESS;
628 rc = bvptr2obj( vals, &mod.sm_values, &mod.sm_numvals );
629 if ( rc != LDAP_SUCCESS ) {
630 return LDAP_CONSTRAINT_VIOLATION;
632 mod.sm_nvalues = NULL;
634 rc = modify_delete_values( e, &mod, 0, &text, textbuf, sizeof(textbuf) );
636 slapi_ch_free( (void **)&mod.sm_values );
642 slapi_entry_delete_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
644 return slapi_entry_delete_values( e, type, vals );
648 slapi_entry_merge_values_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
650 return slapi_entry_attr_merge( e, (char *)type, vals );
654 slapi_entry_add_value(Slapi_Entry *e, const char *type, const Slapi_Value *value)
656 AttributeDescription *ad = NULL;
660 rc = slap_str2ad( type, &ad, &text );
661 if ( rc != LDAP_SUCCESS ) {
665 rc = attr_merge_normalize_one( e, ad, (Slapi_Value *)value, NULL );
666 if ( rc != LDAP_SUCCESS ) {
674 slapi_entry_add_string(Slapi_Entry *e, const char *type, const char *value)
678 val.bv_val = (char *)value;
679 val.bv_len = strlen( value );
681 return slapi_entry_add_value( e, type, &val );
685 slapi_entry_delete_string(Slapi_Entry *e, const char *type, const char *value)
687 Slapi_Value *vals[2];
690 val.bv_val = (char *)value;
691 val.bv_len = strlen( value );
695 return slapi_entry_delete_values_sv( e, type, vals );
699 slapi_entry_attr_merge_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
701 return slapi_entry_attr_merge( e, (char *)type, vals );
705 slapi_entry_first_attr( const Slapi_Entry *e, Slapi_Attr **attr )
713 return ( *attr != NULL ) ? 0 : -1;
717 slapi_entry_next_attr( const Slapi_Entry *e, Slapi_Attr *prevattr, Slapi_Attr **attr )
723 if ( prevattr == NULL ) {
727 *attr = prevattr->a_next;
729 return ( *attr != NULL ) ? 0 : -1;
733 slapi_entry_attr_replace_sv( Slapi_Entry *e, const char *type, Slapi_Value **vals )
735 AttributeDescription *ad = NULL;
740 rc = slap_str2ad( type, &ad, &text );
741 if ( rc != LDAP_SUCCESS ) {
745 attr_delete( &e->e_attrs, ad );
747 rc = bvptr2obj( vals, &bv, NULL );
748 if ( rc != LDAP_SUCCESS ) {
752 rc = attr_merge_normalize( e, ad, bv, NULL );
753 slapi_ch_free( (void **)&bv );
754 if ( rc != LDAP_SUCCESS ) {
762 * FIXME -- The caller must free the allocated memory.
763 * In Netscape they do not have to.
766 slapi_attr_get_values(
768 struct berval ***vals )
773 if ( attr == NULL ) {
777 for ( i = 0; attr->a_vals[i].bv_val != NULL; i++ ) {
781 bv = (struct berval **)ch_malloc( (i + 1) * sizeof(struct berval *) );
782 for ( j = 0; j < i; j++ ) {
783 bv[j] = ber_dupbv( NULL, &attr->a_vals[j] );
787 *vals = (struct berval **)bv;
793 slapi_dn_normalize( char *dn )
798 assert( dn != NULL );
801 bdn.bv_len = strlen( dn );
803 if ( slapi_int_dn_pretty( &bdn, &pdn ) != LDAP_SUCCESS ) {
811 slapi_dn_normalize_case( char *dn )
816 assert( dn != NULL );
819 bdn.bv_len = strlen( dn );
821 if ( slapi_int_dn_normalize( &bdn, &ndn ) != LDAP_SUCCESS ) {
833 struct berval bdn, ndn;
834 struct berval bsuffix, nsuffix;
837 assert( dn != NULL );
838 assert( suffix != NULL );
841 bdn.bv_len = strlen( dn );
843 bsuffix.bv_val = suffix;
844 bsuffix.bv_len = strlen( suffix );
846 if ( dnNormalize( 0, NULL, NULL, &bdn, &ndn, NULL ) != LDAP_SUCCESS ) {
850 if ( dnNormalize( 0, NULL, NULL, &bsuffix, &nsuffix, NULL )
853 slapi_ch_free( (void **)&ndn.bv_val );
857 rc = dnIsSuffix( &ndn, &nsuffix );
859 slapi_ch_free( (void **)&ndn.bv_val );
860 slapi_ch_free( (void **)&nsuffix.bv_val );
867 const char *parentdn,
868 const char *childdn )
870 struct berval assertedParentDN, normalizedAssertedParentDN;
871 struct berval childDN, normalizedChildDN;
872 struct berval normalizedParentDN;
875 assert( parentdn != NULL );
876 assert( childdn != NULL );
878 assertedParentDN.bv_val = (char *)parentdn;
879 assertedParentDN.bv_len = strlen( parentdn );
881 if ( dnNormalize( 0, NULL, NULL, &assertedParentDN,
882 &normalizedAssertedParentDN, NULL ) != LDAP_SUCCESS )
887 childDN.bv_val = (char *)childdn;
888 childDN.bv_len = strlen( childdn );
890 if ( dnNormalize( 0, NULL, NULL, &childDN,
891 &normalizedChildDN, NULL ) != LDAP_SUCCESS )
893 slapi_ch_free( (void **)&normalizedAssertedParentDN.bv_val );
897 dnParent( &normalizedChildDN, &normalizedParentDN );
899 if ( dnMatch( &match, 0, slap_schema.si_syn_distinguishedName, NULL,
900 &normalizedParentDN, (void *)&normalizedAssertedParentDN ) != LDAP_SUCCESS )
905 slapi_ch_free( (void **)&normalizedAssertedParentDN.bv_val );
906 slapi_ch_free( (void **)&normalizedChildDN.bv_val );
908 return ( match == 0 );
912 * Returns DN of the parent entry, or NULL if the DN is
913 * an empty string or NULL, or has no parent.
916 slapi_dn_parent( const char *_dn )
918 struct berval dn, prettyDN;
919 struct berval parentDN;
926 dn.bv_val = (char *)_dn;
927 dn.bv_len = strlen( _dn );
929 if ( dn.bv_len == 0 ) {
933 if ( dnPretty( NULL, &dn, &prettyDN, NULL ) != LDAP_SUCCESS ) {
937 dnParent( &prettyDN, &parentDN ); /* in-place */
939 if ( parentDN.bv_len == 0 ) {
940 slapi_ch_free_string( &prettyDN.bv_val );
944 ret = slapi_ch_strdup( parentDN.bv_val );
945 slapi_ch_free_string( &prettyDN.bv_val );
950 int slapi_dn_isbesuffix( Slapi_PBlock *pb, char *ldn )
955 if ( slapi_is_rootdse( ldn ) ) {
959 /* according to spec should already be normalized */
960 ndn.bv_len = strlen( ldn );
963 be = select_backend( &pb->pb_op->o_req_ndn, 0 );
968 return be_issuffix( be, &ndn );
972 * Returns DN of the parent entry; or NULL if the DN is
973 * an empty string, if the DN has no parent, or if the
974 * DN is the suffix of the backend database
976 char *slapi_dn_beparent( Slapi_PBlock *pb, const char *ldn )
979 struct berval dn, prettyDN;
980 struct berval normalizedDN, parentDN;
987 PBLOCK_ASSERT_OP( pb, 0 );
989 if ( slapi_is_rootdse( ldn ) ) {
993 dn.bv_val = (char *)ldn;
994 dn.bv_len = strlen( ldn );
996 if ( dnPrettyNormal( NULL, &dn, &prettyDN, &normalizedDN, NULL ) != LDAP_SUCCESS ) {
1000 be = select_backend( &pb->pb_op->o_req_ndn, 0 );
1002 if ( be == NULL || be_issuffix( be, &normalizedDN ) == 0 ) {
1003 dnParent( &prettyDN, &parentDN );
1005 if ( parentDN.bv_len != 0 )
1006 parent = slapi_ch_strdup( parentDN.bv_val );
1009 slapi_ch_free_string( &prettyDN.bv_val );
1010 slapi_ch_free_string( &normalizedDN.bv_val );
1016 slapi_dn_ignore_case( char *dn )
1018 return slapi_dn_normalize_case( dn );
1022 slapi_ch_malloc( unsigned long size )
1024 return ch_malloc( size );
1028 slapi_ch_free( void **ptr )
1030 if ( ptr == NULL || *ptr == NULL )
1037 slapi_ch_free_string( char **ptr )
1039 slapi_ch_free( (void **)ptr );
1043 slapi_ch_array_free( char **arrayp )
1047 if ( arrayp != NULL ) {
1048 for ( p = arrayp; *p != NULL; p++ ) {
1049 slapi_ch_free( (void **)p );
1051 slapi_ch_free( (void **)&arrayp );
1056 slapi_ch_bvdup(const struct berval *v)
1058 return ber_dupbv(NULL, (struct berval *)v);
1062 slapi_ch_bvecdup(const struct berval **v)
1071 for ( i = 0; v[i] != NULL; i++ )
1074 rv = (struct berval **) slapi_ch_malloc( (i + 1) * sizeof(struct berval *) );
1076 for ( i = 0; v[i] != NULL; i++ ) {
1077 rv[i] = slapi_ch_bvdup( v[i] );
1086 unsigned long nelem,
1087 unsigned long size )
1089 return ch_calloc( nelem, size );
1095 unsigned long size )
1097 return ch_realloc( block, size );
1101 slapi_ch_strdup( const char *s )
1103 return ch_strdup( s );
1107 slapi_ch_stlen( const char *s )
1113 slapi_control_present(
1114 LDAPControl **controls,
1116 struct berval **val,
1130 for ( i = 0; controls != NULL && controls[i] != NULL; i++ ) {
1131 if ( strcmp( controls[i]->ldctl_oid, oid ) != 0 ) {
1136 if ( controls[i]->ldctl_value.bv_len != 0 ) {
1138 *val = &controls[i]->ldctl_value;
1143 *iscritical = controls[i]->ldctl_iscritical;
1153 slapControlMask2SlapiControlOp(slap_mask_t slap_mask,
1154 unsigned long *slapi_mask)
1156 *slapi_mask = SLAPI_OPERATION_NONE;
1158 if ( slap_mask & SLAP_CTRL_ABANDON )
1159 *slapi_mask |= SLAPI_OPERATION_ABANDON;
1161 if ( slap_mask & SLAP_CTRL_ADD )
1162 *slapi_mask |= SLAPI_OPERATION_ADD;
1164 if ( slap_mask & SLAP_CTRL_BIND )
1165 *slapi_mask |= SLAPI_OPERATION_BIND;
1167 if ( slap_mask & SLAP_CTRL_COMPARE )
1168 *slapi_mask |= SLAPI_OPERATION_COMPARE;
1170 if ( slap_mask & SLAP_CTRL_DELETE )
1171 *slapi_mask |= SLAPI_OPERATION_DELETE;
1173 if ( slap_mask & SLAP_CTRL_MODIFY )
1174 *slapi_mask |= SLAPI_OPERATION_MODIFY;
1176 if ( slap_mask & SLAP_CTRL_RENAME )
1177 *slapi_mask |= SLAPI_OPERATION_MODDN;
1179 if ( slap_mask & SLAP_CTRL_SEARCH )
1180 *slapi_mask |= SLAPI_OPERATION_SEARCH;
1182 if ( slap_mask & SLAP_CTRL_UNBIND )
1183 *slapi_mask |= SLAPI_OPERATION_UNBIND;
1187 slapiControlOp2SlapControlMask(unsigned long slapi_mask,
1188 slap_mask_t *slap_mask)
1192 if ( slapi_mask & SLAPI_OPERATION_BIND )
1193 *slap_mask |= SLAP_CTRL_BIND;
1195 if ( slapi_mask & SLAPI_OPERATION_UNBIND )
1196 *slap_mask |= SLAP_CTRL_UNBIND;
1198 if ( slapi_mask & SLAPI_OPERATION_SEARCH )
1199 *slap_mask |= SLAP_CTRL_SEARCH;
1201 if ( slapi_mask & SLAPI_OPERATION_MODIFY )
1202 *slap_mask |= SLAP_CTRL_MODIFY;
1204 if ( slapi_mask & SLAPI_OPERATION_ADD )
1205 *slap_mask |= SLAP_CTRL_ADD;
1207 if ( slapi_mask & SLAPI_OPERATION_DELETE )
1208 *slap_mask |= SLAP_CTRL_DELETE;
1210 if ( slapi_mask & SLAPI_OPERATION_MODDN )
1211 *slap_mask |= SLAP_CTRL_RENAME;
1213 if ( slapi_mask & SLAPI_OPERATION_COMPARE )
1214 *slap_mask |= SLAP_CTRL_COMPARE;
1216 if ( slapi_mask & SLAPI_OPERATION_ABANDON )
1217 *slap_mask |= SLAP_CTRL_ABANDON;
1219 *slap_mask |= SLAP_CTRL_GLOBAL;
1223 slapi_int_parse_control(
1228 /* Plugins must deal with controls themselves. */
1230 return LDAP_SUCCESS;
1234 slapi_register_supported_control(
1236 unsigned long controlops )
1238 slap_mask_t controlmask;
1240 slapiControlOp2SlapControlMask( controlops, &controlmask );
1242 register_supported_control( controloid, controlmask, NULL, slapi_int_parse_control, NULL );
1246 slapi_get_supported_controls(
1248 unsigned long **ctrlopsp )
1252 rc = get_supported_controls( ctrloidsp, (slap_mask_t **)ctrlopsp );
1253 if ( rc != LDAP_SUCCESS ) {
1257 for ( i = 0; (*ctrloidsp)[i] != NULL; i++ ) {
1258 /* In place, naughty. */
1259 slapControlMask2SlapiControlOp( (*ctrlopsp)[i], &((*ctrlopsp)[i]) );
1262 return LDAP_SUCCESS;
1266 slapi_dup_control( LDAPControl *ctrl )
1270 ret = (LDAPControl *)slapi_ch_malloc( sizeof(*ret) );
1271 ret->ldctl_oid = slapi_ch_strdup( ctrl->ldctl_oid );
1272 ber_dupbv( &ret->ldctl_value, &ctrl->ldctl_value );
1273 ret->ldctl_iscritical = ctrl->ldctl_iscritical;
1279 slapi_register_supported_saslmechanism( char *mechanism )
1281 /* FIXME -- can not add saslmechanism to OpenLDAP dynamically */
1282 slapi_log_error( SLAPI_LOG_FATAL, "slapi_register_supported_saslmechanism",
1283 "OpenLDAP does not support dynamic registration of SASL mechanisms\n" );
1287 slapi_get_supported_saslmechanisms( void )
1289 /* FIXME -- can not get the saslmechanism without a connection. */
1290 slapi_log_error( SLAPI_LOG_FATAL, "slapi_get_supported_saslmechanisms",
1291 "can not get the SASL mechanism list "
1292 "without a connection\n" );
1297 slapi_get_supported_extended_ops( void )
1300 char **ppExtOpOID = NULL;
1303 for ( i = 0; get_supported_extop( i ) != NULL; i++ ) {
1307 for ( j = 0; slapi_int_get_supported_extop( j ) != NULL; j++ ) {
1312 if ( numExtOps == 0 ) {
1316 ppExtOpOID = (char **)slapi_ch_malloc( (numExtOps + 1) * sizeof(char *) );
1317 for ( k = 0; k < i; k++ ) {
1320 bv = get_supported_extop( k );
1321 assert( bv != NULL );
1323 ppExtOpOID[ k ] = bv->bv_val;
1326 for ( ; k < j; k++ ) {
1329 bv = slapi_int_get_supported_extop( k );
1330 assert( bv != NULL );
1332 ppExtOpOID[ i + k ] = bv->bv_val;
1334 ppExtOpOID[ i + k ] = NULL;
1340 slapi_send_ldap_result(
1346 struct berval **urls )
1350 PBLOCK_ASSERT_OP( pb, 0 );
1355 rs->sr_matched = matched;
1359 if ( err == LDAP_SASL_BIND_IN_PROGRESS ) {
1360 send_ldap_sasl( pb->pb_op, rs );
1361 } else if ( rs->sr_rspoid != NULL ) {
1362 send_ldap_extended( pb->pb_op, rs );
1364 if ( pb->pb_op->o_tag == LDAP_REQ_SEARCH )
1365 rs->sr_nentries = nentries;
1367 bvptr2obj( urls, &rs->sr_ref, NULL );
1369 send_ldap_result( pb->pb_op, rs );
1372 slapi_ch_free( (void **)&rs->sr_ref );
1377 slapi_send_ldap_search_entry(
1380 LDAPControl **ectrls,
1384 SlapReply rs = { REP_SEARCH };
1386 AttributeName *an = NULL;
1390 assert( pb->pb_op != NULL );
1392 if ( attrs != NULL ) {
1393 for ( i = 0; attrs[ i ] != NULL; i++ ) {
1399 an = (AttributeName *) slapi_ch_calloc( i + 1, sizeof(AttributeName) );
1400 for ( i = 0; attrs[i] != NULL; i++ ) {
1401 an[j].an_name.bv_val = attrs[i];
1402 an[j].an_name.bv_len = strlen( attrs[i] );
1403 an[j].an_desc = NULL;
1404 if ( slap_bv2ad( &an[j].an_name, &an[j].an_desc, &text ) == LDAP_SUCCESS) {
1408 an[j].an_name.bv_len = 0;
1409 an[j].an_name.bv_val = NULL;
1412 rs.sr_err = LDAP_SUCCESS;
1413 rs.sr_matched = NULL;
1416 rs.sr_ctrls = ectrls;
1418 rs.sr_operational_attrs = NULL;
1423 rc = send_search_entry( pb->pb_op, &rs );
1425 slapi_ch_free( (void **)&an );
1431 slapi_send_ldap_search_reference(
1434 struct berval **references,
1435 LDAPControl **ectrls,
1436 struct berval **v2refs
1439 SlapReply rs = { REP_SEARCHREF };
1442 rs.sr_err = LDAP_SUCCESS;
1443 rs.sr_matched = NULL;
1446 rc = bvptr2obj( references, &rs.sr_ref, NULL );
1447 if ( rc != LDAP_SUCCESS ) {
1451 rs.sr_ctrls = ectrls;
1453 rs.sr_operational_attrs = NULL;
1456 if ( v2refs != NULL ) {
1457 rc = bvptr2obj( v2refs, &rs.sr_v2ref, NULL );
1458 if ( rc != LDAP_SUCCESS ) {
1459 slapi_ch_free( (void **)&rs.sr_ref );
1466 rc = send_search_reference( pb->pb_op, &rs );
1468 slapi_ch_free( (void **)&rs.sr_ref );
1469 slapi_ch_free( (void **)&rs.sr_v2ref );
1475 slapi_str2filter( char *str )
1477 return str2filter( str );
1489 slapi_filter_dup( Slapi_Filter *filter )
1491 return filter_dup( filter, NULL );
1495 slapi_filter_get_choice( Slapi_Filter *f )
1509 slapi_filter_get_ava(
1512 struct berval **bval )
1515 int rc = LDAP_SUCCESS;
1517 assert( type != NULL );
1518 assert( bval != NULL );
1523 ftype = f->f_choice;
1524 if ( ftype == LDAP_FILTER_EQUALITY
1525 || ftype == LDAP_FILTER_GE
1526 || ftype == LDAP_FILTER_LE
1527 || ftype == LDAP_FILTER_APPROX ) {
1529 * According to the SLAPI Reference Manual these are
1532 *type = f->f_un.f_un_ava->aa_desc->ad_cname.bv_val;
1533 *bval = &f->f_un.f_un_ava->aa_value;
1534 } else { /* filter type not supported */
1542 slapi_filter_list_first( Slapi_Filter *f )
1550 ftype = f->f_choice;
1551 if ( ftype == LDAP_FILTER_AND
1552 || ftype == LDAP_FILTER_OR
1553 || ftype == LDAP_FILTER_NOT ) {
1554 return (Slapi_Filter *)f->f_list;
1561 slapi_filter_list_next(
1563 Slapi_Filter *fprev )
1571 ftype = f->f_choice;
1572 if ( ftype == LDAP_FILTER_AND
1573 || ftype == LDAP_FILTER_OR
1574 || ftype == LDAP_FILTER_NOT )
1576 return fprev->f_next;
1583 slapi_filter_get_attribute_type( Slapi_Filter *f, char **type )
1589 switch ( f->f_choice ) {
1590 case LDAP_FILTER_GE:
1591 case LDAP_FILTER_LE:
1592 case LDAP_FILTER_EQUALITY:
1593 case LDAP_FILTER_APPROX:
1594 *type = f->f_av_desc->ad_cname.bv_val;
1596 case LDAP_FILTER_SUBSTRINGS:
1597 *type = f->f_sub_desc->ad_cname.bv_val;
1599 case LDAP_FILTER_PRESENT:
1600 *type = f->f_desc->ad_cname.bv_val;
1602 case LDAP_FILTER_EXT:
1603 *type = f->f_mr_desc->ad_cname.bv_val;
1606 /* Complex filters need not apply. */
1615 slapi_x_filter_set_attribute_type( Slapi_Filter *f, const char *type )
1617 AttributeDescription **adp, *ad = NULL;
1625 switch ( f->f_choice ) {
1626 case LDAP_FILTER_GE:
1627 case LDAP_FILTER_LE:
1628 case LDAP_FILTER_EQUALITY:
1629 case LDAP_FILTER_APPROX:
1630 adp = &f->f_av_desc;
1632 case LDAP_FILTER_SUBSTRINGS:
1633 adp = &f->f_sub_desc;
1635 case LDAP_FILTER_PRESENT:
1638 case LDAP_FILTER_EXT:
1639 adp = &f->f_mr_desc;
1642 /* Complex filters need not apply. */
1646 rc = slap_str2ad( type, &ad, &text );
1647 if ( rc == LDAP_SUCCESS )
1650 return ( rc == LDAP_SUCCESS ) ? 0 : -1;
1654 slapi_filter_get_subfilt( Slapi_Filter *f, char **type, char **initial,
1655 char ***any, char **final )
1659 if ( f->f_choice != LDAP_FILTER_SUBSTRINGS ) {
1664 * The caller shouldn't free but we can't return an
1665 * array of char *s from an array of bervals without
1666 * allocating memory, so we may as well be consistent.
1669 *type = f->f_sub_desc->ad_cname.bv_val;
1670 *initial = f->f_sub_initial.bv_val ? slapi_ch_strdup(f->f_sub_initial.bv_val) : NULL;
1671 if ( f->f_sub_any != NULL ) {
1672 for ( i = 0; f->f_sub_any[i].bv_val != NULL; i++ )
1674 *any = (char **)slapi_ch_malloc( (i + 1) * sizeof(char *) );
1675 for ( i = 0; f->f_sub_any[i].bv_val != NULL; i++ ) {
1676 (*any)[i] = slapi_ch_strdup(f->f_sub_any[i].bv_val);
1682 *final = f->f_sub_final.bv_val ? slapi_ch_strdup(f->f_sub_final.bv_val) : NULL;
1688 slapi_filter_join( int ftype, Slapi_Filter *f1, Slapi_Filter *f2 )
1690 Slapi_Filter *f = NULL;
1692 if ( ftype == LDAP_FILTER_AND ||
1693 ftype == LDAP_FILTER_OR ||
1694 ftype == LDAP_FILTER_NOT )
1696 f = (Slapi_Filter *)slapi_ch_malloc( sizeof(*f) );
1697 f->f_choice = ftype;
1699 f->f_list->f_next = f2;
1707 slapi_x_filter_append( int ftype,
1708 Slapi_Filter **pContainingFilter, /* NULL on first call */
1709 Slapi_Filter **pNextFilter,
1710 Slapi_Filter *filterToAppend )
1712 if ( ftype == LDAP_FILTER_AND ||
1713 ftype == LDAP_FILTER_OR ||
1714 ftype == LDAP_FILTER_NOT )
1716 if ( *pContainingFilter == NULL ) {
1717 *pContainingFilter = (Slapi_Filter *)slapi_ch_malloc( sizeof(Slapi_Filter) );
1718 (*pContainingFilter)->f_choice = ftype;
1719 (*pContainingFilter)->f_list = filterToAppend;
1720 (*pContainingFilter)->f_next = NULL;
1722 if ( (*pContainingFilter)->f_choice != ftype ) {
1726 (*pNextFilter)->f_next = filterToAppend;
1728 *pNextFilter = filterToAppend;
1736 slapi_filter_test( Slapi_PBlock *pb, Slapi_Entry *e, Slapi_Filter *f,
1743 /* spec says return zero if no filter. */
1747 if ( verify_access ) {
1750 return LDAP_PARAM_ERROR;
1756 * According to acl.c it is safe to call test_filter() with
1759 rc = test_filter( op, e, f );
1761 case LDAP_COMPARE_TRUE:
1764 case LDAP_COMPARE_FALSE:
1766 case SLAPD_COMPARE_UNDEFINED:
1769 case LDAP_PROTOCOL_ERROR:
1770 /* filter type unknown: spec says return -1 */
1779 slapi_filter_test_simple( Slapi_Entry *e, Slapi_Filter *f)
1781 return slapi_filter_test( NULL, e, f, 0 );
1785 slapi_filter_apply( Slapi_Filter *f, FILTER_APPLY_FN fn, void *arg, int *error_code )
1787 switch ( f->f_choice ) {
1788 case LDAP_FILTER_AND:
1789 case LDAP_FILTER_NOT:
1790 case LDAP_FILTER_OR: {
1794 * FIXME: altering f; should we use a temporary?
1796 for ( f = f->f_list; f != NULL; f = f->f_next ) {
1797 rc = slapi_filter_apply( f, fn, arg, error_code );
1801 if ( *error_code == SLAPI_FILTER_SCAN_NOMORE ) {
1807 case LDAP_FILTER_EQUALITY:
1808 case LDAP_FILTER_SUBSTRINGS:
1809 case LDAP_FILTER_GE:
1810 case LDAP_FILTER_LE:
1811 case LDAP_FILTER_PRESENT:
1812 case LDAP_FILTER_APPROX:
1813 case LDAP_FILTER_EXT:
1814 *error_code = fn( f, arg );
1817 *error_code = SLAPI_FILTER_UNKNOWN_FILTER_TYPE;
1820 if ( *error_code == SLAPI_FILTER_SCAN_NOMORE ||
1821 *error_code == SLAPI_FILTER_SCAN_CONTINUE ) {
1830 struct berval **vals,
1835 if( ( vals == NULL ) || ( v == NULL ) )
1838 for ( i = 0; vals[i] != NULL; i++ ) {
1839 if ( !lutil_passwd( vals[i], v, NULL, NULL ) )
1846 /* Get connected client IP address.
1848 * The user must free the returned client IP after its use.
1849 * Compatible with IBM Tivoli call.
1852 * * LDAP_PARAM_ERROR - If the pb parameter is null.
1853 * * LDAP_OPERATIONS_ERROR - If the API encounters error processing the request.
1854 * * LDAP_NO_MEMORY - Failed to allocate required memory.
1857 slapi_get_client_ip(Slapi_PBlock *pb, char **clientIP)
1861 if(pb == NULL || pb->pb_conn == NULL) return(LDAP_PARAM_ERROR);
1862 if((s = (char *) slapi_ch_malloc(pb->pb_conn->c_peer_name.bv_len + 1)) == NULL) {
1863 return(LDAP_NO_MEMORY);
1866 memcpy(s, pb->pb_conn->c_peer_name.bv_val, pb->pb_conn->c_peer_name.bv_len);
1868 s[pb->pb_conn->c_peer_name.bv_len] = 0;
1872 return(LDAP_SUCCESS);
1875 /* Free previously allocated client IP address. */
1877 slapi_free_client_ip(char **clientIP)
1879 slapi_ch_free((void **) clientIP);
1882 #define MAX_HOSTNAME 512
1885 slapi_get_hostname( void )
1888 static int been_here = 0;
1889 static char *static_hn = NULL;
1891 ldap_pvt_thread_mutex_lock( &slapi_hn_mutex );
1893 static_hn = (char *)slapi_ch_malloc( MAX_HOSTNAME );
1894 if ( static_hn == NULL) {
1895 slapi_log_error( SLAPI_LOG_FATAL, "slapi_get_hostname",
1896 "Cannot allocate memory for hostname\n" );
1898 ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
1903 if ( gethostname( static_hn, MAX_HOSTNAME ) != 0 ) {
1904 slapi_log_error( SLAPI_LOG_FATAL,
1906 "can't get hostname\n" );
1907 slapi_ch_free( (void **)&static_hn );
1909 ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
1918 ldap_pvt_thread_mutex_unlock( &slapi_hn_mutex );
1920 hn = ch_strdup( static_hn );
1926 * FIXME: this should go in an appropriate header ...
1928 extern int slapi_int_log_error( int level, char *subsystem, char *fmt, va_list arglist );
1937 int rc = LDAP_SUCCESS;
1940 va_start( arglist, fmt );
1941 rc = slapi_int_log_error( severity, subsystem, fmt, arglist );
1949 slapi_timer_current_time( void )
1951 static int first_time = 1;
1952 #if !defined (_WIN32)
1956 ldap_pvt_thread_mutex_lock( &slapi_time_mutex );
1959 gettimeofday( &base_time, NULL );
1961 gettimeofday( &now, NULL );
1962 ret = ( now.tv_sec - base_time.tv_sec ) * 1000000 +
1963 (now.tv_usec - base_time.tv_usec);
1964 ldap_pvt_thread_mutex_unlock( &slapi_time_mutex );
1970 return (slap_get_time() - starttime) * 1000000;
1977 performance_counter_present = QueryPerformanceCounter( &base_time );
1978 QueryPerformanceFrequency( &performance_freq );
1981 if ( !performance_counter_present )
1984 QueryPerformanceCounter( &now );
1985 return (1000000*(now.QuadPart-base_time.QuadPart))/performance_freq.QuadPart;
1993 slapi_timer_get_time( char *label )
1995 unsigned long start = slapi_timer_current_time();
1996 printf("%10ld %10d usec %s\n", start, 0, label);
2004 slapi_timer_elapsed_time(
2006 unsigned long start )
2008 unsigned long stop = slapi_timer_current_time();
2009 printf ("%10ld %10ld usec %s\n", stop, stop - start, label);
2013 slapi_free_search_results_internal( Slapi_PBlock *pb )
2015 Slapi_Entry **entries;
2016 int k = 0, nEnt = 0;
2018 slapi_pblock_get( pb, SLAPI_NENTRIES, &nEnt );
2019 slapi_pblock_get( pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries );
2020 if ( nEnt == 0 || entries == NULL ) {
2024 for ( k = 0; k < nEnt; k++ ) {
2025 slapi_entry_free( entries[k] );
2029 slapi_ch_free( (void **)&entries );
2032 int slapi_is_connection_ssl( Slapi_PBlock *pb, int *isSSL )
2035 return LDAP_PARAM_ERROR;
2037 if ( pb->pb_conn == NULL )
2038 return LDAP_PARAM_ERROR;
2041 *isSSL = pb->pb_conn->c_is_tls;
2046 return LDAP_SUCCESS;
2050 * DS 5.x compatability API follow
2053 int slapi_attr_get_flags( const Slapi_Attr *attr, unsigned long *flags )
2058 return LDAP_PARAM_ERROR;
2060 at = attr->a_desc->ad_type;
2062 *flags = SLAPI_ATTR_FLAG_STD_ATTR;
2064 if ( is_at_single_value( at ) )
2065 *flags |= SLAPI_ATTR_FLAG_SINGLE;
2066 if ( is_at_operational( at ) )
2067 *flags |= SLAPI_ATTR_FLAG_OPATTR;
2068 if ( is_at_obsolete( at ) )
2069 *flags |= SLAPI_ATTR_FLAG_OBSOLETE;
2070 if ( is_at_collective( at ) )
2071 *flags |= SLAPI_ATTR_FLAG_COLLECTIVE;
2072 if ( is_at_no_user_mod( at ) )
2073 *flags |= SLAPI_ATTR_FLAG_NOUSERMOD;
2075 return LDAP_SUCCESS;
2078 int slapi_attr_flag_is_set( const Slapi_Attr *attr, unsigned long flag )
2080 unsigned long flags;
2082 if ( slapi_attr_get_flags( attr, &flags ) != 0 )
2084 return (flags & flag) ? 1 : 0;
2087 Slapi_Attr *slapi_attr_new( void )
2091 ad = (Attribute *)slapi_ch_calloc( 1, sizeof(*ad) );
2096 Slapi_Attr *slapi_attr_init( Slapi_Attr *a, const char *type )
2099 AttributeDescription *ad = NULL;
2101 if( slap_str2ad( type, &ad, &text ) != LDAP_SUCCESS ) {
2114 void slapi_attr_free( Slapi_Attr **a )
2120 Slapi_Attr *slapi_attr_dup( const Slapi_Attr *attr )
2122 return attr_dup( (Slapi_Attr *)attr );
2125 int slapi_attr_add_value( Slapi_Attr *a, const Slapi_Value *v )
2128 struct berval *nvalp;
2130 AttributeDescription *desc = a->a_desc;
2132 if ( desc->ad_type->sat_equality &&
2133 desc->ad_type->sat_equality->smr_normalize ) {
2134 rc = (*desc->ad_type->sat_equality->smr_normalize)(
2135 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
2136 desc->ad_type->sat_syntax,
2137 desc->ad_type->sat_equality,
2138 (Slapi_Value *)v, &nval, NULL );
2139 if ( rc != LDAP_SUCCESS ) {
2147 rc = attr_valadd( a, (Slapi_Value *)v, nvalp, 1 );
2149 if ( nvalp != NULL ) {
2150 slapi_ch_free_string( &nval.bv_val );
2156 int slapi_attr_type2plugin( const char *type, void **pi )
2163 int slapi_attr_get_type( const Slapi_Attr *attr, char **type )
2165 if ( attr == NULL ) {
2166 return LDAP_PARAM_ERROR;
2169 *type = attr->a_desc->ad_cname.bv_val;
2171 return LDAP_SUCCESS;
2174 int slapi_attr_get_oid_copy( const Slapi_Attr *attr, char **oidp )
2176 if ( attr == NULL ) {
2177 return LDAP_PARAM_ERROR;
2179 *oidp = attr->a_desc->ad_type->sat_oid;
2181 return LDAP_SUCCESS;
2184 int slapi_attr_value_cmp( const Slapi_Attr *a, const struct berval *v1, const struct berval *v2 )
2191 mr = a->a_desc->ad_type->sat_equality;
2192 rc = value_match( &ret, a->a_desc, mr,
2193 SLAP_MR_VALUE_OF_ASSERTION_SYNTAX,
2194 (struct berval *)v1, (void *)v2, &text );
2195 if ( rc != LDAP_SUCCESS )
2198 return ( ret == 0 ) ? 0 : -1;
2201 int slapi_attr_value_find( const Slapi_Attr *a, struct berval *v )
2205 if ( a ->a_vals == NULL ) {
2208 rc = attr_valfind( (Attribute *)a, SLAP_MR_VALUE_OF_ASSERTION_SYNTAX, v,
2210 return rc == 0 ? 0 : -1;
2213 int slapi_attr_type_cmp( const char *t1, const char *t2, int opt )
2215 AttributeDescription *a1 = NULL;
2216 AttributeDescription *a2 = NULL;
2220 if ( slap_str2ad( t1, &a1, &text ) != LDAP_SUCCESS ) {
2224 if ( slap_str2ad( t2, &a2, &text ) != LDAP_SUCCESS ) {
2228 #define ad_base_cmp(l,r) (((l)->ad_type->sat_cname.bv_len < (r)->ad_type->sat_cname.bv_len) \
2229 ? -1 : (((l)->ad_type->sat_cname.bv_len > (r)->ad_type->sat_cname.bv_len) \
2230 ? 1 : strcasecmp((l)->ad_type->sat_cname.bv_val, (r)->ad_type->sat_cname.bv_val )))
2233 case SLAPI_TYPE_CMP_EXACT:
2234 ret = ad_cmp( a1, a2 );
2236 case SLAPI_TYPE_CMP_BASE:
2237 ret = ad_base_cmp( a1, a2 );
2239 case SLAPI_TYPE_CMP_SUBTYPE:
2240 ret = is_ad_subtype( a2, a2 );
2250 int slapi_attr_types_equivalent( const char *t1, const char *t2 )
2252 return ( slapi_attr_type_cmp( t1, t2, SLAPI_TYPE_CMP_EXACT ) == 0 );
2255 int slapi_attr_first_value( Slapi_Attr *a, Slapi_Value **v )
2257 return slapi_valueset_first_value( &a->a_vals, v );
2260 int slapi_attr_next_value( Slapi_Attr *a, int hint, Slapi_Value **v )
2262 return slapi_valueset_next_value( &a->a_vals, hint, v );
2265 int slapi_attr_get_numvalues( const Slapi_Attr *a, int *numValues )
2267 *numValues = slapi_valueset_count( &a->a_vals );
2272 int slapi_attr_get_valueset( const Slapi_Attr *a, Slapi_ValueSet **vs )
2274 *vs = &((Slapi_Attr *)a)->a_vals;
2279 int slapi_attr_get_bervals_copy( Slapi_Attr *a, struct berval ***vals )
2281 return slapi_attr_get_values( a, vals );
2284 char *slapi_attr_syntax_normalize( const char *s )
2286 AttributeDescription *ad = NULL;
2289 if ( slap_str2ad( s, &ad, &text ) != LDAP_SUCCESS ) {
2293 return ad->ad_cname.bv_val;
2296 Slapi_Value *slapi_value_new( void )
2300 bv = (struct berval *)slapi_ch_malloc( sizeof(*bv) );
2305 Slapi_Value *slapi_value_new_berval(const struct berval *bval)
2307 return ber_dupbv( NULL, (struct berval *)bval );
2310 Slapi_Value *slapi_value_new_value(const Slapi_Value *v)
2312 return slapi_value_new_berval( v );
2315 Slapi_Value *slapi_value_new_string(const char *s)
2319 bv.bv_val = (char *)s;
2320 bv.bv_len = strlen( s );
2322 return slapi_value_new_berval( &bv );
2325 Slapi_Value *slapi_value_init(Slapi_Value *val)
2333 Slapi_Value *slapi_value_init_berval(Slapi_Value *v, struct berval *bval)
2335 return ber_dupbv( v, bval );
2338 Slapi_Value *slapi_value_init_string(Slapi_Value *v, const char *s)
2340 v->bv_val = slapi_ch_strdup( s );
2341 v->bv_len = strlen( s );
2346 Slapi_Value *slapi_value_dup(const Slapi_Value *v)
2348 return slapi_value_new_value( v );
2351 void slapi_value_free(Slapi_Value **value)
2353 if ( value == NULL ) {
2357 if ( (*value) != NULL ) {
2358 slapi_ch_free( (void **)&(*value)->bv_val );
2359 slapi_ch_free( (void **)value );
2363 const struct berval *slapi_value_get_berval( const Slapi_Value *value )
2368 Slapi_Value *slapi_value_set_berval( Slapi_Value *value, const struct berval *bval )
2370 if ( value == NULL ) {
2373 if ( value->bv_val != NULL ) {
2374 slapi_ch_free( (void **)&value->bv_val );
2376 slapi_value_init_berval( value, (struct berval *)bval );
2381 Slapi_Value *slapi_value_set_value( Slapi_Value *value, const Slapi_Value *vfrom)
2383 if ( value == NULL ) {
2386 return slapi_value_set_berval( value, vfrom );
2389 Slapi_Value *slapi_value_set( Slapi_Value *value, void *val, unsigned long len)
2391 if ( value == NULL ) {
2394 if ( value->bv_val != NULL ) {
2395 slapi_ch_free( (void **)&value->bv_val );
2397 value->bv_val = slapi_ch_malloc( len );
2398 value->bv_len = len;
2399 AC_MEMCPY( value->bv_val, val, len );
2404 int slapi_value_set_string(Slapi_Value *value, const char *strVal)
2406 if ( value == NULL ) {
2409 slapi_value_set( value, (void *)strVal, strlen( strVal ) );
2413 int slapi_value_set_int(Slapi_Value *value, int intVal)
2417 snprintf( buf, sizeof( buf ), "%d", intVal );
2419 return slapi_value_set_string( value, buf );
2422 const char *slapi_value_get_string(const Slapi_Value *value)
2424 if ( value == NULL ) return NULL;
2425 if ( value->bv_val == NULL ) return NULL;
2426 if ( !checkBVString( value ) ) return NULL;
2428 return value->bv_val;
2431 int slapi_value_get_int(const Slapi_Value *value)
2433 if ( value == NULL ) return 0;
2434 if ( value->bv_val == NULL ) return 0;
2435 if ( !checkBVString( value ) ) return 0;
2437 return (int)strtol( value->bv_val, NULL, 10 );
2440 unsigned int slapi_value_get_uint(const Slapi_Value *value)
2442 if ( value == NULL ) return 0;
2443 if ( value->bv_val == NULL ) return 0;
2444 if ( !checkBVString( value ) ) return 0;
2446 return (unsigned int)strtoul( value->bv_val, NULL, 10 );
2449 long slapi_value_get_long(const Slapi_Value *value)
2451 if ( value == NULL ) return 0;
2452 if ( value->bv_val == NULL ) return 0;
2453 if ( !checkBVString( value ) ) return 0;
2455 return strtol( value->bv_val, NULL, 10 );
2458 unsigned long slapi_value_get_ulong(const Slapi_Value *value)
2460 if ( value == NULL ) return 0;
2461 if ( value->bv_val == NULL ) return 0;
2462 if ( !checkBVString( value ) ) return 0;
2464 return strtoul( value->bv_val, NULL, 10 );
2467 size_t slapi_value_get_length(const Slapi_Value *value)
2469 if ( value == NULL )
2472 return (size_t) value->bv_len;
2475 int slapi_value_compare(const Slapi_Attr *a, const Slapi_Value *v1, const Slapi_Value *v2)
2477 return slapi_attr_value_cmp( a, v1, v2 );
2480 /* A ValueSet is a container for a BerVarray. */
2481 Slapi_ValueSet *slapi_valueset_new( void )
2485 vs = (Slapi_ValueSet *)slapi_ch_malloc( sizeof( *vs ) );
2491 void slapi_valueset_free(Slapi_ValueSet *vs)
2496 ber_bvarray_free( vp );
2499 slapi_ch_free( (void **)&vp );
2503 void slapi_valueset_init(Slapi_ValueSet *vs)
2505 if ( vs != NULL && *vs == NULL ) {
2506 *vs = (Slapi_ValueSet)slapi_ch_calloc( 1, sizeof(struct berval) );
2507 (*vs)->bv_val = NULL;
2512 void slapi_valueset_done(Slapi_ValueSet *vs)
2519 for ( vp = *vs; vp->bv_val != NULL; vp++ ) {
2521 slapi_ch_free( (void **)&vp->bv_val );
2523 /* but don't free *vs or vs */
2526 void slapi_valueset_add_value(Slapi_ValueSet *vs, const Slapi_Value *addval)
2530 ber_dupbv( &bv, (Slapi_Value *)addval );
2531 ber_bvarray_add( vs, &bv );
2534 int slapi_valueset_first_value( Slapi_ValueSet *vs, Slapi_Value **v )
2536 return slapi_valueset_next_value( vs, 0, v );
2539 int slapi_valueset_next_value( Slapi_ValueSet *vs, int index, Slapi_Value **v)
2549 for ( i = 0; vp[i].bv_val != NULL; i++ ) {
2559 int slapi_valueset_count( const Slapi_ValueSet *vs )
2572 for ( i = 0; vp[i].bv_val != NULL; i++ )
2579 void slapi_valueset_set_valueset(Slapi_ValueSet *vs1, const Slapi_ValueSet *vs2)
2583 for ( vp = *vs2; vp->bv_val != NULL; vp++ ) {
2584 slapi_valueset_add_value( vs1, vp );
2588 int slapi_access_allowed( Slapi_PBlock *pb, Slapi_Entry *e, char *attr,
2589 struct berval *val, int access )
2592 slap_access_t slap_access;
2593 AttributeDescription *ad = NULL;
2596 rc = slap_str2ad( attr, &ad, &text );
2597 if ( rc != LDAP_SUCCESS ) {
2602 * Whilst the SLAPI access types are arranged as a bitmask, the
2603 * documentation indicates that they are to be used separately.
2605 switch ( access & SLAPI_ACL_ALL ) {
2606 case SLAPI_ACL_COMPARE:
2607 slap_access = ACL_COMPARE;
2609 case SLAPI_ACL_SEARCH:
2610 slap_access = ACL_SEARCH;
2612 case SLAPI_ACL_READ:
2613 slap_access = ACL_READ;
2615 case SLAPI_ACL_WRITE:
2616 slap_access = ACL_WRITE;
2618 case SLAPI_ACL_DELETE:
2619 slap_access = ACL_WDEL;
2622 slap_access = ACL_WADD;
2624 case SLAPI_ACL_SELF: /* not documented */
2625 case SLAPI_ACL_PROXY: /* not documented */
2627 return LDAP_INSUFFICIENT_ACCESS;
2631 assert( pb->pb_op != NULL );
2633 if ( access_allowed( pb->pb_op, e, ad, val, slap_access, NULL ) ) {
2634 return LDAP_SUCCESS;
2637 return LDAP_INSUFFICIENT_ACCESS;
2640 int slapi_acl_check_mods(Slapi_PBlock *pb, Slapi_Entry *e, LDAPMod **mods, char **errbuf)
2642 int rc = LDAP_SUCCESS;
2645 if ( pb == NULL || pb->pb_op == NULL )
2646 return LDAP_PARAM_ERROR;
2648 ml = slapi_int_ldapmods2modifications( pb->pb_op, mods );
2653 if ( rc == LDAP_SUCCESS ) {
2654 rc = acl_check_modlist( pb->pb_op, e, ml ) ? LDAP_SUCCESS : LDAP_INSUFFICIENT_ACCESS;
2657 slap_mods_free( ml, 1 );
2663 * Synthesise an LDAPMod array from a Modifications list to pass
2666 LDAPMod **slapi_int_modifications2ldapmods( Modifications *modlist )
2669 LDAPMod **mods, *modp;
2672 for( i = 0, ml = modlist; ml != NULL; i++, ml = ml->sml_next )
2675 mods = (LDAPMod **)slapi_ch_malloc( (i + 1) * sizeof(LDAPMod *) );
2677 for( i = 0, ml = modlist; ml != NULL; ml = ml->sml_next ) {
2678 mods[i] = (LDAPMod *)slapi_ch_malloc( sizeof(LDAPMod) );
2680 modp->mod_op = ml->sml_op | LDAP_MOD_BVALUES;
2681 if ( BER_BVISNULL( &ml->sml_type ) ) {
2682 /* may happen for internally generated mods */
2683 assert( ml->sml_desc != NULL );
2684 modp->mod_type = slapi_ch_strdup( ml->sml_desc->ad_cname.bv_val );
2686 modp->mod_type = slapi_ch_strdup( ml->sml_type.bv_val );
2689 if ( ml->sml_values != NULL ) {
2690 for( j = 0; ml->sml_values[j].bv_val != NULL; j++ )
2692 modp->mod_bvalues = (struct berval **)slapi_ch_malloc( (j + 1) *
2693 sizeof(struct berval *) );
2694 for( j = 0; ml->sml_values[j].bv_val != NULL; j++ ) {
2695 modp->mod_bvalues[j] = (struct berval *)slapi_ch_malloc(
2696 sizeof(struct berval) );
2697 ber_dupbv( modp->mod_bvalues[j], &ml->sml_values[j] );
2699 modp->mod_bvalues[j] = NULL;
2701 modp->mod_bvalues = NULL;
2712 * Convert a potentially modified array of LDAPMods back to a
2713 * Modification list. Unfortunately the values need to be
2714 * duplicated because slap_mods_check() will try to free them
2715 * before prettying (and we can't easily get out of calling
2716 * slap_mods_check() because we need normalized values).
2718 Modifications *slapi_int_ldapmods2modifications ( Operation *op, LDAPMod **mods )
2720 Modifications *modlist = NULL, **modtail;
2722 char textbuf[SLAP_TEXT_BUFLEN];
2725 if ( mods == NULL ) {
2731 for ( modp = mods; *modp != NULL; modp++ ) {
2733 LDAPMod *lmod = *modp;
2736 AttributeDescription *ad = NULL;
2738 if ( slap_str2ad( lmod->mod_type, &ad, &text ) != LDAP_SUCCESS ) {
2742 mod = (Modifications *) slapi_ch_malloc( sizeof(Modifications) );
2743 mod->sml_op = lmod->mod_op & ~(LDAP_MOD_BVALUES);
2745 mod->sml_type = ad->ad_cname;
2747 mod->sml_next = NULL;
2750 if ( lmod->mod_op & LDAP_MOD_BVALUES ) {
2751 if ( lmod->mod_bvalues != NULL ) {
2752 while ( lmod->mod_bvalues[i] != NULL )
2756 if ( lmod->mod_values != NULL ) {
2757 while ( lmod->mod_values[i] != NULL )
2761 mod->sml_numvals = i;
2764 mod->sml_values = NULL;
2766 mod->sml_values = (BerVarray) slapi_ch_malloc( (i + 1) * sizeof(struct berval) );
2768 /* NB: This implicitly trusts a plugin to return valid modifications. */
2769 if ( lmod->mod_op & LDAP_MOD_BVALUES ) {
2770 for ( i = 0; lmod->mod_bvalues[i] != NULL; i++ ) {
2771 ber_dupbv( &mod->sml_values[i], lmod->mod_bvalues[i] );
2774 for ( i = 0; lmod->mod_values[i] != NULL; i++ ) {
2775 mod->sml_values[i].bv_val = slapi_ch_strdup( lmod->mod_values[i] );
2776 mod->sml_values[i].bv_len = strlen( lmod->mod_values[i] );
2779 mod->sml_values[i].bv_val = NULL;
2780 mod->sml_values[i].bv_len = 0;
2782 mod->sml_nvalues = NULL;
2785 modtail = &mod->sml_next;
2788 if ( slap_mods_check( op, modlist, &text, textbuf, sizeof( textbuf ), NULL ) != LDAP_SUCCESS ) {
2789 slap_mods_free( modlist, 1 );
2797 * Sun ONE DS 5.x computed attribute support. Computed attributes
2798 * allow for dynamically generated operational attributes, a very
2799 * useful thing indeed.
2803 * For some reason Sun don't use the normal plugin mechanism
2804 * registration path to register an "evaluator" function (an
2805 * "evaluator" is responsible for adding computed attributes;
2806 * the nomenclature is somewhat confusing).
2808 * As such slapi_compute_add_evaluator() registers the
2809 * function directly.
2811 int slapi_compute_add_evaluator(slapi_compute_callback_t function)
2813 Slapi_PBlock *pPlugin = NULL;
2815 int type = SLAPI_PLUGIN_OBJECT;
2817 pPlugin = slapi_pblock_new();
2818 if ( pPlugin == NULL ) {
2819 rc = LDAP_NO_MEMORY;
2823 rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_TYPE, (void *)&type );
2824 if ( rc != LDAP_SUCCESS ) {
2828 rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_COMPUTE_EVALUATOR_FN, (void *)function );
2829 if ( rc != LDAP_SUCCESS ) {
2833 rc = slapi_int_register_plugin( frontendDB, pPlugin );
2840 if ( rc != LDAP_SUCCESS ) {
2841 if ( pPlugin != NULL ) {
2842 slapi_pblock_destroy( pPlugin );
2851 * See notes above regarding slapi_compute_add_evaluator().
2853 int slapi_compute_add_search_rewriter(slapi_search_rewrite_callback_t function)
2855 Slapi_PBlock *pPlugin = NULL;
2857 int type = SLAPI_PLUGIN_OBJECT;
2859 pPlugin = slapi_pblock_new();
2860 if ( pPlugin == NULL ) {
2861 rc = LDAP_NO_MEMORY;
2865 rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_TYPE, (void *)&type );
2866 if ( rc != LDAP_SUCCESS ) {
2870 rc = slapi_pblock_set( pPlugin, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, (void *)function );
2871 if ( rc != LDAP_SUCCESS ) {
2875 rc = slapi_int_register_plugin( frontendDB, pPlugin );
2882 if ( rc != LDAP_SUCCESS ) {
2883 if ( pPlugin != NULL ) {
2884 slapi_pblock_destroy( pPlugin );
2893 * Call compute evaluators
2895 int compute_evaluator(computed_attr_context *c, char *type, Slapi_Entry *e, slapi_compute_output_t outputfn)
2898 slapi_compute_callback_t *pGetPlugin, *tmpPlugin;
2900 rc = slapi_int_get_plugins( frontendDB, SLAPI_PLUGIN_COMPUTE_EVALUATOR_FN, (SLAPI_FUNC **)&tmpPlugin );
2901 if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
2902 /* Nothing to do; front-end should ignore. */
2906 for ( pGetPlugin = tmpPlugin; *pGetPlugin != NULL; pGetPlugin++ ) {
2908 * -1: no attribute matched requested type
2909 * 0: one attribute matched
2910 * >0: error happened
2912 rc = (*pGetPlugin)( c, type, e, outputfn );
2918 slapi_ch_free( (void **)&tmpPlugin );
2924 compute_rewrite_search_filter( Slapi_PBlock *pb )
2926 if ( pb == NULL || pb->pb_op == NULL )
2927 return LDAP_PARAM_ERROR;
2929 return slapi_int_call_plugins( pb->pb_op->o_bd, SLAPI_PLUGIN_COMPUTE_SEARCH_REWRITER_FN, pb );
2933 * New API to provide the plugin with access to the search
2934 * pblock. Have informed Sun DS team.
2937 slapi_x_compute_get_pblock(computed_attr_context *c, Slapi_PBlock **pb)
2942 if ( c->cac_pb == NULL )
2950 Slapi_Mutex *slapi_new_mutex( void )
2954 m = (Slapi_Mutex *)slapi_ch_malloc( sizeof(*m) );
2955 if ( ldap_pvt_thread_mutex_init( &m->mutex ) != 0 ) {
2956 slapi_ch_free( (void **)&m );
2963 void slapi_destroy_mutex( Slapi_Mutex *mutex )
2965 if ( mutex != NULL ) {
2966 ldap_pvt_thread_mutex_destroy( &mutex->mutex );
2967 slapi_ch_free( (void **)&mutex);
2971 void slapi_lock_mutex( Slapi_Mutex *mutex )
2973 ldap_pvt_thread_mutex_lock( &mutex->mutex );
2976 int slapi_unlock_mutex( Slapi_Mutex *mutex )
2978 return ldap_pvt_thread_mutex_unlock( &mutex->mutex );
2981 Slapi_CondVar *slapi_new_condvar( Slapi_Mutex *mutex )
2985 if ( mutex == NULL ) {
2989 cv = (Slapi_CondVar *)slapi_ch_malloc( sizeof(*cv) );
2990 if ( ldap_pvt_thread_cond_init( &cv->cond ) != 0 ) {
2991 slapi_ch_free( (void **)&cv );
2995 cv->mutex = mutex->mutex;
3000 void slapi_destroy_condvar( Slapi_CondVar *cvar )
3002 if ( cvar != NULL ) {
3003 ldap_pvt_thread_cond_destroy( &cvar->cond );
3004 slapi_ch_free( (void **)&cvar );
3008 int slapi_wait_condvar( Slapi_CondVar *cvar, struct timeval *timeout )
3010 if ( cvar == NULL ) {
3014 return ldap_pvt_thread_cond_wait( &cvar->cond, &cvar->mutex );
3017 int slapi_notify_condvar( Slapi_CondVar *cvar, int notify_all )
3019 if ( cvar == NULL ) {
3024 return ldap_pvt_thread_cond_broadcast( &cvar->cond );
3027 return ldap_pvt_thread_cond_signal( &cvar->cond );
3030 int slapi_int_access_allowed( Operation *op,
3032 AttributeDescription *desc,
3034 slap_access_t access,
3035 AccessControlState *state )
3037 int rc, slap_access = 0;
3038 slapi_acl_callback_t *pGetPlugin, *tmpPlugin;
3041 pb = SLAPI_OPERATION_PBLOCK( op );
3043 /* internal operation */
3049 slap_access |= SLAPI_ACL_COMPARE;
3052 slap_access |= SLAPI_ACL_SEARCH;
3055 slap_access |= SLAPI_ACL_READ;
3058 slap_access |= SLAPI_ACL_WRITE;
3061 slap_access |= SLAPI_ACL_DELETE;
3064 slap_access |= SLAPI_ACL_ADD;
3070 rc = slapi_int_get_plugins( frontendDB, SLAPI_PLUGIN_ACL_ALLOW_ACCESS, (SLAPI_FUNC **)&tmpPlugin );
3071 if ( rc != LDAP_SUCCESS || tmpPlugin == NULL ) {
3072 /* nothing to do; allowed access */
3076 rc = 1; /* default allow policy */
3078 for ( pGetPlugin = tmpPlugin; *pGetPlugin != NULL; pGetPlugin++ ) {
3083 rc = (*pGetPlugin)( pb, entry, desc->ad_cname.bv_val,
3084 val, slap_access, (void *)state );
3090 slapi_ch_free( (void **)&tmpPlugin );
3096 * There is no documentation for this.
3098 int slapi_rdn2typeval( char *rdn, char **type, struct berval *bv )
3110 rc = ldap_str2rdn( rdn, &lrdn, &p, LDAP_DN_FORMAT_LDAPV3 );
3111 if ( rc != LDAP_SUCCESS ) {
3115 if ( lrdn[1] != NULL ) {
3116 return -1; /* not single valued */
3121 *type = slapi_ch_strdup( ava->la_attr.bv_val );
3122 ber_dupbv( bv, &ava->la_value );
3129 char *slapi_dn_plus_rdn( const char *dn, const char *rdn )
3131 struct berval new_dn, parent_dn, newrdn;
3133 new_dn.bv_val = NULL;
3135 parent_dn.bv_val = (char *)dn;
3136 parent_dn.bv_len = strlen( dn );
3138 newrdn.bv_val = (char *)rdn;
3139 newrdn.bv_len = strlen( rdn );
3141 build_new_dn( &new_dn, &parent_dn, &newrdn, NULL );
3143 return new_dn.bv_val;
3146 int slapi_entry_schema_check( Slapi_PBlock *pb, Slapi_Entry *e )
3150 char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
3151 size_t textlen = sizeof textbuf;
3152 int rc = LDAP_SUCCESS;
3154 PBLOCK_ASSERT_OP( pb, 0 );
3156 be_orig = pb->pb_op->o_bd;
3158 pb->pb_op->o_bd = select_backend( &e->e_nname, 0 );
3159 if ( pb->pb_op->o_bd != NULL ) {
3160 rc = entry_schema_check( pb->pb_op, e, NULL, 0, 0, NULL,
3161 &text, textbuf, textlen );
3163 pb->pb_op->o_bd = be_orig;
3165 return ( rc == LDAP_SUCCESS ) ? 0 : 1;
3168 int slapi_entry_rdn_values_present( const Slapi_Entry *e )
3172 int i = 0, match = 0;
3174 rc = ldap_bv2dn( &((Entry *)e)->e_name, &dn, LDAP_DN_FORMAT_LDAPV3 );
3175 if ( rc != LDAP_SUCCESS ) {
3179 if ( dn[0] != NULL ) {
3180 LDAPRDN rdn = dn[0];
3182 for ( i = 0; rdn[i] != NULL; i++ ) {
3183 LDAPAVA *ava = &rdn[0][i];
3184 Slapi_Attr *a = NULL;
3186 if ( slapi_entry_attr_find( (Slapi_Entry *)e, ava->la_attr.bv_val, &a ) == 0 &&
3187 slapi_attr_value_find( a, &ava->la_value ) == 0 )
3194 return ( i == match );
3197 int slapi_entry_add_rdn_values( Slapi_Entry *e )
3202 rc = ldap_bv2dn( &e->e_name, &dn, LDAP_DN_FORMAT_LDAPV3 );
3203 if ( rc != LDAP_SUCCESS ) {
3207 if ( dn[0] != NULL ) {
3208 LDAPRDN rdn = dn[0];
3209 struct berval *vals[2];
3211 for ( i = 0; rdn[i] != NULL; i++ ) {
3212 LDAPAVA *ava = &rdn[0][i];
3213 Slapi_Attr *a = NULL;
3215 if ( slapi_entry_attr_find( e, ava->la_attr.bv_val, &a ) == 0 &&
3216 slapi_attr_value_find( a, &ava->la_value ) == 0 )
3219 vals[0] = &ava->la_value;
3222 slapi_entry_attr_merge( e, ava->la_attr.bv_val, vals );
3228 return LDAP_SUCCESS;
3231 const char *slapi_entry_get_uniqueid( const Slapi_Entry *e )
3235 attr = attr_find( e->e_attrs, slap_schema.si_ad_entryUUID );
3236 if ( attr == NULL ) {
3240 if ( attr->a_vals != NULL && attr->a_vals[0].bv_len != 0 ) {
3241 return slapi_value_get_string( &attr->a_vals[0] );
3247 void slapi_entry_set_uniqueid( Slapi_Entry *e, char *uniqueid )
3251 attr_delete ( &e->e_attrs, slap_schema.si_ad_entryUUID );
3253 bv.bv_val = uniqueid;
3254 bv.bv_len = strlen( uniqueid );
3255 attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, &bv, NULL );
3258 LDAP *slapi_ldap_init( char *ldaphost, int ldapport, int secure, int shared )
3265 size = sizeof("ldap:///");
3269 size += strlen( ldaphost );
3270 if ( ldapport != 0 ) {
3274 url = slapi_ch_malloc( size );
3276 if ( ldapport != 0 ) {
3277 rc = snprintf( url, size, "ldap%s://%s:%d/", ( secure ? "s" : "" ), ldaphost, ldapport );
3279 rc = snprintf( url, size, "ldap%s://%s/", ( secure ? "s" : "" ), ldaphost );
3282 if ( rc > 0 && (size_t) rc < size ) {
3283 rc = ldap_initialize( &ld, url );
3288 slapi_ch_free_string( &url );
3290 return ( rc == LDAP_SUCCESS ) ? ld : NULL;
3293 void slapi_ldap_unbind( LDAP *ld )
3295 ldap_unbind_ext_s( ld, NULL, NULL );
3298 int slapi_x_backend_get_flags( const Slapi_Backend *be, unsigned long *flags )
3301 return LDAP_PARAM_ERROR;
3303 *flags = SLAP_DBFLAGS(be);
3305 return LDAP_SUCCESS;
3309 slapi_int_count_controls( LDAPControl **ctrls )
3313 if ( ctrls == NULL )
3316 for ( i = 0; ctrls[i] != NULL; i++ )
3323 slapi_op_abandoned( Slapi_PBlock *pb )
3325 if ( pb->pb_op == NULL )
3328 return ( pb->pb_op->o_abandon );
3332 slapi_op_type_to_string(unsigned long type)
3337 case SLAPI_OPERATION_BIND:
3340 case SLAPI_OPERATION_UNBIND:
3343 case SLAPI_OPERATION_SEARCH:
3346 case SLAPI_OPERATION_MODIFY:
3349 case SLAPI_OPERATION_ADD:
3352 case SLAPI_OPERATION_DELETE:
3355 case SLAPI_OPERATION_MODDN:
3358 case SLAPI_OPERATION_COMPARE:
3361 case SLAPI_OPERATION_ABANDON:
3364 case SLAPI_OPERATION_EXTENDED:
3368 str = "unknown operation type";
3375 slapi_op_get_type(Slapi_Operation * op)
3379 switch ( op->o_tag ) {
3381 type = SLAPI_OPERATION_BIND;
3383 case LDAP_REQ_UNBIND:
3384 type = SLAPI_OPERATION_UNBIND;
3386 case LDAP_REQ_SEARCH:
3387 type = SLAPI_OPERATION_SEARCH;
3389 case LDAP_REQ_MODIFY:
3390 type = SLAPI_OPERATION_MODIFY;
3393 type = SLAPI_OPERATION_ADD;
3395 case LDAP_REQ_DELETE:
3396 type = SLAPI_OPERATION_DELETE;
3398 case LDAP_REQ_MODRDN:
3399 type = SLAPI_OPERATION_MODDN;
3401 case LDAP_REQ_COMPARE:
3402 type = SLAPI_OPERATION_COMPARE;
3404 case LDAP_REQ_ABANDON:
3405 type = SLAPI_OPERATION_ABANDON;
3407 case LDAP_REQ_EXTENDED:
3408 type = SLAPI_OPERATION_EXTENDED;
3411 type = SLAPI_OPERATION_NONE;
3417 void slapi_be_set_readonly( Slapi_Backend *be, int readonly )
3423 be->be_restrictops |= SLAP_RESTRICT_OP_WRITES;
3425 be->be_restrictops &= ~(SLAP_RESTRICT_OP_WRITES);
3428 int slapi_be_get_readonly( Slapi_Backend *be )
3433 return ( (be->be_restrictops & SLAP_RESTRICT_OP_WRITES) == SLAP_RESTRICT_OP_WRITES );
3436 const char *slapi_x_be_get_updatedn( Slapi_Backend *be )
3441 return be->be_update_ndn.bv_val;
3444 Slapi_Backend *slapi_be_select( const Slapi_DN *sdn )
3448 slapi_sdn_get_ndn( sdn );
3450 be = select_backend( (struct berval *)&sdn->ndn, 0 );
3457 slapi_operation_set_flag(Slapi_Operation *op, unsigned long flag)
3462 slapi_operation_clear_flag(Slapi_Operation *op, unsigned long flag)
3467 slapi_operation_is_flag_set(Slapi_Operation *op, unsigned long flag)
3472 #endif /* LDAP_SLAPI */