]> git.sur5r.net Git - openldap/blob - servers/slapd/slapcommon.c
c76572eccb380dc0c65f3e95460bd59baef99564
[openldap] / servers / slapd / slapcommon.c
1 /* slapcommon.c - common routine for the slap tools */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2014 The OpenLDAP Foundation.
6  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
7  * Portions Copyright 2003 IBM Corporation.
8  * All rights reserved.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted only as authorized by the OpenLDAP
12  * Public License.
13  *
14  * A copy of this license is available in file LICENSE in the
15  * top-level directory of the distribution or, alternatively, at
16  * <http://www.OpenLDAP.org/license.html>.
17  */
18 /* ACKNOWLEDGEMENTS:
19  * This work was initially developed by Kurt Zeilenga for inclusion
20  * in OpenLDAP Software.  Additional signficant contributors include
21  *    Jong Hyuk Choi
22  *    Hallvard B. Furuseth
23  *    Howard Chu
24  *    Pierangelo Masarati
25  */
26
27 #include "portable.h"
28
29 #include <stdio.h>
30
31 #include <ac/stdlib.h>
32 #include <ac/ctype.h>
33 #include <ac/string.h>
34 #include <ac/socket.h>
35 #include <ac/unistd.h>
36
37 #include "slapcommon.h"
38 #include "lutil.h"
39 #include "ldif.h"
40
41 tool_vars tool_globals;
42
43 #ifdef CSRIMALLOC
44 static char *leakfilename;
45 static FILE *leakfile;
46 #endif
47
48 static LDIFFP dummy;
49
50 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
51 int start_syslog;
52 static char **syslog_unknowns;
53 #ifdef LOG_LOCAL4
54 static int syslogUser = SLAP_DEFAULT_SYSLOG_USER;
55 #endif /* LOG_LOCAL4 */
56 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
57
58 static void
59 usage( int tool, const char *progname )
60 {
61         char *options = NULL;
62         fprintf( stderr,
63                 "usage: %s [-v] [-d debuglevel] [-f configfile] [-F configdir] [-o <name>[=<value>]]",
64                 progname );
65
66         switch( tool ) {
67         case SLAPACL:
68                 options = "\n\t[-U authcID | -D authcDN] [-X authzID | -o authzDN=<DN>]"
69                         "\n\t-b DN [-u] [attr[/access][:value]] [...]\n";
70                 break;
71
72         case SLAPADD:
73                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]\n"
74                         "\t[-l ldiffile] [-j linenumber] [-q] [-u] [-s] [-w]\n";
75                 break;
76
77         case SLAPAUTH:
78                 options = "\n\t[-U authcID] [-X authzID] [-R realm] [-M mech] ID [...]\n";
79                 break;
80
81         case SLAPCAT:
82                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]"
83                         " [-l ldiffile] [-a filter] [-s subtree] [-H url]\n";
84                 break;
85
86         case SLAPDN:
87                 options = "\n\t[-N | -P] DN [...]\n";
88                 break;
89
90         case SLAPINDEX:
91                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix] [attr ...] [-q] [-t]\n";
92                 break;
93
94         case SLAPTEST:
95                 options = " [-n databasenumber] [-u] [-Q]\n";
96                 break;
97
98         case SLAPSCHEMA:
99                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]"
100                         " [-l errorfile] [-a filter] [-s subtree] [-H url]\n";
101                 break;
102         }
103
104         if ( options != NULL ) {
105                 fputs( options, stderr );
106         }
107         exit( EXIT_FAILURE );
108 }
109
110 static int
111 parse_slapopt( int tool, int *mode )
112 {
113         size_t  len = 0;
114         char    *p;
115
116         p = strchr( optarg, '=' );
117         if ( p != NULL ) {
118                 len = p - optarg;
119                 p++;
120         }
121
122         if ( strncasecmp( optarg, "sockurl", len ) == 0 ) {
123                 if ( !BER_BVISNULL( &listener_url ) ) {
124                         ber_memfree( listener_url.bv_val );
125                 }
126                 ber_str2bv( p, 0, 1, &listener_url );
127
128         } else if ( strncasecmp( optarg, "domain", len ) == 0 ) {
129                 if ( !BER_BVISNULL( &peer_domain ) ) {
130                         ber_memfree( peer_domain.bv_val );
131                 }
132                 ber_str2bv( p, 0, 1, &peer_domain );
133
134         } else if ( strncasecmp( optarg, "peername", len ) == 0 ) {
135                 if ( !BER_BVISNULL( &peer_name ) ) {
136                         ber_memfree( peer_name.bv_val );
137                 }
138                 ber_str2bv( p, 0, 1, &peer_name );
139
140         } else if ( strncasecmp( optarg, "sockname", len ) == 0 ) {
141                 if ( !BER_BVISNULL( &sock_name ) ) {
142                         ber_memfree( sock_name.bv_val );
143                 }
144                 ber_str2bv( p, 0, 1, &sock_name );
145
146         } else if ( strncasecmp( optarg, "ssf", len ) == 0 ) {
147                 if ( lutil_atou( &ssf, p ) ) {
148                         Debug( LDAP_DEBUG_ANY, "unable to parse ssf=\"%s\".\n", p, 0, 0 );
149                         return -1;
150                 }
151
152         } else if ( strncasecmp( optarg, "transport_ssf", len ) == 0 ) {
153                 if ( lutil_atou( &transport_ssf, p ) ) {
154                         Debug( LDAP_DEBUG_ANY, "unable to parse transport_ssf=\"%s\".\n", p, 0, 0 );
155                         return -1;
156                 }
157
158         } else if ( strncasecmp( optarg, "tls_ssf", len ) == 0 ) {
159                 if ( lutil_atou( &tls_ssf, p ) ) {
160                         Debug( LDAP_DEBUG_ANY, "unable to parse tls_ssf=\"%s\".\n", p, 0, 0 );
161                         return -1;
162                 }
163
164         } else if ( strncasecmp( optarg, "sasl_ssf", len ) == 0 ) {
165                 if ( lutil_atou( &sasl_ssf, p ) ) {
166                         Debug( LDAP_DEBUG_ANY, "unable to parse sasl_ssf=\"%s\".\n", p, 0, 0 );
167                         return -1;
168                 }
169
170         } else if ( strncasecmp( optarg, "authzDN", len ) == 0 ) {
171                 ber_str2bv( p, 0, 1, &authzDN );
172
173 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
174         } else if ( strncasecmp( optarg, "syslog", len ) == 0 ) {
175                 if ( parse_debug_level( p, &ldap_syslog, &syslog_unknowns ) ) {
176                         return -1;
177                 }
178                 start_syslog = 1;
179
180         } else if ( strncasecmp( optarg, "syslog-level", len ) == 0 ) {
181                 if ( parse_syslog_level( p, &ldap_syslog_level ) ) {
182                         return -1;
183                 }
184                 start_syslog = 1;
185
186 #ifdef LOG_LOCAL4
187         } else if ( strncasecmp( optarg, "syslog-user", len ) == 0 ) {
188                 if ( parse_syslog_user( p, &syslogUser ) ) {
189                         return -1;
190                 }
191                 start_syslog = 1;
192 #endif /* LOG_LOCAL4 */
193 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
194
195         } else if ( strncasecmp( optarg, "schema-check", len ) == 0 ) {
196                 switch ( tool ) {
197                 case SLAPADD:
198                         if ( strcasecmp( p, "yes" ) == 0 ) {
199                                 *mode &= ~SLAP_TOOL_NO_SCHEMA_CHECK;
200                         } else if ( strcasecmp( p, "no" ) == 0 ) {
201                                 *mode |= SLAP_TOOL_NO_SCHEMA_CHECK;
202                         } else {
203                                 Debug( LDAP_DEBUG_ANY, "unable to parse schema-check=\"%s\".\n", p, 0, 0 );
204                                 return -1;
205                         }
206                         break;
207
208                 default:
209                         Debug( LDAP_DEBUG_ANY, "schema-check meaningless for tool.\n", 0, 0, 0 );
210                         break;
211                 }
212
213         } else if ( strncasecmp( optarg, "value-check", len ) == 0 ) {
214                 switch ( tool ) {
215                 case SLAPADD:
216                         if ( strcasecmp( p, "yes" ) == 0 ) {
217                                 *mode |= SLAP_TOOL_VALUE_CHECK;
218                         } else if ( strcasecmp( p, "no" ) == 0 ) {
219                                 *mode &= ~SLAP_TOOL_VALUE_CHECK;
220                         } else {
221                                 Debug( LDAP_DEBUG_ANY, "unable to parse value-check=\"%s\".\n", p, 0, 0 );
222                                 return -1;
223                         }
224                         break;
225
226                 default:
227                         Debug( LDAP_DEBUG_ANY, "value-check meaningless for tool.\n", 0, 0, 0 );
228                         break;
229                 }
230
231         } else if ( strncasecmp( optarg, "ldif-wrap", len ) == 0 ) {
232                 switch ( tool ) {
233                 case SLAPCAT:
234                         if ( strcasecmp( p, "no" ) == 0 ) {
235                                 ldif_wrap = LDIF_LINE_WIDTH_MAX;
236
237                         } else {
238                                 unsigned int u;
239                                 if ( lutil_atou( &u, p ) ) {
240                                         Debug( LDAP_DEBUG_ANY, "unable to parse ldif-wrap=\"%s\".\n", p, 0, 0 );
241                                         return -1;
242                                 }
243                                 ldif_wrap = (ber_len_t)u;
244                         }
245                         break;
246
247                 default:
248                         Debug( LDAP_DEBUG_ANY, "value-check meaningless for tool.\n", 0, 0, 0 );
249                         break;
250                 }
251
252         } else {
253                 return -1;
254         }
255
256         return 0;
257 }
258
259 /*
260  * slap_tool_init - initialize slap utility, handle program options.
261  * arguments:
262  *      name            program name
263  *      tool            tool code
264  *      argc, argv      command line arguments
265  */
266
267 static int need_shutdown;
268
269 void
270 slap_tool_init(
271         const char* progname,
272         int tool,
273         int argc, char **argv )
274 {
275         char *options;
276         char *conffile = NULL;
277         char *confdir = NULL;
278         struct berval base = BER_BVNULL;
279         char *filterstr = NULL;
280         char *subtree = NULL;
281         char *ldiffile  = NULL;
282         char **debug_unknowns = NULL;
283         int rc, i;
284         int mode = SLAP_TOOL_MODE;
285         int truncatemode = 0;
286         int use_glue = 1;
287         int writer;
288
289 #ifdef LDAP_DEBUG
290         /* tools default to "none", so that at least LDAP_DEBUG_ANY 
291          * messages show up; use -d 0 to reset */
292         slap_debug = LDAP_DEBUG_NONE;
293         ldif_debug = slap_debug;
294 #endif
295         ldap_syslog = 0;
296
297 #ifdef CSRIMALLOC
298         leakfilename = malloc( strlen( progname ) + STRLENOF( ".leak" ) + 1 );
299         sprintf( leakfilename, "%s.leak", progname );
300         if( ( leakfile = fopen( leakfilename, "w" )) == NULL ) {
301                 leakfile = stderr;
302         }
303         free( leakfilename );
304         leakfilename = NULL;
305 #endif
306
307         ldif_wrap = LDIF_LINE_WIDTH;
308
309         scope = LDAP_SCOPE_DEFAULT;
310
311         switch( tool ) {
312         case SLAPADD:
313                 options = "b:cd:f:F:gj:l:n:o:qsS:uvw";
314                 break;
315
316         case SLAPCAT:
317                 options = "a:b:cd:f:F:gH:l:n:o:s:v";
318                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
319                 break;
320
321         case SLAPDN:
322                 options = "d:f:F:No:Pv";
323                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
324                 break;
325
326         case SLAPMODIFY:
327                 options = "b:cd:f:F:gj:l:n:o:qsS:uvw";
328                 break;
329
330         case SLAPSCHEMA:
331                 options = "a:b:cd:f:F:gH:l:n:o:s:v";
332                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
333                 break;
334
335         case SLAPTEST:
336                 options = "d:f:F:n:o:Quv";
337                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
338                 break;
339
340         case SLAPAUTH:
341                 options = "d:f:F:M:o:R:U:vX:";
342                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
343                 break;
344
345         case SLAPINDEX:
346                 options = "b:cd:f:F:gn:o:qtv";
347                 mode |= SLAP_TOOL_READMAIN;
348                 break;
349
350         case SLAPACL:
351                 options = "b:D:d:f:F:o:uU:vX:";
352                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
353                 break;
354
355         default:
356                 fprintf( stderr, "%s: unknown tool mode (%d)\n", progname, tool );
357                 exit( EXIT_FAILURE );
358         }
359
360         dbnum = -1;
361         while ( (i = getopt( argc, argv, options )) != EOF ) {
362                 switch ( i ) {
363                 case 'a':
364                         filterstr = ch_strdup( optarg );
365                         break;
366
367                 case 'b':
368                         ber_str2bv( optarg, 0, 1, &base );
369                         break;
370
371                 case 'c':       /* enable continue mode */
372                         continuemode++;
373                         break;
374
375                 case 'd': {     /* turn on debugging */
376                         int     level = 0;
377
378                         if ( parse_debug_level( optarg, &level, &debug_unknowns ) ) {
379                                 usage( tool, progname );
380                         }
381 #ifdef LDAP_DEBUG
382                         if ( level == 0 ) {
383                                 /* allow to reset log level */
384                                 slap_debug = 0;
385
386                         } else {
387                                 slap_debug |= level;
388                         }
389 #else
390                         if ( level != 0 )
391                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
392                                        stderr );
393 #endif
394                         } break;
395
396                 case 'D':
397                         ber_str2bv( optarg, 0, 1, &authcDN );
398                         break;
399
400                 case 'f':       /* specify a conf file */
401                         conffile = ch_strdup( optarg );
402                         break;
403
404                 case 'F':       /* specify a conf dir */
405                         confdir = ch_strdup( optarg );
406                         break;
407
408                 case 'g':       /* disable subordinate glue */
409                         use_glue = 0;
410                         break;
411
412                 case 'H': {
413                         LDAPURLDesc *ludp;
414                         int rc;
415
416                         rc = ldap_url_parse_ext( optarg, &ludp,
417                                 LDAP_PVT_URL_PARSE_NOEMPTY_HOST | LDAP_PVT_URL_PARSE_NOEMPTY_DN );
418                         if ( rc != LDAP_URL_SUCCESS ) {
419                                 usage( tool, progname );
420                         }
421
422                         /* don't accept host, port, attrs, extensions */
423                         if ( ldap_pvt_url_scheme2proto( ludp->lud_scheme ) != LDAP_PROTO_TCP ) {
424                                 usage( tool, progname );
425                         }
426
427                         if ( ludp->lud_host != NULL ) {
428                                 usage( tool, progname );
429                         }
430
431                         if ( ludp->lud_port != 0 ) {
432                                 usage( tool, progname );
433                         }
434
435                         if ( ludp->lud_attrs != NULL ) {
436                                 usage( tool, progname );
437                         }
438
439                         if ( ludp->lud_exts != NULL ) {
440                                 usage( tool, progname );
441                         }
442
443                         if ( ludp->lud_dn != NULL && ludp->lud_dn[0] != '\0' ) {
444                                 ch_free( subtree );
445                                 subtree = ludp->lud_dn;
446                                 ludp->lud_dn = NULL;
447                         }
448
449                         if ( ludp->lud_filter != NULL && ludp->lud_filter[0] != '\0' ) {
450                                 filterstr = ludp->lud_filter;
451                                 ludp->lud_filter = NULL;
452                         }
453
454                         scope = ludp->lud_scope;
455
456                         ldap_free_urldesc( ludp );
457                         } break;
458
459                 case 'j':       /* jump to linenumber */
460                         if ( lutil_atoul( &jumpline, optarg ) ) {
461                                 usage( tool, progname );
462                         }
463                         break;
464
465                 case 'l':       /* LDIF file */
466                         ldiffile = ch_strdup( optarg );
467                         break;
468
469                 case 'M':
470                         ber_str2bv( optarg, 0, 0, &mech );
471                         break;
472
473                 case 'N':
474                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_NORMAL ) {
475                                 usage( tool, progname );
476                         }
477                         dn_mode = SLAP_TOOL_LDAPDN_NORMAL;
478                         break;
479
480                 case 'n':       /* which config file db to index */
481                         if ( lutil_atoi( &dbnum, optarg ) || dbnum < 0 ) {
482                                 usage( tool, progname );
483                         }
484                         break;
485
486                 case 'o':
487                         if ( parse_slapopt( tool, &mode ) ) {
488                                 usage( tool, progname );
489                         }
490                         break;
491
492                 case 'P':
493                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_PRETTY ) {
494                                 usage( tool, progname );
495                         }
496                         dn_mode = SLAP_TOOL_LDAPDN_PRETTY;
497                         break;
498
499                 case 'Q':
500                         quiet++;
501                         slap_debug = 0;
502                         break;
503
504                 case 'q':       /* turn on quick */
505                         mode |= SLAP_TOOL_QUICK;
506                         break;
507
508                 case 'R':
509                         realm = optarg;
510                         break;
511
512                 case 'S':
513                         if ( lutil_atou( &csnsid, optarg )
514                                 || csnsid > SLAP_SYNC_SID_MAX )
515                         {
516                                 usage( tool, progname );
517                         }
518                         break;
519
520                 case 's':
521                         switch ( tool ) {
522                         case SLAPADD:
523                         case SLAPMODIFY:
524                                 /* no schema check */
525                                 mode |= SLAP_TOOL_NO_SCHEMA_CHECK;
526                                 break;
527
528                         case SLAPCAT:
529                         case SLAPSCHEMA:
530                                 /* dump subtree */
531                                 subtree = ch_strdup( optarg );
532                                 break;
533                         }
534                         break;
535
536                 case 't':       /* turn on truncate */
537                         truncatemode++;
538                         mode |= SLAP_TRUNCATE_MODE;
539                         break;
540
541                 case 'U':
542                         ber_str2bv( optarg, 0, 0, &authcID );
543                         break;
544
545                 case 'u':       /* dry run */
546                         dryrun++;
547                         break;
548
549                 case 'v':       /* turn on verbose */
550                         verbose++;
551                         break;
552
553                 case 'w':       /* write context csn at the end */
554                         update_ctxcsn++;
555                         break;
556
557                 case 'X':
558                         ber_str2bv( optarg, 0, 0, &authzID );
559                         break;
560
561                 default:
562                         usage( tool, progname );
563                         break;
564                 }
565         }
566
567 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
568         if ( start_syslog ) {
569                 char *logName;
570 #ifdef HAVE_EBCDIC
571                 logName = ch_strdup( progname );
572                 __atoe( logName );
573 #else
574                 logName = (char *)progname;
575 #endif
576
577 #ifdef LOG_LOCAL4
578                 openlog( logName, OPENLOG_OPTIONS, syslogUser );
579 #elif defined LOG_DEBUG
580                 openlog( logName, OPENLOG_OPTIONS );
581 #endif
582 #ifdef HAVE_EBCDIC
583                 free( logName );
584                 logName = NULL;
585 #endif
586         }
587 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
588
589         switch ( tool ) {
590         case SLAPCAT:
591         case SLAPSCHEMA:
592                 writer = 1;
593                 break;
594
595         default:
596                 writer = 0;
597                 break;
598         }
599
600         switch ( tool ) {
601         case SLAPADD:
602         case SLAPCAT:
603         case SLAPMODIFY:
604         case SLAPSCHEMA:
605                 if ( ( argc != optind ) || (dbnum >= 0 && base.bv_val != NULL ) ) {
606                         usage( tool, progname );
607                 }
608
609                 break;
610
611         case SLAPINDEX:
612                 if ( dbnum >= 0 && base.bv_val != NULL ) {
613                         usage( tool, progname );
614                 }
615
616                 break;
617
618         case SLAPDN:
619                 if ( argc == optind ) {
620                         usage( tool, progname );
621                 }
622                 break;
623
624         case SLAPAUTH:
625                 if ( argc == optind && BER_BVISNULL( &authcID ) ) {
626                         usage( tool, progname );
627                 }
628                 break;
629
630         case SLAPTEST:
631                 if ( argc != optind ) {
632                         usage( tool, progname );
633                 }
634                 break;
635
636         case SLAPACL:
637                 if ( !BER_BVISNULL( &authcDN ) && !BER_BVISNULL( &authcID ) ) {
638                         usage( tool, progname );
639                 }
640                 if ( BER_BVISNULL( &base ) ) {
641                         usage( tool, progname );
642                 }
643                 ber_dupbv( &baseDN, &base );
644                 break;
645
646         default:
647                 break;
648         }
649
650         if ( ldiffile == NULL ) {
651                 dummy.fp = writer ? stdout : stdin;
652                 ldiffp = &dummy;
653
654         } else if ((ldiffp = ldif_open( ldiffile, writer ? "w" : "r" ))
655                 == NULL )
656         {
657                 perror( ldiffile );
658                 exit( EXIT_FAILURE );
659         }
660
661         /*
662          * initialize stuff and figure out which backend we're dealing with
663          */
664
665         rc = slap_init( mode, progname );
666         if ( rc != 0 ) {
667                 fprintf( stderr, "%s: slap_init failed!\n", progname );
668                 exit( EXIT_FAILURE );
669         }
670
671         rc = read_config( conffile, confdir );
672
673         if ( rc != 0 ) {
674                 fprintf( stderr, "%s: bad configuration %s!\n",
675                         progname, confdir ? "directory" : "file" );
676                 exit( EXIT_FAILURE );
677         }
678
679         if ( debug_unknowns ) {
680                 rc = parse_debug_unknowns( debug_unknowns, &slap_debug );
681                 ldap_charray_free( debug_unknowns );
682                 debug_unknowns = NULL;
683                 if ( rc )
684                         exit( EXIT_FAILURE );
685         }
686
687 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
688         if ( syslog_unknowns ) {
689                 rc = parse_debug_unknowns( syslog_unknowns, &ldap_syslog );
690                 ldap_charray_free( syslog_unknowns );
691                 syslog_unknowns = NULL;
692                 if ( rc )
693                         exit( EXIT_FAILURE );
694         }
695 #endif
696
697         at_oc_cache = 1;
698
699         switch ( tool ) {
700         case SLAPADD:
701         case SLAPCAT:
702         case SLAPINDEX:
703         case SLAPMODIFY:
704         case SLAPSCHEMA:
705                 if ( !nbackends ) {
706                         fprintf( stderr, "No databases found "
707                                         "in config file\n" );
708                         exit( EXIT_FAILURE );
709                 }
710                 break;
711
712         default:
713                 break;
714         }
715
716         if ( use_glue ) {
717                 rc = glue_sub_attach( 0 );
718
719                 if ( rc != 0 ) {
720                         fprintf( stderr,
721                                 "%s: subordinate configuration error\n", progname );
722                         exit( EXIT_FAILURE );
723                 }
724         }
725
726         rc = slap_schema_check();
727
728         if ( rc != 0 ) {
729                 fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
730                 exit( EXIT_FAILURE );
731         }
732
733         switch ( tool ) {
734         case SLAPTEST:
735                 if ( dbnum >= 0 )
736                         goto get_db;
737                 /* FALLTHRU */
738         case SLAPDN:
739         case SLAPAUTH:
740                 be = NULL;
741                 goto startup;
742
743         default:
744                 break;
745         }
746
747         if( filterstr ) {
748                 filter = str2filter( filterstr );
749
750                 if( filter == NULL ) {
751                         fprintf( stderr, "Invalid filter '%s'\n", filterstr );
752                         exit( EXIT_FAILURE );
753                 }
754
755                 ch_free( filterstr );
756                 filterstr = NULL;
757         }
758
759         if( subtree ) {
760                 struct berval val;
761                 ber_str2bv( subtree, 0, 0, &val );
762                 rc = dnNormalize( 0, NULL, NULL, &val, &sub_ndn, NULL );
763                 if( rc != LDAP_SUCCESS ) {
764                         fprintf( stderr, "Invalid subtree DN '%s'\n", subtree );
765                         exit( EXIT_FAILURE );
766                 }
767
768                 if ( BER_BVISNULL( &base ) && dbnum == -1 ) {
769                         base = val;
770                 } else {
771                         free( subtree );
772                         subtree = NULL;
773                 }
774         }
775
776         if( base.bv_val != NULL ) {
777                 struct berval nbase;
778
779                 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
780                 if( rc != LDAP_SUCCESS ) {
781                         fprintf( stderr, "%s: slap_init invalid suffix (\"%s\")\n",
782                                 progname, base.bv_val );
783                         exit( EXIT_FAILURE );
784                 }
785
786                 be = select_backend( &nbase, 0 );
787                 ber_memfree( nbase.bv_val );
788                 BER_BVZERO( &nbase );
789
790                 if( be == NULL ) {
791                         fprintf( stderr, "%s: slap_init no backend for \"%s\"\n",
792                                 progname, base.bv_val );
793                         exit( EXIT_FAILURE );
794                 }
795                 switch ( tool ) {
796                 case SLAPACL:
797                         goto startup;
798
799                 default:
800                         break;
801                 }
802
803                 /* If the named base is a glue master, operate on the
804                  * entire context
805                  */
806                 if ( SLAP_GLUE_INSTANCE( be ) ) {
807                         nosubordinates = 1;
808                 }
809
810                 ch_free( base.bv_val );
811                 BER_BVZERO( &base );
812
813         } else if ( dbnum == -1 ) {
814                 /* no suffix and no dbnum specified, just default to
815                  * the first available database
816                  */
817                 if ( nbackends <= 0 ) {
818                         fprintf( stderr, "No available databases\n" );
819                         exit( EXIT_FAILURE );
820                 }
821                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
822                         dbnum++;
823
824                         /* db #0 is cn=config, don't select it as a default */
825                         if ( dbnum < 1 ) continue;
826                 
827                         if ( SLAP_MONITOR(be))
828                                 continue;
829
830                 /* If just doing the first by default and it is a
831                  * glue subordinate, find the master.
832                  */
833                         if ( SLAP_GLUE_SUBORDINATE(be) ) {
834                                 nosubordinates = 1;
835                                 continue;
836                         }
837                         break;
838                 }
839
840                 if ( !be ) {
841                         fprintf( stderr, "Available database(s) "
842                                         "do not allow %s\n", progname );
843                         exit( EXIT_FAILURE );
844                 }
845                 
846                 if ( nosubordinates == 0 && dbnum > 1 ) {
847                         Debug( LDAP_DEBUG_ANY,
848                                 "The first database does not allow %s;"
849                                 " using the first available one (%d)\n",
850                                 progname, dbnum, 0 );
851                 }
852
853         } else if ( dbnum >= nbackends ) {
854                 fprintf( stderr,
855                         "Database number selected via -n is out of range\n"
856                         "Must be in the range 0 to %d"
857                         " (the number of configured databases)\n",
858                         nbackends - 1 );
859                 exit( EXIT_FAILURE );
860
861         } else {
862 get_db:
863                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
864                         if ( dbnum == 0 ) break;
865                         dbnum--;
866                 }
867         }
868
869         if ( scope != LDAP_SCOPE_DEFAULT && BER_BVISNULL( &sub_ndn ) ) {
870                 if ( be && be->be_nsuffix ) {
871                         ber_dupbv( &sub_ndn, be->be_nsuffix );
872
873                 } else {
874                         fprintf( stderr,
875                                 "<scope> needs a DN or a valid database\n" );
876                         exit( EXIT_FAILURE );
877                 }
878         }
879
880 startup:;
881         if ( be ) {
882                 BackendDB *bdtmp;
883
884                 dbnum = 0;
885                 LDAP_STAILQ_FOREACH( bdtmp, &backendDB, be_next ) {
886                         if ( bdtmp == be ) break;
887                         dbnum++;
888                 }
889         }
890
891 #ifdef CSRIMALLOC
892         mal_leaktrace(1);
893 #endif
894
895         if ( conffile != NULL ) {
896                 ch_free( conffile );
897                 conffile = NULL;
898         }
899
900         if ( confdir != NULL ) {
901                 ch_free( confdir );
902                 confdir = NULL;
903         }
904
905         if ( ldiffile != NULL ) {
906                 ch_free( ldiffile );
907                 ldiffile = NULL;
908         }
909
910         /* slapdn doesn't specify a backend to startup */
911         if ( !dryrun && tool != SLAPDN ) {
912                 need_shutdown = 1;
913
914                 if ( slap_startup( be ) ) {
915                         switch ( tool ) {
916                         case SLAPTEST:
917                                 fprintf( stderr, "slap_startup failed "
918                                                 "(test would succeed using "
919                                                 "the -u switch)\n" );
920                                 break;
921
922                         default:
923                                 fprintf( stderr, "slap_startup failed\n" );
924                                 break;
925                         }
926
927                         exit( EXIT_FAILURE );
928                 }
929         }
930 }
931
932 int slap_tool_destroy( void )
933 {
934         int rc = 0;
935         if ( !dryrun ) {
936                 if ( need_shutdown ) {
937                         if ( slap_shutdown( be ))
938                                 rc = EXIT_FAILURE;
939                 }
940                 if ( slap_destroy())
941                         rc = EXIT_FAILURE;
942         }
943 #ifdef SLAPD_MODULES
944         if ( slapMode == SLAP_SERVER_MODE ) {
945         /* always false. just pulls in necessary symbol references. */
946                 lutil_uuidstr(NULL, 0);
947         }
948         module_kill();
949 #endif
950         schema_destroy();
951 #ifdef HAVE_TLS
952         ldap_pvt_tls_destroy();
953 #endif
954         config_destroy();
955
956 #ifdef CSRIMALLOC
957         mal_dumpleaktrace( leakfile );
958 #endif
959
960         if ( !BER_BVISNULL( &authcDN ) ) {
961                 ch_free( authcDN.bv_val );
962                 BER_BVZERO( &authcDN );
963         }
964
965         if ( ldiffp && ldiffp != &dummy ) {
966                 ldif_close( ldiffp );
967         }
968         return rc;
969 }
970
971 int
972 slap_tool_update_ctxcsn(
973         const char *progname,
974         unsigned long sid,
975         struct berval *bvtext )
976 {
977         struct berval ctxdn;
978         ID ctxcsn_id;
979         Entry *ctxcsn_e;
980         int rc = EXIT_SUCCESS;
981
982         if ( !(update_ctxcsn && !dryrun && sid != SLAP_SYNC_SID_MAX + 1) ) {
983                 return rc;
984         }
985
986         if ( SLAP_SYNC_SUBENTRY( be )) {
987                 build_new_dn( &ctxdn, &be->be_nsuffix[0],
988                         (struct berval *)&slap_ldapsync_cn_bv, NULL );
989         } else {
990                 ctxdn = be->be_nsuffix[0];
991         }
992         ctxcsn_id = be->be_dn2id_get( be, &ctxdn );
993         if ( ctxcsn_id == NOID ) {
994                 if ( SLAP_SYNC_SUBENTRY( be )) {
995                         ctxcsn_e = slap_create_context_csn_entry( be, NULL );
996                         for ( sid = 0; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
997                                 if ( maxcsn[ sid ].bv_len ) {
998                                         attr_merge_one( ctxcsn_e, slap_schema.si_ad_contextCSN,
999                                                 &maxcsn[ sid ], NULL );
1000                                 }
1001                         }
1002                         ctxcsn_id = be->be_entry_put( be, ctxcsn_e, bvtext );
1003                         if ( ctxcsn_id == NOID ) {
1004                                 fprintf( stderr, "%s: couldn't create context entry\n", progname );
1005                                 rc = EXIT_FAILURE;
1006                         }
1007                         entry_free( ctxcsn_e );
1008                 } else {
1009                         fprintf( stderr, "%s: context entry is missing\n", progname );
1010                         rc = EXIT_FAILURE;
1011                 }
1012         } else {
1013                 ctxcsn_e = be->be_entry_get( be, ctxcsn_id );
1014                 if ( ctxcsn_e != NULL ) {
1015                         Operation op = { 0 };
1016                         Entry *e = entry_dup( ctxcsn_e );
1017                         Attribute *attr = attr_find( e->e_attrs, slap_schema.si_ad_contextCSN );
1018
1019                         int change;
1020                         op.o_bd = be;
1021                         be_entry_release_r( &op, ctxcsn_e );
1022
1023                         if ( attr ) {
1024                                 int             i;
1025
1026                                 change = 0;
1027
1028                                 for ( i = 0; !BER_BVISNULL( &attr->a_nvals[ i ] ); i++ ) {
1029                                         int rc_sid;
1030                                         int match;
1031                                         const char *text = NULL;
1032
1033                                         rc_sid = slap_parse_csn_sid( &attr->a_nvals[ i ] );
1034                                         if ( rc_sid < 0 ) {
1035                                                 Debug( LDAP_DEBUG_ANY,
1036                                                         "%s: unable to extract SID "
1037                                                         "from #%d contextCSN=%s\n",
1038                                                         progname, i,
1039                                                         attr->a_nvals[ i ].bv_val );
1040                                                 continue;
1041                                         }
1042
1043                                         assert( rc_sid <= SLAP_SYNC_SID_MAX );
1044
1045                                         sid = (unsigned)rc_sid;
1046
1047                                         if ( maxcsn[ sid ].bv_len == 0 ) {
1048                                                 match = -1;
1049
1050                                         } else {
1051                                                 value_match( &match, slap_schema.si_ad_entryCSN,
1052                                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
1053                                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
1054                                                         &maxcsn[ sid ], &attr->a_nvals[i], &text );
1055                                         }
1056
1057                                         if ( match > 0 ) {
1058                                                 change = 1;
1059                                         } else {
1060                                                 AC_MEMCPY( maxcsn[ sid ].bv_val,
1061                                                         attr->a_nvals[ i ].bv_val,
1062                                                         attr->a_nvals[ i ].bv_len );
1063                                                 maxcsn[ sid ].bv_val[ attr->a_nvals[ i ].bv_len ] = '\0';
1064                                                 maxcsn[ sid ].bv_len = attr->a_nvals[ i ].bv_len;
1065                                         }
1066                                 }
1067
1068                                 if ( change ) {
1069                                         if ( attr->a_nvals != attr->a_vals ) {
1070                                                 ber_bvarray_free( attr->a_nvals );
1071                                         }
1072                                         attr->a_nvals = NULL;
1073                                         ber_bvarray_free( attr->a_vals );
1074                                         attr->a_vals = NULL;
1075                                         attr->a_numvals = 0;
1076                                 }
1077                         } else {
1078                                 change = 1;
1079                         }
1080
1081                         if ( change ) {
1082                                 for ( sid = 0; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
1083                                         if ( maxcsn[ sid ].bv_len ) {
1084                                                 attr_merge_one( e, slap_schema.si_ad_contextCSN,
1085                                                         &maxcsn[ sid], NULL );
1086                                         }
1087                                 }
1088
1089                                 ctxcsn_id = be->be_entry_modify( be, e, bvtext );
1090                                 if( ctxcsn_id == NOID ) {
1091                                         fprintf( stderr, "%s: could not modify ctxcsn (%s)\n",
1092                                                 progname, bvtext->bv_val ? bvtext->bv_val : "" );
1093                                         rc = EXIT_FAILURE;
1094                                 } else if ( verbose ) {
1095                                         fprintf( stderr, "modified: \"%s\" (%08lx)\n",
1096                                                 e->e_dn, (long) ctxcsn_id );
1097                                 }
1098                         }
1099                         entry_free( e );
1100                 }
1101         } 
1102
1103         return rc;
1104 }
1105
1106 /*
1107  * return value:
1108  *      -1:                     update_ctxcsn == 0
1109  *      SLAP_SYNC_SID_MAX + 1:  unable to extract SID
1110  *      0 <= SLAP_SYNC_SID_MAX: the SID
1111  */
1112 unsigned long
1113 slap_tool_update_ctxcsn_check(
1114         const char *progname,
1115         Entry *e )
1116 {
1117         if ( update_ctxcsn ) {
1118                 unsigned long sid = SLAP_SYNC_SID_MAX + 1;
1119                 int rc_sid;
1120                 Attribute *attr;
1121
1122                 attr = attr_find( e->e_attrs, slap_schema.si_ad_entryCSN );
1123                 assert( attr != NULL );
1124
1125                 rc_sid = slap_parse_csn_sid( &attr->a_nvals[ 0 ] );
1126                 if ( rc_sid < 0 ) {
1127                         Debug( LDAP_DEBUG_ANY, "%s: could not "
1128                                 "extract SID from entryCSN=%s, entry dn=\"%s\"\n",
1129                                 progname, attr->a_nvals[ 0 ].bv_val, e->e_name.bv_val );
1130                         return (unsigned long)(-1);
1131
1132                 } else {
1133                         int match;
1134                         const char *text = NULL;
1135
1136                         assert( rc_sid <= SLAP_SYNC_SID_MAX );
1137
1138                         sid = (unsigned)rc_sid;
1139                         if ( maxcsn[ sid ].bv_len != 0 ) {
1140                                 match = 0;
1141                                 value_match( &match, slap_schema.si_ad_entryCSN,
1142                                         slap_schema.si_ad_entryCSN->ad_type->sat_ordering,
1143                                         SLAP_MR_VALUE_OF_ATTRIBUTE_SYNTAX,
1144                                         &maxcsn[ sid ], &attr->a_nvals[0], &text );
1145                         } else {
1146                                 match = -1;
1147                         }
1148                         if ( match < 0 ) {
1149                                 strcpy( maxcsn[ sid ].bv_val, attr->a_nvals[0].bv_val );
1150                                 maxcsn[ sid ].bv_len = attr->a_nvals[0].bv_len;
1151                         }
1152                 }
1153         }
1154
1155         return (unsigned long)(-1);
1156 }
1157
1158 int
1159 slap_tool_update_ctxcsn_init(void)
1160 {
1161         if ( update_ctxcsn ) {
1162                 unsigned long sid;
1163                 maxcsn[ 0 ].bv_val = maxcsnbuf;
1164                 for ( sid = 1; sid <= SLAP_SYNC_SID_MAX; sid++ ) {
1165                         maxcsn[ sid ].bv_val = maxcsn[ sid - 1 ].bv_val + LDAP_PVT_CSNSTR_BUFSIZE;
1166                         maxcsn[ sid ].bv_len = 0;
1167                 }
1168         }
1169
1170         return 0;
1171 }
1172
1173 int
1174 slap_tool_entry_check(
1175         const char *progname,
1176         Operation *op,
1177         Entry *e,
1178         int lineno,
1179         const char **text,
1180         char *textbuf,
1181         size_t textlen )
1182 {
1183         /* NOTE: we may want to conditionally enable manage */
1184         int manage = 0;
1185
1186         Attribute *oc = attr_find( e->e_attrs,
1187                 slap_schema.si_ad_objectClass );
1188
1189         if( oc == NULL ) {
1190                 fprintf( stderr, "%s: dn=\"%s\" (line=%d): %s\n",
1191                         progname, e->e_dn, lineno,
1192                         "no objectClass attribute");
1193                 return LDAP_NO_SUCH_ATTRIBUTE;
1194         }
1195
1196         /* check schema */
1197         op->o_bd = be;
1198
1199         if ( (slapMode & SLAP_TOOL_NO_SCHEMA_CHECK) == 0) {
1200                 int rc = entry_schema_check( op, e, NULL, manage, 1, NULL,
1201                         text, textbuf, textlen );
1202
1203                 if( rc != LDAP_SUCCESS ) {
1204                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
1205                                 progname, e->e_dn, lineno, rc, *text );
1206                         return rc;
1207                 }
1208                 textbuf[ 0 ] = '\0';
1209         }
1210
1211         if ( (slapMode & SLAP_TOOL_VALUE_CHECK) != 0) {
1212                 Modifications *ml = NULL;
1213
1214                 int rc = slap_entry2mods( e, &ml, text, textbuf, textlen );
1215                 if ( rc != LDAP_SUCCESS ) {
1216                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
1217                                 progname, e->e_dn, lineno, rc, *text );
1218                         return rc;
1219                 }
1220                 textbuf[ 0 ] = '\0';
1221
1222                 rc = slap_mods_check( op, ml, text, textbuf, textlen, NULL );
1223                 slap_mods_free( ml, 1 );
1224                 if ( rc != LDAP_SUCCESS ) {
1225                         fprintf( stderr, "%s: dn=\"%s\" (line=%d): (%d) %s\n",
1226                                 progname, e->e_dn, lineno, rc, *text );
1227                         return rc;
1228                 }
1229                 textbuf[ 0 ] = '\0';
1230         }
1231
1232         return LDAP_SUCCESS;
1233 }
1234