]> git.sur5r.net Git - openldap/blob - servers/slapd/slapcommon.c
cleanup option parsing
[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-2010 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]\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 {
196                 return -1;
197         }
198
199         return 0;
200 }
201
202 /*
203  * slap_tool_init - initialize slap utility, handle program options.
204  * arguments:
205  *      name            program name
206  *      tool            tool code
207  *      argc, argv      command line arguments
208  */
209
210 static int need_shutdown;
211
212 void
213 slap_tool_init(
214         const char* progname,
215         int tool,
216         int argc, char **argv )
217 {
218         char *options;
219         char *conffile = NULL;
220         char *confdir = NULL;
221         struct berval base = BER_BVNULL;
222         char *filterstr = NULL;
223         char *subtree = NULL;
224         char *ldiffile  = NULL;
225         char **debug_unknowns = NULL;
226         int rc, i;
227         int mode = SLAP_TOOL_MODE;
228         int truncatemode = 0;
229         int use_glue = 1;
230         int writer;
231
232 #ifdef LDAP_DEBUG
233         /* tools default to "none", so that at least LDAP_DEBUG_ANY 
234          * messages show up; use -d 0 to reset */
235         slap_debug = LDAP_DEBUG_NONE;
236         ldif_debug = slap_debug;
237 #endif
238         ldap_syslog = 0;
239
240 #ifdef CSRIMALLOC
241         leakfilename = malloc( strlen( progname ) + STRLENOF( ".leak" ) + 1 );
242         sprintf( leakfilename, "%s.leak", progname );
243         if( ( leakfile = fopen( leakfilename, "w" )) == NULL ) {
244                 leakfile = stderr;
245         }
246         free( leakfilename );
247         leakfilename = NULL;
248 #endif
249
250         scope = LDAP_SCOPE_DEFAULT;
251
252         switch( tool ) {
253         case SLAPADD:
254                 options = "b:cd:f:F:gj:l:n:o:qsS:uvw";
255                 break;
256
257         case SLAPCAT:
258                 options = "a:b:cd:f:F:gH:l:n:o:s:v";
259                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
260                 break;
261
262         case SLAPDN:
263                 options = "d:f:F:No:Pv";
264                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
265                 break;
266
267         case SLAPSCHEMA:
268                 options = "a:b:cd:f:F:gH:l:n:o:s:v";
269                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
270                 break;
271
272         case SLAPTEST:
273                 options = "d:f:F:n:o:Quv";
274                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
275                 break;
276
277         case SLAPAUTH:
278                 options = "d:f:F:M:o:R:U:vX:";
279                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
280                 break;
281
282         case SLAPINDEX:
283                 options = "b:cd:f:F:gn:o:qtv";
284                 mode |= SLAP_TOOL_READMAIN;
285                 break;
286
287         case SLAPACL:
288                 options = "b:D:d:f:F:o:uU:vX:";
289                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
290                 break;
291
292         default:
293                 fprintf( stderr, "%s: unknown tool mode (%d)\n", progname, tool );
294                 exit( EXIT_FAILURE );
295         }
296
297         dbnum = -1;
298         while ( (i = getopt( argc, argv, options )) != EOF ) {
299                 switch ( i ) {
300                 case 'a':
301                         filterstr = ch_strdup( optarg );
302                         break;
303
304                 case 'b':
305                         ber_str2bv( optarg, 0, 1, &base );
306                         break;
307
308                 case 'c':       /* enable continue mode */
309                         continuemode++;
310                         break;
311
312                 case 'd': {     /* turn on debugging */
313                         int     level = 0;
314
315                         if ( parse_debug_level( optarg, &level, &debug_unknowns ) ) {
316                                 usage( tool, progname );
317                         }
318 #ifdef LDAP_DEBUG
319                         if ( level == 0 ) {
320                                 /* allow to reset log level */
321                                 slap_debug = 0;
322
323                         } else {
324                                 slap_debug |= level;
325                         }
326 #else
327                         if ( level != 0 )
328                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
329                                        stderr );
330 #endif
331                         } break;
332
333                 case 'D':
334                         ber_str2bv( optarg, 0, 1, &authcDN );
335                         break;
336
337                 case 'f':       /* specify a conf file */
338                         conffile = ch_strdup( optarg );
339                         break;
340
341                 case 'F':       /* specify a conf dir */
342                         confdir = ch_strdup( optarg );
343                         break;
344
345                 case 'g':       /* disable subordinate glue */
346                         use_glue = 0;
347                         break;
348
349                 case 'H': {
350                         LDAPURLDesc *ludp;
351                         int rc;
352
353                         rc = ldap_url_parse_ext( optarg, &ludp,
354                                 LDAP_PVT_URL_PARSE_NOEMPTY_HOST | LDAP_PVT_URL_PARSE_NOEMPTY_DN );
355                         if ( rc != LDAP_URL_SUCCESS ) {
356                                 usage( tool, progname );
357                         }
358
359                         /* don't accept host, port, attrs, extensions */
360                         if ( ldap_pvt_url_scheme2proto( ludp->lud_scheme ) != LDAP_PROTO_TCP ) {
361                                 usage( tool, progname );
362                         }
363
364                         if ( ludp->lud_host != NULL ) {
365                                 usage( tool, progname );
366                         }
367
368                         if ( ludp->lud_port != 0 ) {
369                                 usage( tool, progname );
370                         }
371
372                         if ( ludp->lud_attrs != NULL ) {
373                                 usage( tool, progname );
374                         }
375
376                         if ( ludp->lud_exts != NULL ) {
377                                 usage( tool, progname );
378                         }
379
380                         if ( ludp->lud_dn != NULL && ludp->lud_dn[0] != '\0' ) {
381                                 subtree = ludp->lud_dn;
382                                 ludp->lud_dn = NULL;
383                         }
384
385                         if ( ludp->lud_filter != NULL && ludp->lud_filter[0] != '\0' ) {
386                                 filterstr = ludp->lud_filter;
387                                 ludp->lud_filter = NULL;
388                         }
389
390                         scope = ludp->lud_scope;
391
392                         ldap_free_urldesc( ludp );
393                         } break;
394
395                 case 'j':       /* jump to linenumber */
396                         if ( lutil_atoi( &jumpline, optarg ) ) {
397                                 usage( tool, progname );
398                         }
399                         break;
400
401                 case 'l':       /* LDIF file */
402                         ldiffile = ch_strdup( optarg );
403                         break;
404
405                 case 'M':
406                         ber_str2bv( optarg, 0, 0, &mech );
407                         break;
408
409                 case 'N':
410                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_NORMAL ) {
411                                 usage( tool, progname );
412                         }
413                         dn_mode = SLAP_TOOL_LDAPDN_NORMAL;
414                         break;
415
416                 case 'n':       /* which config file db to index */
417                         if ( lutil_atoi( &dbnum, optarg ) || dbnum < 0 ) {
418                                 usage( tool, progname );
419                         }
420                         break;
421
422                 case 'o':
423                         if ( parse_slapopt( tool, &mode ) ) {
424                                 usage( tool, progname );
425                         }
426                         break;
427
428                 case 'P':
429                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_PRETTY ) {
430                                 usage( tool, progname );
431                         }
432                         dn_mode = SLAP_TOOL_LDAPDN_PRETTY;
433                         break;
434
435                 case 'Q':
436                         quiet++;
437                         slap_debug = 0;
438                         break;
439
440                 case 'q':       /* turn on quick */
441                         mode |= SLAP_TOOL_QUICK;
442                         break;
443
444                 case 'R':
445                         realm = optarg;
446                         break;
447
448                 case 'S':
449                         if ( lutil_atou( &csnsid, optarg )
450                                 || csnsid > SLAP_SYNC_SID_MAX )
451                         {
452                                 usage( tool, progname );
453                         }
454                         break;
455
456                 case 's':
457                         switch ( tool ) {
458                         case SLAPADD:
459                         case SLAPMODIFY:
460                                 /* no schema check */
461                                 mode |= SLAP_TOOL_NO_SCHEMA_CHECK;
462                                 break;
463
464                         case SLAPCAT:
465                         case SLAPSCHEMA:
466                                 /* dump subtree */
467                                 subtree = ch_strdup( optarg );
468                                 break;
469                         }
470                         break;
471
472                 case 't':       /* turn on truncate */
473                         truncatemode++;
474                         mode |= SLAP_TRUNCATE_MODE;
475                         break;
476
477                 case 'U':
478                         ber_str2bv( optarg, 0, 0, &authcID );
479                         break;
480
481                 case 'u':       /* dry run */
482                         dryrun++;
483                         break;
484
485                 case 'v':       /* turn on verbose */
486                         verbose++;
487                         break;
488
489                 case 'w':       /* write context csn at the end */
490                         update_ctxcsn++;
491                         break;
492
493                 case 'X':
494                         ber_str2bv( optarg, 0, 0, &authzID );
495                         break;
496
497                 default:
498                         usage( tool, progname );
499                         break;
500                 }
501         }
502
503 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
504         if ( start_syslog ) {
505                 char *logName;
506 #ifdef HAVE_EBCDIC
507                 logName = ch_strdup( progname );
508                 __atoe( logName );
509 #else
510                 logName = (char *)progname;
511 #endif
512
513 #ifdef LOG_LOCAL4
514                 openlog( logName, OPENLOG_OPTIONS, syslogUser );
515 #elif defined LOG_DEBUG
516                 openlog( logName, OPENLOG_OPTIONS );
517 #endif
518 #ifdef HAVE_EBCDIC
519                 free( logName );
520                 logName = NULL;
521 #endif
522         }
523 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
524
525         switch ( tool ) {
526         case SLAPCAT:
527         case SLAPSCHEMA:
528                 writer = 1;
529                 break;
530
531         default:
532                 writer = 0;
533                 break;
534         }
535
536         switch ( tool ) {
537         case SLAPADD:
538         case SLAPCAT:
539         case SLAPSCHEMA:
540                 if ( ( argc != optind ) || (dbnum >= 0 && base.bv_val != NULL ) ) {
541                         usage( tool, progname );
542                 }
543
544                 break;
545
546         case SLAPINDEX:
547                 if ( dbnum >= 0 && base.bv_val != NULL ) {
548                         usage( tool, progname );
549                 }
550
551                 break;
552
553         case SLAPDN:
554                 if ( argc == optind ) {
555                         usage( tool, progname );
556                 }
557                 break;
558
559         case SLAPAUTH:
560                 if ( argc == optind && BER_BVISNULL( &authcID ) ) {
561                         usage( tool, progname );
562                 }
563                 break;
564
565         case SLAPTEST:
566                 if ( argc != optind ) {
567                         usage( tool, progname );
568                 }
569                 break;
570
571         case SLAPACL:
572                 if ( !BER_BVISNULL( &authcDN ) && !BER_BVISNULL( &authcID ) ) {
573                         usage( tool, progname );
574                 }
575                 if ( BER_BVISNULL( &base ) ) {
576                         usage( tool, progname );
577                 }
578                 ber_dupbv( &baseDN, &base );
579                 break;
580
581         default:
582                 break;
583         }
584
585         if ( ldiffile == NULL ) {
586                 dummy.fp = writer ? stdout : stdin;
587                 ldiffp = &dummy;
588
589         } else if ((ldiffp = ldif_open( ldiffile, writer ? "w" : "r" ))
590                 == NULL )
591         {
592                 perror( ldiffile );
593                 exit( EXIT_FAILURE );
594         }
595
596         /*
597          * initialize stuff and figure out which backend we're dealing with
598          */
599
600         rc = slap_init( mode, progname );
601         if ( rc != 0 ) {
602                 fprintf( stderr, "%s: slap_init failed!\n", progname );
603                 exit( EXIT_FAILURE );
604         }
605
606         rc = read_config( conffile, confdir );
607
608         if ( rc != 0 ) {
609                 fprintf( stderr, "%s: bad configuration %s!\n",
610                         progname, confdir ? "directory" : "file" );
611                 exit( EXIT_FAILURE );
612         }
613
614         if ( debug_unknowns ) {
615                 rc = parse_debug_unknowns( debug_unknowns, &slap_debug );
616                 ldap_charray_free( debug_unknowns );
617                 debug_unknowns = NULL;
618                 if ( rc )
619                         exit( EXIT_FAILURE );
620         }
621
622 #if defined(LDAP_SYSLOG) && defined(LDAP_DEBUG)
623         if ( syslog_unknowns ) {
624                 rc = parse_debug_unknowns( syslog_unknowns, &ldap_syslog );
625                 ldap_charray_free( syslog_unknowns );
626                 syslog_unknowns = NULL;
627                 if ( rc )
628                         exit( EXIT_FAILURE );
629         }
630 #endif
631
632         at_oc_cache = 1;
633
634         switch ( tool ) {
635         case SLAPADD:
636         case SLAPCAT:
637         case SLAPINDEX:
638         case SLAPSCHEMA:
639                 if ( !nbackends ) {
640                         fprintf( stderr, "No databases found "
641                                         "in config file\n" );
642                         exit( EXIT_FAILURE );
643                 }
644                 break;
645
646         default:
647                 break;
648         }
649
650         if ( use_glue ) {
651                 rc = glue_sub_attach( 0 );
652
653                 if ( rc != 0 ) {
654                         fprintf( stderr,
655                                 "%s: subordinate configuration error\n", progname );
656                         exit( EXIT_FAILURE );
657                 }
658         }
659
660         rc = slap_schema_check();
661
662         if ( rc != 0 ) {
663                 fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
664                 exit( EXIT_FAILURE );
665         }
666
667         switch ( tool ) {
668         case SLAPTEST:
669                 if ( dbnum >= 0 )
670                         goto get_db;
671                 /* FALLTHRU */
672         case SLAPDN:
673         case SLAPAUTH:
674                 be = NULL;
675                 goto startup;
676
677         default:
678                 break;
679         }
680
681         if( filterstr ) {
682                 filter = str2filter( filterstr );
683
684                 if( filter == NULL ) {
685                         fprintf( stderr, "Invalid filter '%s'\n", filterstr );
686                         exit( EXIT_FAILURE );
687                 }
688
689                 ch_free( filterstr );
690                 filterstr = NULL;
691         }
692
693         if( subtree ) {
694                 struct berval val;
695                 ber_str2bv( subtree, 0, 0, &val );
696                 rc = dnNormalize( 0, NULL, NULL, &val, &sub_ndn, NULL );
697                 if( rc != LDAP_SUCCESS ) {
698                         fprintf( stderr, "Invalid subtree DN '%s'\n", subtree );
699                         exit( EXIT_FAILURE );
700                 }
701
702                 if ( BER_BVISNULL( &base ) && dbnum == -1 ) {
703                         base = val;
704                 } else {
705                         free( subtree );
706                         subtree = NULL;
707                 }
708         }
709
710         if( base.bv_val != NULL ) {
711                 struct berval nbase;
712
713                 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
714                 if( rc != LDAP_SUCCESS ) {
715                         fprintf( stderr, "%s: slap_init invalid suffix (\"%s\")\n",
716                                 progname, base.bv_val );
717                         exit( EXIT_FAILURE );
718                 }
719
720                 be = select_backend( &nbase, 0 );
721                 ber_memfree( nbase.bv_val );
722                 BER_BVZERO( &nbase );
723
724                 switch ( tool ) {
725                 case SLAPACL:
726                         goto startup;
727
728                 default:
729                         break;
730                 }
731
732                 if( be == NULL ) {
733                         fprintf( stderr, "%s: slap_init no backend for \"%s\"\n",
734                                 progname, base.bv_val );
735                         exit( EXIT_FAILURE );
736                 }
737                 /* If the named base is a glue master, operate on the
738                  * entire context
739                  */
740                 if ( SLAP_GLUE_INSTANCE( be ) ) {
741                         nosubordinates = 1;
742                 }
743
744                 ch_free( base.bv_val );
745                 BER_BVZERO( &base );
746
747         } else if ( dbnum == -1 ) {
748                 /* no suffix and no dbnum specified, just default to
749                  * the first available database
750                  */
751                 if ( nbackends <= 0 ) {
752                         fprintf( stderr, "No available databases\n" );
753                         exit( EXIT_FAILURE );
754                 }
755                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
756                         dbnum++;
757
758                         /* db #0 is cn=config, don't select it as a default */
759                         if ( dbnum < 1 ) continue;
760                 
761                         if ( SLAP_MONITOR(be))
762                                 continue;
763
764                 /* If just doing the first by default and it is a
765                  * glue subordinate, find the master.
766                  */
767                         if ( SLAP_GLUE_SUBORDINATE(be) ) {
768                                 nosubordinates = 1;
769                                 continue;
770                         }
771                         break;
772                 }
773
774                 if ( !be ) {
775                         fprintf( stderr, "Available database(s) "
776                                         "do not allow %s\n", progname );
777                         exit( EXIT_FAILURE );
778                 }
779                 
780                 if ( nosubordinates == 0 && dbnum > 1 ) {
781                         Debug( LDAP_DEBUG_ANY,
782                                 "The first database does not allow %s;"
783                                 " using the first available one (%d)\n",
784                                 progname, dbnum, 0 );
785                 }
786
787         } else if ( dbnum >= nbackends ) {
788                 fprintf( stderr,
789                         "Database number selected via -n is out of range\n"
790                         "Must be in the range 0 to %d"
791                         " (the number of configured databases)\n",
792                         nbackends - 1 );
793                 exit( EXIT_FAILURE );
794
795         } else {
796 get_db:
797                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
798                         if ( dbnum == 0 ) break;
799                         dbnum--;
800                 }
801         }
802
803         if ( scope != LDAP_SCOPE_DEFAULT && BER_BVISNULL( &sub_ndn ) ) {
804                 if ( be && be->be_nsuffix ) {
805                         ber_dupbv( &sub_ndn, be->be_nsuffix );
806
807                 } else {
808                         fprintf( stderr,
809                                 "<scope> needs a DN or a valid database\n" );
810                         exit( EXIT_FAILURE );
811                 }
812         }
813
814 startup:;
815         if ( be ) {
816                 BackendDB *bdtmp;
817
818                 dbnum = 0;
819                 LDAP_STAILQ_FOREACH( bdtmp, &backendDB, be_next ) {
820                         if ( bdtmp == be ) break;
821                         dbnum++;
822                 }
823         }
824
825 #ifdef CSRIMALLOC
826         mal_leaktrace(1);
827 #endif
828
829         if ( conffile != NULL ) {
830                 ch_free( conffile );
831                 conffile = NULL;
832         }
833
834         if ( confdir != NULL ) {
835                 ch_free( confdir );
836                 confdir = NULL;
837         }
838
839         if ( ldiffile != NULL ) {
840                 ch_free( ldiffile );
841                 ldiffile = NULL;
842         }
843
844         /* slapdn doesn't specify a backend to startup */
845         if ( !dryrun && tool != SLAPDN ) {
846                 need_shutdown = 1;
847
848                 if ( slap_startup( be ) ) {
849                         switch ( tool ) {
850                         case SLAPTEST:
851                                 fprintf( stderr, "slap_startup failed "
852                                                 "(test would succeed using "
853                                                 "the -u switch)\n" );
854                                 break;
855
856                         default:
857                                 fprintf( stderr, "slap_startup failed\n" );
858                                 break;
859                         }
860
861                         exit( EXIT_FAILURE );
862                 }
863         }
864 }
865
866 int slap_tool_destroy( void )
867 {
868         int rc = 0;
869         if ( !dryrun ) {
870                 if ( need_shutdown ) {
871                         if ( slap_shutdown( be ))
872                                 rc = EXIT_FAILURE;
873                 }
874                 if ( slap_destroy())
875                         rc = EXIT_FAILURE;
876         }
877 #ifdef SLAPD_MODULES
878         if ( slapMode == SLAP_SERVER_MODE ) {
879         /* always false. just pulls in necessary symbol references. */
880                 lutil_uuidstr(NULL, 0);
881         }
882         module_kill();
883 #endif
884         schema_destroy();
885 #ifdef HAVE_TLS
886         ldap_pvt_tls_destroy();
887 #endif
888         config_destroy();
889
890 #ifdef CSRIMALLOC
891         mal_dumpleaktrace( leakfile );
892 #endif
893
894         if ( !BER_BVISNULL( &authcDN ) ) {
895                 ch_free( authcDN.bv_val );
896                 BER_BVZERO( &authcDN );
897         }
898
899         if ( ldiffp && ldiffp != &dummy ) {
900                 ldif_close( ldiffp );
901         }
902         return rc;
903 }
904
905