]> git.sur5r.net Git - openldap/blob - servers/slapd/slapadd.c
ITS#6038: Write slapadd progress meter to stdout.
[openldap] / servers / slapd / slapadd.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2009 The OpenLDAP Foundation.
5  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
6  * Portions Copyright 2003 IBM Corporation.
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted only as authorized by the OpenLDAP
11  * Public License.
12  *
13  * A copy of this license is available in file LICENSE in the
14  * top-level directory of the distribution or, alternatively, at
15  * <http://www.OpenLDAP.org/license.html>.
16  */
17 /* ACKNOWLEDGEMENTS:
18  * This work was initially developed by Kurt Zeilenga for inclusion
19  * in OpenLDAP Software.  Additional signficant contributors include
20  *    Jong Hyuk Choi
21  *    Pierangelo Masarati
22  */
23
24 #include "portable.h"
25
26 #include <stdio.h>
27
28 #include <ac/stdlib.h>
29
30 #include <ac/ctype.h>
31 #include <ac/string.h>
32 #include <ac/socket.h>
33 #include <ac/unistd.h>
34
35 #include <lber.h>
36 #include <ldif.h>
37 #include <lutil.h>
38 #include <lutil_meter.h>
39 #include <sys/stat.h>
40
41 #include "slapcommon.h"
42
43 static char csnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE ];
44 static char maxcsnbuf[ LDAP_LUTIL_CSNSTR_BUFSIZE * ( SLAP_SYNC_SID_MAX + 1 ) ];
45
46 int
47 slapadd( int argc, char **argv )
48 {
49         char *buf = NULL;
50         const char *text;
51         char textbuf[SLAP_TEXT_BUFLEN] = { '\0' };
52         size_t textlen = sizeof textbuf;
53         const char *progname = "slapadd";
54
55         struct berval csn;
56         struct berval maxcsn[ SLAP_SYNC_SID_MAX + 1 ];
57         unsigned long sid;
58         struct berval bvtext;
59         Attribute *attr;
60         Entry *ctxcsn_e;
61         ID      ctxcsn_id, id;
62         OperationBuffer opbuf;
63         Operation *op;
64
65         int match;
66         int checkvals;
67         int lineno, nextline;
68         int lmax;
69         int rc = EXIT_SUCCESS;
70         int manage = 0; 
71
72         int enable_meter = 0;
73         lutil_meter_t meter;
74         struct stat stat_buf;
75
76         /* default "000" */
77         csnsid = 0;
78
79         if ( isatty (1) ) enable_meter = 1;
80         slap_tool_init( progname, SLAPADD, argc, argv );
81
82         memset( &opbuf, 0, sizeof(opbuf) );
83         op = &opbuf.ob_op;
84         op->o_hdr = &opbuf.ob_hdr;
85
86         if( !be->be_entry_open ||
87                 !be->be_entry_close ||
88                 !be->be_entry_put ||
89                 (update_ctxcsn &&
90                  (!be->be_dn2id_get ||
91                   !be->be_entry_get ||
92                   !be->be_entry_modify)) )
93         {
94                 fprintf( stderr, "%s: database doesn't support necessary operations.\n",
95                         progname );
96                 if ( dryrun ) {
97                         fprintf( stderr, "\t(dry) continuing...\n" );
98
99                 } else {
100                         exit( EXIT_FAILURE );
101                 }
102         }
103
104         checkvals = (slapMode & SLAP_TOOL_QUICK) ? 0 : 1;
105
106         lmax = 0;
107         nextline = 0;
108
109         /* enforce schema checking unless not disabled */
110         if ( (slapMode & SLAP_TOOL_NO_SCHEMA_CHECK) == 0) {
111                 SLAP_DBFLAGS(be) &= ~(SLAP_DBFLAG_NO_SCHEMA_CHECK);
112         }
113
114         if( !dryrun && be->be_entry_open( be, 1 ) != 0 ) {
115                 fprintf( stderr, "%s: could not open database.\n",
116                         progname );
117                 exit( EXIT_FAILURE );
118         }
119
120         if ( update_ctxcsn ) {
121                 maxcsn[ 0 ].bv_val = maxcsnbuf;
122                 for ( sid = 1; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
123                         maxcsn[ sid ].bv_val = maxcsn[ sid - 1 ].bv_val + LDAP_LUTIL_CSNSTR_BUFSIZE;
124                         maxcsn[ sid ].bv_len = 0;
125                 }
126         }
127
128         if ( enable_meter 
129 #ifdef LDAP_DEBUG
130                 /* tools default to "none" */
131                 && slap_debug == LDAP_DEBUG_NONE
132 #endif
133                 && !fstat ( fileno ( ldiffp->fp ), &stat_buf )
134                 && S_ISREG(stat_buf.st_mode) ) {
135                 enable_meter = !lutil_meter_open(
136                         &meter,
137                         &lutil_meter_text_display,
138                         &lutil_meter_linear_estimator,
139                         stat_buf.st_size);
140         } else {
141                 enable_meter = 0;
142         }
143
144         /* nextline is the line number of the end of the current entry */
145         for( lineno=1; ldif_read_record( ldiffp, &nextline, &buf, &lmax );
146                 lineno=nextline+1 )
147         {
148                 BackendDB *bd;
149                 Entry *e;
150
151                 if ( lineno < jumpline )
152                         continue;
153
154                 e = str2entry2( buf, checkvals );
155
156                 if ( enable_meter )
157                         lutil_meter_update( &meter,
158                                          ftell( ldiffp->fp ),
159                                          0);
160
161                 /*
162                  * Initialize text buffer
163                  */
164                 bvtext.bv_len = textlen;
165                 bvtext.bv_val = textbuf;
166                 bvtext.bv_val[0] = '\0';
167
168                 if( e == NULL ) {
169                         fprintf( stderr, "%s: could not parse entry (line=%d)\n",
170                                 progname, lineno );
171                         rc = EXIT_FAILURE;
172                         if( continuemode ) continue;
173                         break;
174                 }
175
176                 /* make sure the DN is not empty */
177                 if( BER_BVISEMPTY( &e->e_nname ) &&
178                         !BER_BVISEMPTY( be->be_nsuffix ))
179                 {
180                         fprintf( stderr, "%s: line %d: "
181                                 "cannot add entry with empty dn=\"%s\"",
182                                 progname, lineno, e->e_dn );
183                         bd = select_backend( &e->e_nname, nosubordinates );
184                         if ( bd ) {
185                                 BackendDB *bdtmp;
186                                 int dbidx = 0;
187                                 LDAP_STAILQ_FOREACH( bdtmp, &backendDB, be_next ) {
188                                         if ( bdtmp == bd ) break;
189                                         dbidx++;
190                                 }
191
192                                 assert( bdtmp != NULL );
193                                 
194                                 fprintf( stderr, "; did you mean to use database #%d (%s)?",
195                                         dbidx,
196                                         bd->be_suffix[0].bv_val );
197
198                         }
199                         fprintf( stderr, "\n" );
200                         rc = EXIT_FAILURE;
201                         entry_free( e );
202                         if( continuemode ) continue;
203                         break;
204                 }
205
206                 /* check backend */
207                 bd = select_backend( &e->e_nname, nosubordinates );
208                 if ( bd != be ) {
209                         fprintf( stderr, "%s: line %d: "
210                                 "database #%d (%s) not configured to hold \"%s\"",
211                                 progname, lineno,
212                                 dbnum,
213                                 be->be_suffix[0].bv_val,
214                                 e->e_dn );
215                         if ( bd ) {
216                                 BackendDB *bdtmp;
217                                 int dbidx = 0;
218                                 LDAP_STAILQ_FOREACH( bdtmp, &backendDB, be_next ) {
219                                         if ( bdtmp == bd ) break;
220                                         dbidx++;
221                                 }
222
223                                 assert( bdtmp != NULL );
224                                 
225                                 fprintf( stderr, "; did you mean to use database #%d (%s)?",
226                                         dbidx,
227                                         bd->be_suffix[0].bv_val );
228
229                         } else {
230                                 fprintf( stderr, "; no database configured for that naming context" );
231                         }
232                         fprintf( stderr, "\n" );
233                         rc = EXIT_FAILURE;
234                         entry_free( e );
235                         if( continuemode ) continue;
236                         break;
237                 }
238
239                 {
240                         Attribute *oc = attr_find( e->e_attrs,
241                                 slap_schema.si_ad_objectClass );
242
243                         if( oc == NULL ) {
244                                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): %s\n",
245                                         progname, e->e_dn, lineno,
246                                         "no objectClass attribute");
247                                 rc = EXIT_FAILURE;
248                                 entry_free( e );
249                                 if( continuemode ) continue;
250                                 break;
251                         }
252
253                         /* check schema */
254                         op->o_bd = be;
255
256                         if ( (slapMode & SLAP_TOOL_NO_SCHEMA_CHECK) == 0) {
257                                 rc = entry_schema_check( op, e, NULL, manage, 1, NULL,
258                                         &text, textbuf, textlen );
259
260                                 if( rc != LDAP_SUCCESS ) {
261                                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
262                                                 progname, e->e_dn, lineno, rc, text );
263                                         rc = EXIT_FAILURE;
264                                         entry_free( e );
265                                         if( continuemode ) continue;
266                                         break;
267                                 }
268                                 textbuf[ 0 ] = '\0';
269                         }
270                 }
271
272                 if ( SLAP_LASTMOD(be) ) {
273                         time_t now = slap_get_time();
274                         char uuidbuf[ LDAP_LUTIL_UUIDSTR_BUFSIZE ];
275                         struct berval vals[ 2 ];
276
277                         struct berval name, timestamp;
278
279                         struct berval nvals[ 2 ];
280                         struct berval nname;
281                         char timebuf[ LDAP_LUTIL_GENTIME_BUFSIZE ];
282
283                         vals[1].bv_len = 0;
284                         vals[1].bv_val = NULL;
285
286                         nvals[1].bv_len = 0;
287                         nvals[1].bv_val = NULL;
288
289                         csn.bv_len = lutil_csnstr( csnbuf, sizeof( csnbuf ), csnsid, 0 );
290                         csn.bv_val = csnbuf;
291
292                         timestamp.bv_val = timebuf;
293                         timestamp.bv_len = sizeof(timebuf);
294
295                         slap_timestamp( &now, &timestamp );
296
297                         if ( BER_BVISEMPTY( &be->be_rootndn ) ) {
298                                 BER_BVSTR( &name, SLAPD_ANONYMOUS );
299                                 nname = name;
300                         } else {
301                                 name = be->be_rootdn;
302                                 nname = be->be_rootndn;
303                         }
304
305                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryUUID )
306                                 == NULL )
307                         {
308                                 vals[0].bv_len = lutil_uuidstr( uuidbuf, sizeof( uuidbuf ) );
309                                 vals[0].bv_val = uuidbuf;
310                                 attr_merge_normalize_one( e, slap_schema.si_ad_entryUUID, vals, NULL );
311                         }
312
313                         if( attr_find( e->e_attrs, slap_schema.si_ad_creatorsName )
314                                 == NULL )
315                         {
316                                 vals[0] = name;
317                                 nvals[0] = nname;
318                                 attr_merge( e, slap_schema.si_ad_creatorsName, vals, nvals );
319                         }
320
321                         if( attr_find( e->e_attrs, slap_schema.si_ad_createTimestamp )
322                                 == NULL )
323                         {
324                                 vals[0] = timestamp;
325                                 attr_merge( e, slap_schema.si_ad_createTimestamp, vals, NULL );
326                         }
327
328                         if( attr_find( e->e_attrs, slap_schema.si_ad_entryCSN )
329                                 == NULL )
330                         {
331                                 vals[0] = csn;
332                                 attr_merge( e, slap_schema.si_ad_entryCSN, vals, NULL );
333                         }
334
335                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifiersName )
336                                 == NULL )
337                         {
338                                 vals[0] = name;
339                                 nvals[0] = nname;
340                                 attr_merge( e, slap_schema.si_ad_modifiersName, vals, nvals );
341                         }
342
343                         if( attr_find( e->e_attrs, slap_schema.si_ad_modifyTimestamp )
344                                 == NULL )
345                         {
346                                 vals[0] = timestamp;
347                                 attr_merge( e, slap_schema.si_ad_modifyTimestamp, vals, NULL );
348                         }
349
350                         if ( update_ctxcsn ) {
351                                 int rc_sid;
352
353                                 attr = attr_find( e->e_attrs, slap_schema.si_ad_entryCSN );
354                                 assert( attr != NULL );
355
356                                 rc_sid = slap_parse_csn_sid( &attr->a_nvals[ 0 ] );
357                                 if ( rc_sid < 0 ) {
358                                         Debug( LDAP_DEBUG_ANY, "%s: could not "
359                                                 "extract SID from entryCSN=%s\n",
360                                                 progname, attr->a_nvals[ 0 ].bv_val, 0 );
361
362                                 } else {
363                                         assert( rc_sid <= SLAP_SYNC_SID_MAX );
364
365                                         sid = (unsigned)rc_sid;
366                                         if ( maxcsn[ sid ].bv_len != 0 ) {
367                                                 match = 0;
368                                                 value_match( &match, slap_schema.si_ad_entryCSN,
369                                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
370                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
371                                                         &maxcsn[ sid ], &attr->a_nvals[0], &text );
372                                         } else {
373                                                 match = -1;
374                                         }
375                                         if ( match < 0 ) {
376                                                 strcpy( maxcsn[ sid ].bv_val, attr->a_nvals[0].bv_val );
377                                                 maxcsn[ sid ].bv_len = attr->a_nvals[0].bv_len;
378                                         }
379                                 }
380                         }
381                 }
382
383                 if ( !dryrun ) {
384                         id = be->be_entry_put( be, e, &bvtext );
385                         if( id == NOID ) {
386                                 fprintf( stderr, "%s: could not add entry dn=\"%s\" "
387                                                                  "(line=%d): %s\n", progname, e->e_dn,
388                                                                  lineno, bvtext.bv_val );
389                                 rc = EXIT_FAILURE;
390                                 entry_free( e );
391                                 if( continuemode ) continue;
392                                 break;
393                         }
394                         if ( verbose )
395                                 fprintf( stderr, "added: \"%s\" (%08lx)\n",
396                                         e->e_dn, (long) id );
397                 } else {
398                         if ( verbose )
399                                 fprintf( stderr, "added: \"%s\"\n",
400                                         e->e_dn );
401                 }
402
403                 entry_free( e );
404         }
405
406         bvtext.bv_len = textlen;
407         bvtext.bv_val = textbuf;
408         bvtext.bv_val[0] = '\0';
409
410         if ( enable_meter ) {
411                 lutil_meter_update( &meter, ftell( ldiffp->fp ), 1);
412                 lutil_meter_close( &meter );
413         }
414
415         if ( rc == EXIT_SUCCESS && update_ctxcsn && !dryrun && sid != SLAP_SYNC_SID_MAX + 1 ) {
416                 ctxcsn_id = be->be_dn2id_get( be, be->be_nsuffix );
417                 if ( ctxcsn_id == NOID ) {
418                         fprintf( stderr, "%s: context entry is missing\n", progname );
419                         rc = EXIT_FAILURE;
420                 } else {
421                         ctxcsn_e = be->be_entry_get( be, ctxcsn_id );
422                         if ( ctxcsn_e != NULL ) {
423                                 Entry *e = entry_dup( ctxcsn_e );
424                                 int change;
425                                 attr = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN );
426                                 if ( attr ) {
427                                         int             i;
428
429                                         change = 0;
430
431                                         for ( i = 0; !BER_BVISNULL( &attr->a_nvals[ i ] ); i++ ) {
432                                                 int rc_sid;
433
434                                                 rc_sid = slap_parse_csn_sid( &attr->a_nvals[ i ] );
435                                                 if ( rc_sid < 0 ) {
436                                                         Debug( LDAP_DEBUG_ANY,
437                                                                 "%s: unable to extract SID "
438                                                                 "from #%d contextCSN=%s\n",
439                                                                 progname, i,
440                                                                 attr->a_nvals[ i ].bv_val );
441                                                         continue;
442                                                 }
443
444                                                 assert( rc_sid <= SLAP_SYNC_SID_MAX );
445
446                                                 sid = (unsigned)rc_sid;
447
448                                                 if ( maxcsn[ sid ].bv_len == 0 ) {
449                                                         match = -1;
450
451                                                 } else {
452                                                         value_match( &match, slap_schema.si_ad_entryCSN,
453                                                                 slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
454                                                                 SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
455                                                                 &maxcsn[ sid ], &attr->a_nvals[i], &text );
456                                                 }
457
458                                                 if ( match > 0 ) {
459                                                         change = 1;
460                                                 } else {
461                                                         AC_MEMCPY( maxcsn[ sid ].bv_val,
462                                                                 attr->a_nvals[ i ].bv_val,
463                                                                 attr->a_nvals[ i ].bv_len );
464                                                         maxcsn[ sid ].bv_val[ attr->a_nvals[ i ].bv_len ] = '\0';
465                                                         maxcsn[ sid ].bv_len = attr->a_nvals[ i ].bv_len;
466                                                 }
467                                         }
468
469                                         if ( change ) {
470                                                 if ( attr->a_nvals != attr->a_vals ) {
471                                                         ber_bvarray_free( attr->a_nvals );
472                                                 }
473                                                 attr->a_nvals = NULL;
474                                                 ber_bvarray_free( attr->a_vals );
475                                                 attr->a_vals = NULL;
476                                                 attr->a_numvals = 0;
477                                         }
478                                 } else {
479                                         change = 1;
480                                 }
481
482                                 if ( change ) {
483                                         for ( sid = 0; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
484                                                 if ( maxcsn[ sid ].bv_len ) {
485                                                         attr_merge_one( e, slap_schema.si_ad_contextCSN,
486                                                                 &maxcsn[ sid], NULL );
487                                                 }
488                                         }
489
490                                         ctxcsn_id = be->be_entry_modify( be, e, &bvtext );
491                                         if( ctxcsn_id == NOID ) {
492                                                 fprintf( stderr, "%s: could not modify ctxcsn\n",
493                                                         progname);
494                                                 rc = EXIT_FAILURE;
495                                         } else if ( verbose ) {
496                                                 fprintf( stderr, "modified: \"%s\" (%08lx)\n",
497                                                         e->e_dn, (long) ctxcsn_id );
498                                         }
499                                 }
500                                 entry_free( e );
501                         }
502                 } 
503         }
504
505         ch_free( buf );
506
507         if ( !dryrun ) {
508                 if ( enable_meter ) {
509                         fprintf( stdout, "Closing DB..." );
510                 }
511                 if( be->be_entry_close( be ) ) {
512                         rc = EXIT_FAILURE;
513                 }
514
515                 if( be->be_sync ) {
516                         be->be_sync( be );
517                 }
518                 if ( enable_meter ) {
519                         fprintf( stdout, "\n" );
520                 }
521         }
522
523         if ( slap_tool_destroy())
524                 rc = EXIT_FAILURE;
525
526         return rc;
527 }
528