1 /* slapcommon.c - common routine for the slap tools */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 1998-2006 The OpenLDAP Foundation.
6 * Portions Copyright 1998-2003 Kurt D. Zeilenga.
7 * Portions Copyright 2003 IBM Corporation.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted only as authorized by the OpenLDAP
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>.
19 * This work was initially developed by Kurt Zeilenga for inclusion
20 * in OpenLDAP Software. Additional signficant contributors include
22 * Hallvard B. Furuseth
31 #include <ac/stdlib.h>
33 #include <ac/string.h>
34 #include <ac/socket.h>
35 #include <ac/unistd.h>
37 #include "slapcommon.h"
41 tool_vars tool_globals;
44 static char *leakfilename;
45 static FILE *leakfile;
52 static char **syslog_unknowns;
54 static int syslogUser = SLAP_DEFAULT_SYSLOG_USER;
55 #endif /* LOG_LOCAL4 */
56 #endif /* LDAP_SYSLOG */
59 usage( int tool, const char *progname )
63 "usage: %s [-v] [-d debuglevel] [-f configfile] [-F configdir] [-o <name>[=<value>]]",
68 options = "\n\t[-U authcID | -D authcDN] [-X authzID | -o authzDN=<DN>]"
69 "\n\t-b DN [-u] [attr[/access][:value]] [...]\n";
73 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]\n"
74 "\t[-l ldiffile] [-j linenumber] [-q] [-u] [-s] [-w]\n";
78 options = "\n\t[-U authcID] [-X authzID] [-R realm] [-M mech] ID [...]\n";
82 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]"
83 " [-l ldiffile] [-a filter]\n";
87 options = "\n\t[-N | -P] DN [...]\n";
91 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix] [-q]\n";
99 if ( options != NULL ) {
100 fputs( options, stderr );
102 exit( EXIT_FAILURE );
106 parse_slapopt( void )
111 p = strchr( optarg, '=' );
117 if ( strncasecmp( optarg, "sockurl", len ) == 0 ) {
118 if ( !BER_BVISNULL( &listener_url ) ) {
119 ber_memfree( listener_url.bv_val );
121 ber_str2bv( p, 0, 1, &listener_url );
123 } else if ( strncasecmp( optarg, "domain", len ) == 0 ) {
124 if ( !BER_BVISNULL( &peer_domain ) ) {
125 ber_memfree( peer_domain.bv_val );
127 ber_str2bv( p, 0, 1, &peer_domain );
129 } else if ( strncasecmp( optarg, "peername", len ) == 0 ) {
130 if ( !BER_BVISNULL( &peer_name ) ) {
131 ber_memfree( peer_name.bv_val );
133 ber_str2bv( p, 0, 1, &peer_name );
135 } else if ( strncasecmp( optarg, "sockname", len ) == 0 ) {
136 if ( !BER_BVISNULL( &sock_name ) ) {
137 ber_memfree( sock_name.bv_val );
139 ber_str2bv( p, 0, 1, &sock_name );
141 } else if ( strncasecmp( optarg, "ssf", len ) == 0 ) {
142 if ( lutil_atou( &ssf, p ) ) {
143 Debug( LDAP_DEBUG_ANY, "unable to parse ssf=\"%s\".\n", p, 0, 0 );
147 } else if ( strncasecmp( optarg, "transport_ssf", len ) == 0 ) {
148 if ( lutil_atou( &transport_ssf, p ) ) {
149 Debug( LDAP_DEBUG_ANY, "unable to parse transport_ssf=\"%s\".\n", p, 0, 0 );
153 } else if ( strncasecmp( optarg, "tls_ssf", len ) == 0 ) {
154 if ( lutil_atou( &tls_ssf, p ) ) {
155 Debug( LDAP_DEBUG_ANY, "unable to parse tls_ssf=\"%s\".\n", p, 0, 0 );
159 } else if ( strncasecmp( optarg, "sasl_ssf", len ) == 0 ) {
160 if ( lutil_atou( &sasl_ssf, p ) ) {
161 Debug( LDAP_DEBUG_ANY, "unable to parse sasl_ssf=\"%s\".\n", p, 0, 0 );
165 } else if ( strncasecmp( optarg, "authzDN", len ) == 0 ) {
166 ber_str2bv( p, 0, 1, &authzDN );
169 } else if ( strncasecmp( optarg, "syslog", len ) == 0 ) {
170 if ( parse_debug_level( p, &ldap_syslog, &syslog_unknowns ) ) {
175 } else if ( strncasecmp( optarg, "syslog-level", len ) == 0 ) {
176 if ( parse_syslog_level( p, &ldap_syslog_level ) ) {
182 } else if ( strncasecmp( optarg, "syslog-user", len ) == 0 ) {
183 if ( parse_syslog_user( p, &syslogUser ) ) {
187 #endif /* LOG_LOCAL4 */
188 #endif /* LDAP_SYSLOG */
198 * slap_tool_init - initialize slap utility, handle program options.
202 * argc, argv command line arguments
205 static int need_shutdown;
209 const char* progname,
211 int argc, char **argv )
214 char *conffile = NULL;
215 char *confdir = NULL;
216 struct berval base = BER_BVNULL;
217 char *filterstr = NULL;
218 char *subtree = NULL;
219 char *ldiffile = NULL;
220 char **debug_unknowns = NULL;
222 int mode = SLAP_TOOL_MODE;
223 int truncatemode = 0;
227 /* tools default to "none", so that at least LDAP_DEBUG_ANY
228 * messages show up; use -d 0 to reset */
229 slap_debug = LDAP_DEBUG_NONE;
234 leakfilename = malloc( strlen( progname ) + STRLENOF( ".leak" ) + 1 );
235 sprintf( leakfilename, "%s.leak", progname );
236 if( ( leakfile = fopen( leakfilename, "w" )) == NULL ) {
239 free( leakfilename );
244 options = "b:cd:f:F:gj:l:n:o:qstuvw";
248 options = "a:b:cd:f:F:gl:n:o:s:v";
249 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
253 options = "d:f:F:No:Pv";
254 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
258 options = "d:f:F:o:uv";
259 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
263 options = "d:f:F:M:o:R:U:vX:";
264 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
268 options = "b:cd:f:F:gn:o:qv";
269 mode |= SLAP_TOOL_READMAIN;
273 options = "b:D:d:f:F:o:uU:vX:";
274 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
278 fprintf( stderr, "%s: unknown tool mode (%d)\n", progname, tool );
279 exit( EXIT_FAILURE );
283 while ( (i = getopt( argc, argv, options )) != EOF ) {
286 filterstr = strdup( optarg );
290 ber_str2bv( optarg, 0, 1, &base );
293 case 'c': /* enable continue mode */
297 case 'd': { /* turn on debugging */
300 if ( parse_debug_level( optarg, &level, &debug_unknowns ) ) {
301 usage( tool, progname );
305 /* allow to reset log level */
313 fputs( "must compile with LDAP_DEBUG for debugging\n",
319 ber_str2bv( optarg, 0, 1, &authcDN );
322 case 'f': /* specify a conf file */
323 conffile = strdup( optarg );
326 case 'F': /* specify a conf dir */
327 confdir = strdup( optarg );
330 case 'g': /* disable subordinate glue */
334 case 'j': /* jump to linenumber */
335 if ( lutil_atoi( &jumpline, optarg ) ) {
336 usage( tool, progname );
340 case 'l': /* LDIF file */
341 ldiffile = strdup( optarg );
345 ber_str2bv( optarg, 0, 0, &mech );
349 if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_NORMAL ) {
350 usage( tool, progname );
352 dn_mode = SLAP_TOOL_LDAPDN_NORMAL;
355 case 'n': /* which config file db to index */
356 if ( lutil_atoi( &dbnum, optarg ) ) {
357 usage( tool, progname );
362 if ( parse_slapopt() ) {
363 usage( tool, progname );
368 if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_PRETTY ) {
369 usage( tool, progname );
371 dn_mode = SLAP_TOOL_LDAPDN_PRETTY;
374 case 'q': /* turn on quick */
375 mode |= SLAP_TOOL_QUICK;
382 case 's': /* dump subtree */
383 if ( tool == SLAPADD )
384 mode |= SLAP_TOOL_NO_SCHEMA_CHECK;
385 else if ( tool == SLAPCAT )
386 subtree = strdup( optarg );
389 case 't': /* turn on truncate */
391 mode |= SLAP_TRUNCATE_MODE;
395 ber_str2bv( optarg, 0, 0, &authcID );
398 case 'u': /* dry run */
402 case 'v': /* turn on verbose */
406 case 'w': /* write context csn at the end */
411 ber_str2bv( optarg, 0, 0, &authzID );
415 usage( tool, progname );
421 if ( start_syslog ) {
424 logName = ch_strdup( progname );
427 logName = (char *)progname;
431 openlog( logName, OPENLOG_OPTIONS, syslogUser );
433 openlog( logName, OPENLOG_OPTIONS );
439 #endif /* LDAP_SYSLOG */
445 if ( ( argc != optind ) || (dbnum >= 0 && base.bv_val != NULL ) ) {
446 usage( tool, progname );
452 if ( argc == optind ) {
453 usage( tool, progname );
458 if ( argc == optind && BER_BVISNULL( &authcID ) ) {
459 usage( tool, progname );
464 if ( argc != optind ) {
465 usage( tool, progname );
470 if ( !BER_BVISNULL( &authcDN ) && !BER_BVISNULL( &authcID ) ) {
471 usage( tool, progname );
473 if ( BER_BVISNULL( &base ) ) {
474 usage( tool, progname );
476 ber_dupbv( &baseDN, &base );
483 if ( ldiffile == NULL ) {
484 dummy.fp = tool == SLAPCAT ? stdout : stdin;
487 } else if ((ldiffp = ldif_open( ldiffile, tool == SLAPCAT ? "w" : "r" ))
491 exit( EXIT_FAILURE );
495 * initialize stuff and figure out which backend we're dealing with
498 rc = slap_init( mode, progname );
500 fprintf( stderr, "%s: slap_init failed!\n", progname );
501 exit( EXIT_FAILURE );
504 rc = read_config( conffile, confdir );
507 fprintf( stderr, "%s: bad configuration %s!\n",
508 progname, confdir ? "directory" : "file" );
509 exit( EXIT_FAILURE );
512 if ( debug_unknowns ) {
513 rc = parse_debug_unknowns( debug_unknowns, &slap_debug );
514 ldap_charray_free( debug_unknowns );
515 debug_unknowns = NULL;
517 exit( EXIT_FAILURE );
520 if ( syslog_unknowns ) {
521 rc = parse_debug_unknowns( syslog_unknowns, &ldap_syslog );
522 ldap_charray_free( syslog_unknowns );
523 syslog_unknowns = NULL;
525 exit( EXIT_FAILURE );
535 fprintf( stderr, "No databases found "
536 "in config file\n" );
537 exit( EXIT_FAILURE );
546 rc = glue_sub_attach();
550 "%s: subordinate configuration error\n", progname );
551 exit( EXIT_FAILURE );
555 rc = slap_schema_check();
558 fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
559 exit( EXIT_FAILURE );
574 filter = str2filter( filterstr );
576 if( filter == NULL ) {
577 fprintf( stderr, "Invalid filter '%s'\n", filterstr );
578 exit( EXIT_FAILURE );
584 ber_str2bv( subtree, 0, 0, &val );
585 rc = dnNormalize( 0, NULL, NULL, &val, &sub_ndn, NULL );
586 if( rc != LDAP_SUCCESS ) {
587 fprintf( stderr, "Invalid subtree DN '%s'\n", subtree );
588 exit( EXIT_FAILURE );
591 if ( BER_BVISNULL( &base ) && dbnum == -1 ) {
598 if( base.bv_val != NULL ) {
601 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
602 if( rc != LDAP_SUCCESS ) {
603 fprintf( stderr, "%s: slap_init invalid suffix (\"%s\")\n",
604 progname, base.bv_val );
605 exit( EXIT_FAILURE );
608 be = select_backend( &nbase, 0, 0 );
609 ber_memfree( nbase.bv_val );
620 fprintf( stderr, "%s: slap_init no backend for \"%s\"\n",
621 progname, base.bv_val );
622 exit( EXIT_FAILURE );
624 /* If the named base is a glue master, operate on the
627 if ( SLAP_GLUE_INSTANCE( be ) ) {
631 } else if ( dbnum == -1 ) {
632 /* no suffix and no dbnum specified, just default to
633 * the first available database
635 if ( nbackends <= 0 ) {
636 fprintf( stderr, "No available databases\n" );
637 exit( EXIT_FAILURE );
639 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
642 /* db #0 is cn=config, don't select it as a default */
643 if ( dbnum < 1 ) continue;
645 if ( SLAP_MONITOR(be))
648 /* If just doing the first by default and it is a
649 * glue subordinate, find the master.
651 if ( SLAP_GLUE_SUBORDINATE(be) ) {
659 fprintf( stderr, "Available database(s) "
660 "do not allow %s\n", progname );
661 exit( EXIT_FAILURE );
664 if ( nosubordinates == 0 && dbnum > 1 ) {
665 Debug( LDAP_DEBUG_ANY,
666 "The first database does not allow %s;"
667 " using the first available one (%d)\n",
668 progname, dbnum, 0 );
671 } else if ( dbnum < 0 || dbnum > (nbackends-1) ) {
673 "Database number selected via -n is out of range\n"
674 "Must be in the range 0 to %d"
675 " (number of configured databases)\n",
677 exit( EXIT_FAILURE );
680 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
681 if ( dbnum == 0 ) break;
692 if ( conffile != NULL ) {
696 if ( ldiffile != NULL ) {
700 /* slapdn doesn't specify a backend to startup */
701 if ( !dryrun && tool != SLAPDN ) {
704 if ( slap_startup( be ) ) {
707 fprintf( stderr, "slap_startup failed "
708 "(test would succeed using "
709 "the -u switch)\n" );
713 fprintf( stderr, "slap_startup failed\n" );
717 exit( EXIT_FAILURE );
722 void slap_tool_destroy( void )
725 if ( need_shutdown ) {
731 if ( slapMode == SLAP_SERVER_MODE ) {
732 /* always false. just pulls in necessary symbol references. */
733 lutil_uuidstr(NULL, 0);
739 ldap_pvt_tls_destroy();
744 mal_dumpleaktrace( leakfile );
747 if ( !BER_BVISNULL( &authcDN ) ) {
748 ch_free( authcDN.bv_val );