X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fslapadd.c;h=fec476894d3d82e4c489f940de4a7dc3b629d17b;hb=f9fb5e63f4b43bc2089ad1d94f19a04e2294b37b;hp=788100e615605c8b0d9a4f94986762ede874844a;hpb=495c3156725ab4a1fcbeb55fc8e48c2c96d555b5;p=openldap diff --git a/servers/slapd/slapadd.c b/servers/slapd/slapadd.c index 788100e615..fec476894d 100644 --- a/servers/slapd/slapadd.c +++ b/servers/slapd/slapadd.c @@ -53,6 +53,7 @@ slapadd( int argc, char **argv ) char textbuf[SLAP_TEXT_BUFLEN] = { '\0' }; size_t textlen = sizeof textbuf; const char *progname = "slapadd"; + int manage = 0; struct berval csn; struct berval maxcsn; @@ -62,7 +63,7 @@ slapadd( int argc, char **argv ) ID ctxcsn_id, id; int ret; struct berval bvtext; - int i; + int i, checkvals; struct berval mc; slap_tool_init( progname, SLAPADD, argc, argv ); @@ -80,6 +81,8 @@ slapadd( int argc, char **argv ) } } + checkvals = (slapMode & SLAP_TOOL_QUICK) ? 0 : 1; + lmax = 0; lineno = 0; @@ -95,7 +98,7 @@ slapadd( int argc, char **argv ) } while( ldif_read_record( ldiffp, &lineno, &buf, &lmax ) ) { - Entry *e = str2entry( buf ); + Entry *e = str2entry2( buf, checkvals ); /* * Initialize text buffer @@ -113,7 +116,8 @@ slapadd( int argc, char **argv ) } /* make sure the DN is not empty */ - if( !e->e_nname.bv_len ) { + if( BER_BVISEMPTY( &e->e_nname ) && + !BER_BVISEMPTY( be->be_nsuffix )) { fprintf( stderr, "%s: empty dn=\"%s\" (line=%d)\n", progname, e->e_dn, lineno ); rc = EXIT_FAILURE; @@ -142,7 +146,7 @@ slapadd( int argc, char **argv ) break; } - if( global_schemacheck ) { + { Attribute *sc = attr_find( e->e_attrs, slap_schema.si_ad_structuralObjectClass ); Attribute *oc = attr_find( e->e_attrs, @@ -159,9 +163,9 @@ slapadd( int argc, char **argv ) } if( sc == NULL ) { - struct berval vals[2]; + struct berval val; - rc = structural_class( oc->a_vals, vals, + rc = structural_class( oc->a_vals, &val, NULL, &text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) { @@ -173,15 +177,13 @@ slapadd( int argc, char **argv ) break; } - vals[1].bv_len = 0; - vals[1].bv_val = NULL; - - attr_merge( e, slap_schema.si_ad_structuralObjectClass, - vals, NULL /* FIXME */ ); + attr_merge_one( e, slap_schema.si_ad_structuralObjectClass, + &val, NULL ); } /* check schema */ - rc = entry_schema_check( be, e, NULL, &text, textbuf, textlen ); + rc = entry_schema_check( be, e, NULL, manage, + &text, textbuf, textlen ); if( rc != LDAP_SUCCESS ) { fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n", @@ -194,7 +196,6 @@ slapadd( int argc, char **argv ) } if ( SLAP_LASTMOD(be) ) { - struct tm *ltm; time_t now = slap_get_time(); char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ]; struct berval vals[ 2 ]; @@ -211,14 +212,13 @@ slapadd( int argc, char **argv ) nvals[1].bv_len = 0; nvals[1].bv_val = NULL; - ltm = gmtime(&now); - lutil_gentime( timebuf, sizeof(timebuf), ltm ); - csn.bv_len = lutil_csnstr( csnbuf, sizeof( csnbuf ), 0, 0 ); csn.bv_val = csnbuf; timestamp.bv_val = timebuf; - timestamp.bv_len = strlen(timebuf); + timestamp.bv_len = sizeof(timebuf); + + slap_timestamp( &now, ×tamp ); if ( BER_BVISEMPTY( &be->be_rootndn ) ) { BER_BVSTR( &name, SLAPD_ANONYMOUS ); @@ -233,8 +233,7 @@ slapadd( int argc, char **argv ) { vals[0].bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) ); vals[0].bv_val = uuidbuf; - attr_merge_normalize_one( e, - slap_schema.si_ad_entryUUID, vals, NULL ); + attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, vals, NULL ); } if( attr_find( e->e_attrs, slap_schema.si_ad_creatorsName ) @@ -323,7 +322,7 @@ done:; bvtext.bv_val = textbuf; bvtext.bv_val[0] = '\0'; - if ( update_ctxcsn && !dryrun && maxcsn.bv_len ) { + if ( rc == EXIT_SUCCESS && update_ctxcsn && !dryrun && maxcsn.bv_len ) { ctxcsn_id = be->be_dn2id_get( be, be->be_nsuffix ); if ( ctxcsn_id == NOID ) { fprintf( stderr, "%s: context entry is missing\n", progname ); @@ -333,15 +332,21 @@ done:; if ( ret == LDAP_SUCCESS ) { attr = attr_find( ctxcsn_e->e_attrs, slap_schema.si_ad_contextCSN ); - value_match( &match, slap_schema.si_ad_entryCSN, - slap_schema.si_ad_entryCSN->ad_type->sat_ordering, - SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX, - &maxcsn, &attr->a_nvals[0], &text ); + if ( attr ) { + value_match( &match, slap_schema.si_ad_entryCSN, + slap_schema.si_ad_entryCSN->ad_type->sat_ordering, + SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX, + &maxcsn, &attr->a_nvals[0], &text ); + if ( match > 0 ) { + AC_MEMCPY( attr->a_vals[0].bv_val, maxcsn.bv_val, maxcsn.bv_len ); + attr->a_vals[0].bv_val[maxcsn.bv_len] = '\0'; + attr->a_vals[0].bv_len = maxcsn.bv_len; + } + } else { + match = 1; + attr_merge_one( ctxcsn_e, slap_schema.si_ad_contextCSN, &maxcsn, NULL ); + } if ( match > 0 ) { - AC_MEMCPY( attr->a_vals[0].bv_val, maxcsn.bv_val, maxcsn.bv_len ); - attr->a_vals[0].bv_val[maxcsn.bv_len] = '\0'; - attr->a_vals[0].bv_len = maxcsn.bv_len; - ctxcsn_id = be->be_entry_modify( be, ctxcsn_e, &bvtext ); if( ctxcsn_id == NOID ) { fprintf( stderr, "%s: could not modify ctxcsn\n",