]> git.sur5r.net Git - openldap/blob - servers/slapd/slapcommon.c
ec36850cc6ad14227e02507989141ecc50f5d0c8
[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-2005 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 static void
51 usage( int tool, const char *progname )
52 {
53         char *options = NULL;
54         fprintf( stderr,
55                 "usage: %s [-v] [-d debuglevel] [-f configfile] [-F configdir]",
56                 progname );
57
58         switch( tool ) {
59         case SLAPACL:
60                 options = "\n\t[-U authcID | -D authcDN] [-X authzID | -o authzDN=<DN>]"
61                         "\n\t-b DN -o <var>[=<val>] [-u] [attr[/access][:value]] [...]\n";
62                 break;
63
64         case SLAPADD:
65                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]\n"
66                         "\t[-l ldiffile] [-q] [-u] [-w]\n";
67                 break;
68
69         case SLAPAUTH:
70                 options = "\n\t[-U authcID] [-X authzID] [-R realm] [-M mech] ID [...]\n";
71                 break;
72
73         case SLAPCAT:
74                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix]"
75                         " [-l ldiffile] [-a filter]\n";
76                 break;
77
78         case SLAPDN:
79                 options = "\n\t[-N | -P] DN [...]\n";
80                 break;
81
82         case SLAPINDEX:
83                 options = " [-c]\n\t[-g] [-n databasenumber | -b suffix] [-q]\n";
84                 break;
85
86         case SLAPTEST:
87                 options = " [-u]\n";
88                 break;
89         }
90
91         if ( options != NULL ) {
92                 fputs( options, stderr );
93         }
94         exit( EXIT_FAILURE );
95 }
96
97 static int
98 parse_slapacl( void )
99 {
100         size_t  len;
101         char    *p;
102
103         p = strchr( optarg, '=' );
104         if ( p == NULL ) {
105                 return -1;
106         }
107
108         len = p - optarg;
109         p++;
110
111         if ( strncasecmp( optarg, "sockurl", len ) == 0 ) {
112                 if ( !BER_BVISNULL( &listener_url ) ) {
113                         ber_memfree( listener_url.bv_val );
114                 }
115                 ber_str2bv( p, 0, 1, &listener_url );
116
117         } else if ( strncasecmp( optarg, "domain", len ) == 0 ) {
118                 if ( !BER_BVISNULL( &peer_domain ) ) {
119                         ber_memfree( peer_domain.bv_val );
120                 }
121                 ber_str2bv( p, 0, 1, &peer_domain );
122
123         } else if ( strncasecmp( optarg, "peername", len ) == 0 ) {
124                 if ( !BER_BVISNULL( &peer_name ) ) {
125                         ber_memfree( peer_name.bv_val );
126                 }
127                 ber_str2bv( p, 0, 1, &peer_name );
128
129         } else if ( strncasecmp( optarg, "sockname", len ) == 0 ) {
130                 if ( !BER_BVISNULL( &sock_name ) ) {
131                         ber_memfree( sock_name.bv_val );
132                 }
133                 ber_str2bv( p, 0, 1, &sock_name );
134
135         } else if ( strncasecmp( optarg, "ssf", len ) == 0 ) {
136                 if ( lutil_atou( &ssf, p ) ) {
137                         Debug( LDAP_DEBUG_ANY, "unable to parse ssf=\"%s\".\n", p, 0, 0 );
138                         return -1;
139                 }
140
141         } else if ( strncasecmp( optarg, "transport_ssf", len ) == 0 ) {
142                 if ( lutil_atou( &transport_ssf, p ) ) {
143                         Debug( LDAP_DEBUG_ANY, "unable to parse transport_ssf=\"%s\".\n", p, 0, 0 );
144                         return -1;
145                 }
146
147         } else if ( strncasecmp( optarg, "tls_ssf", len ) == 0 ) {
148                 if ( lutil_atou( &tls_ssf, p ) ) {
149                         Debug( LDAP_DEBUG_ANY, "unable to parse tls_ssf=\"%s\".\n", p, 0, 0 );
150                         return -1;
151                 }
152
153         } else if ( strncasecmp( optarg, "sasl_ssf", len ) == 0 ) {
154                 if ( lutil_atou( &sasl_ssf, p ) ) {
155                         Debug( LDAP_DEBUG_ANY, "unable to parse sasl_ssf=\"%s\".\n", p, 0, 0 );
156                         return -1;
157                 }
158
159         } else if ( strncasecmp( optarg, "authzDN", len ) == 0 ) {
160                 ber_str2bv( p, 0, 1, &authzDN );
161
162         } else {
163                 return -1;
164         }
165
166         return 0;
167 }
168
169 /*
170  * slap_tool_init - initialize slap utility, handle program options.
171  * arguments:
172  *      name            program name
173  *      tool            tool code
174  *      argc, argv      command line arguments
175  */
176
177 void
178 slap_tool_init(
179         const char* progname,
180         int tool,
181         int argc, char **argv )
182 {
183         char *options;
184         char *conffile = NULL;
185         char *confdir = NULL;
186         struct berval base = BER_BVNULL;
187         char *filterstr = NULL;
188         char *subtree = NULL;
189         char *ldiffile  = NULL;
190         int rc, i, dbnum;
191         int mode = SLAP_TOOL_MODE;
192         int truncatemode = 0;
193         int use_glue = 1;
194
195 #ifdef LDAP_DEBUG
196         /* tools default to "none", so that at least LDAP_DEBUG_ANY 
197          * messages show up; use -d 0 to reset */
198         ldap_debug = LDAP_DEBUG_NONE;
199 #endif
200
201 #ifdef CSRIMALLOC
202         leakfilename = malloc( strlen( progname ) + STRLENOF( ".leak" ) + 1 );
203         sprintf( leakfilename, "%s.leak", progname );
204         if( ( leakfile = fopen( leakfilename, "w" )) == NULL ) {
205                 leakfile = stderr;
206         }
207         free( leakfilename );
208 #endif
209
210         switch( tool ) {
211         case SLAPADD:
212                 options = "b:cd:f:F:gl:n:qtuvw";
213                 break;
214
215         case SLAPCAT:
216                 options = "a:b:cd:f:F:gl:n:s:v";
217                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
218                 break;
219
220         case SLAPDN:
221                 options = "d:f:F:NPv";
222                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
223                 break;
224
225         case SLAPTEST:
226                 options = "d:f:F:uv";
227                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
228                 break;
229
230         case SLAPAUTH:
231                 options = "d:f:F:M:R:U:vX:";
232                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
233                 break;
234
235         case SLAPINDEX:
236                 options = "b:cd:f:F:gn:qv";
237                 mode |= SLAP_TOOL_READMAIN;
238                 break;
239
240         case SLAPACL:
241                 options = "b:D:d:f:F:o:uU:vX:";
242                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
243                 break;
244
245         default:
246                 fprintf( stderr, "%s: unknown tool mode (%d)\n", progname, tool );
247                 exit( EXIT_FAILURE );
248         }
249
250         dbnum = -1;
251         while ( (i = getopt( argc, argv, options )) != EOF ) {
252                 switch ( i ) {
253                 case 'a':
254                         filterstr = strdup( optarg );
255                         break;
256
257                 case 'b':
258                         ber_str2bv( optarg, 0, 1, &base );
259                         break;
260
261                 case 'c':       /* enable continue mode */
262                         continuemode++;
263                         break;
264
265                 case 'd':       /* turn on debugging */
266                         {
267 #ifdef LDAP_DEBUG
268                         int     level;
269
270                         if ( optarg != NULL && optarg[ 0 ] != '-' && !isdigit( optarg[ 0 ] ) )
271                         {
272                                 if ( str2loglevel( optarg, &level ) ) {
273                                         fprintf( stderr,
274                                                 "unrecognized log level "
275                                                 "\"%s\"\n", optarg );
276                                         exit( EXIT_FAILURE );
277                                 }
278
279                         } else if ( lutil_atoi( &level, optarg ) != 0 ) {
280                                 fprintf( stderr,
281                                         "unrecognized log level "
282                                         "\"%s\"\n", optarg );
283                                 exit( EXIT_FAILURE );
284                         }
285
286                         if ( level ) {
287                                 ldap_debug |= level;
288                         } else {
289                                 /* allow to reset log level */
290                                 ldap_debug = 0;
291                         }
292 #else
293                         if ( lutil_atoi( &level, optarg ) != 0 || level != 0 )
294                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
295                                        stderr );
296 #endif
297                         } break;
298
299                 case 'D':
300                         ber_str2bv( optarg, 0, 1, &authcDN );
301                         break;
302
303                 case 'f':       /* specify a conf file */
304                         conffile = strdup( optarg );
305                         break;
306
307                 case 'F':       /* specify a conf dir */
308                         confdir = strdup( optarg );
309                         break;
310
311                 case 'g':       /* disable subordinate glue */
312                         use_glue = 0;
313                         break;
314
315                 case 'l':       /* LDIF file */
316                         ldiffile = strdup( optarg );
317                         break;
318
319                 case 'M':
320                         ber_str2bv( optarg, 0, 0, &mech );
321                         break;
322
323                 case 'N':
324                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_NORMAL ) {
325                                 usage( tool, progname );
326                         }
327                         dn_mode = SLAP_TOOL_LDAPDN_NORMAL;
328                         break;
329
330                 case 'n':       /* which config file db to index */
331                         if ( lutil_atoi( &dbnum, optarg ) ) {
332                                 usage( tool, progname );
333                         }
334                         break;
335
336                 case 'o':
337                         if ( parse_slapacl() ) {
338                                 usage( tool, progname );
339                         }
340                         break;
341
342                 case 'P':
343                         if ( dn_mode && dn_mode != SLAP_TOOL_LDAPDN_PRETTY ) {
344                                 usage( tool, progname );
345                         }
346                         dn_mode = SLAP_TOOL_LDAPDN_PRETTY;
347                         break;
348
349                 case 'q':       /* turn on quick */
350                         mode |= SLAP_TOOL_QUICK;
351                         break;
352
353                 case 'R':
354                         realm = optarg;
355                         break;
356
357                 case 's':       /* dump subtree */
358                         subtree = strdup( optarg );
359                         break;
360
361                 case 't':       /* turn on truncate */
362                         truncatemode++;
363                         mode |= SLAP_TRUNCATE_MODE;
364                         break;
365
366                 case 'U':
367                         ber_str2bv( optarg, 0, 0, &authcID );
368                         break;
369
370                 case 'u':       /* dry run */
371                         dryrun++;
372                         break;
373
374                 case 'v':       /* turn on verbose */
375                         verbose++;
376                         break;
377
378                 case 'w':       /* write context csn at the end */
379                         update_ctxcsn++;
380                         break;
381
382                 case 'X':
383                         ber_str2bv( optarg, 0, 0, &authzID );
384                         break;
385
386                 default:
387                         usage( tool, progname );
388                         break;
389                 }
390         }
391
392         switch ( tool ) {
393         case SLAPADD:
394         case SLAPCAT:
395         case SLAPINDEX:
396                 if ( ( argc != optind ) || (dbnum >= 0 && base.bv_val != NULL ) ) {
397                         usage( tool, progname );
398                 }
399
400                 break;
401
402         case SLAPDN:
403                 if ( argc == optind ) {
404                         usage( tool, progname );
405                 }
406                 break;
407
408         case SLAPAUTH:
409                 if ( argc == optind && BER_BVISNULL( &authcID ) ) {
410                         usage( tool, progname );
411                 }
412                 break;
413
414         case SLAPTEST:
415                 if ( argc != optind ) {
416                         usage( tool, progname );
417                 }
418                 break;
419
420         case SLAPACL:
421                 if ( !BER_BVISNULL( &authcDN ) && !BER_BVISNULL( &authcID ) ) {
422                         usage( tool, progname );
423                 }
424                 if ( BER_BVISNULL( &base ) ) {
425                         usage( tool, progname );
426                 }
427                 ber_dupbv( &baseDN, &base );
428                 break;
429
430         default:
431                 break;
432         }
433
434         ldap_syslog = 0;
435
436         if ( ldiffile == NULL ) {
437                 dummy.fp = tool == SLAPCAT ? stdout : stdin;
438                 ldiffp = &dummy;
439
440         } else if ((ldiffp = ldif_open( ldiffile, tool == SLAPCAT ? "w" : "r" ))
441                 == NULL )
442         {
443                 perror( ldiffile );
444                 exit( EXIT_FAILURE );
445         }
446
447         /*
448          * initialize stuff and figure out which backend we're dealing with
449          */
450
451         rc = slap_init( mode, progname );
452         if ( rc != 0 ) {
453                 fprintf( stderr, "%s: slap_init failed!\n", progname );
454                 exit( EXIT_FAILURE );
455         }
456
457         rc = read_config( conffile, confdir );
458
459         if ( rc != 0 ) {
460                 fprintf( stderr, "%s: bad configuration %s!\n",
461                         progname, confdir ? "directory" : "file" );
462                 exit( EXIT_FAILURE );
463         }
464
465         at_oc_cache = 1;
466
467         switch ( tool ) {
468         case SLAPADD:
469         case SLAPCAT:
470         case SLAPINDEX:
471                 if ( !nbackends ) {
472                         fprintf( stderr, "No databases found "
473                                         "in config file\n" );
474                         exit( EXIT_FAILURE );
475                 }
476                 break;
477
478         default:
479                 break;
480         }
481
482         if ( use_glue ) {
483                 rc = glue_sub_attach();
484
485                 if ( rc != 0 ) {
486                         fprintf( stderr,
487                                 "%s: subordinate configuration error\n", progname );
488                         exit( EXIT_FAILURE );
489                 }
490         }
491
492         rc = slap_schema_check();
493
494         if ( rc != 0 ) {
495                 fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
496                 exit( EXIT_FAILURE );
497         }
498
499         switch ( tool ) {
500         case SLAPDN:
501         case SLAPTEST:
502         case SLAPAUTH:
503                 be = NULL;
504                 goto startup;
505
506         default:
507                 break;
508         }
509
510         if( filterstr ) {
511                 filter = str2filter( filterstr );
512
513                 if( filter == NULL ) {
514                         fprintf( stderr, "Invalid filter '%s'\n", filterstr );
515                         exit( EXIT_FAILURE );
516                 }
517         }
518
519         if( subtree ) {
520                 struct berval val;
521                 ber_str2bv( subtree, 0, 0, &val );
522                 rc = dnNormalize( 0, NULL, NULL, &val, &sub_ndn, NULL );
523                 if( rc != LDAP_SUCCESS ) {
524                         fprintf( stderr, "Invalid subtree DN '%s'\n", subtree );
525                         exit( EXIT_FAILURE );
526                 }
527
528                 if ( BER_BVISNULL( &base ) && dbnum == -1 ) {
529                         base = val;
530                 } else {
531                         free( subtree );
532                 }
533         }
534
535         if( base.bv_val != NULL ) {
536                 struct berval nbase;
537
538                 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
539                 if( rc != LDAP_SUCCESS ) {
540                         fprintf( stderr, "%s: slap_init invalid suffix (\"%s\")\n",
541                                 progname, base.bv_val );
542                         exit( EXIT_FAILURE );
543                 }
544
545                 be = select_backend( &nbase, 0, 0 );
546                 ber_memfree( nbase.bv_val );
547
548                 switch ( tool ) {
549                 case SLAPACL:
550                         goto startup;
551
552                 default:
553                         break;
554                 }
555
556                 if( be == NULL ) {
557                         fprintf( stderr, "%s: slap_init no backend for \"%s\"\n",
558                                 progname, base.bv_val );
559                         exit( EXIT_FAILURE );
560                 }
561                 /* If the named base is a glue master, operate on the
562                  * entire context
563                  */
564                 if ( SLAP_GLUE_INSTANCE( be ) ) {
565                         nosubordinates = 1;
566                 }
567
568         } else if ( dbnum == -1 ) {
569                 /* no suffix and no dbnum specified, just default to
570                  * the first available database
571                  */
572                 if ( nbackends <= 0 ) {
573                         fprintf( stderr, "No available databases\n" );
574                         exit( EXIT_FAILURE );
575                 }
576                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
577                         dbnum++;
578
579                         /* db #0 is cn=config, don't select it as a default */
580                         if ( dbnum < 1 ) continue;
581                 
582                         if ( SLAP_MONITOR(be))
583                                 continue;
584
585                 /* If just doing the first by default and it is a
586                  * glue subordinate, find the master.
587                  */
588                         if ( SLAP_GLUE_SUBORDINATE(be) ) {
589                                 nosubordinates = 1;
590                                 continue;
591                         }
592                         break;
593                 }
594
595                 if ( !be ) {
596                         fprintf( stderr, "Available database(s) "
597                                         "do not allow %s\n", progname );
598                         exit( EXIT_FAILURE );
599                 }
600                 
601                 if ( nosubordinates == 0 && dbnum > 1 ) {
602                         Debug( LDAP_DEBUG_ANY,
603                                 "The first database does not allow %s;"
604                                 " using the first available one (%d)\n",
605                                 progname, dbnum, 0 );
606                 }
607
608         } else if ( dbnum < 0 || dbnum > (nbackends-1) ) {
609                 fprintf( stderr,
610                         "Database number selected via -n is out of range\n"
611                         "Must be in the range 0 to %d"
612                         " (number of configured databases)\n",
613                         nbackends-1 );
614                 exit( EXIT_FAILURE );
615
616         } else {
617                 LDAP_STAILQ_FOREACH( be, &backendDB, be_next ) {
618                         if ( dbnum == 0 ) break;
619                         dbnum--;
620                 }
621         }
622
623 startup:;
624
625 #ifdef CSRIMALLOC
626         mal_leaktrace(1);
627 #endif
628
629         if ( conffile != NULL ) {
630                 ch_free( conffile );
631         }
632
633         if ( ldiffile != NULL ) {
634                 ch_free( ldiffile );
635         }
636
637         /* slapdn doesn't specify a backend to startup */
638         if ( !dryrun && tool != SLAPDN && slap_startup( be ) ) {
639                 switch ( tool ) {
640                 case SLAPTEST:
641                         fprintf( stderr, "slap_startup failed "
642                                         "(test would succeed using "
643                                         "the -u switch)\n" );
644                         break;
645
646                 default:
647                         fprintf( stderr, "slap_startup failed\n" );
648                         break;
649                 }
650                 
651                 exit( EXIT_FAILURE );
652         }
653 }
654
655 void slap_tool_destroy( void )
656 {
657         if ( !dryrun ) {
658                 slap_shutdown( be );
659                 slap_destroy();
660         }
661 #ifdef SLAPD_MODULES
662         if ( slapMode == SLAP_SERVER_MODE ) {
663         /* always false. just pulls in necessary symbol references. */
664                 lutil_uuidstr(NULL, 0);
665         }
666         module_kill();
667 #endif
668         schema_destroy();
669 #ifdef HAVE_TLS
670         ldap_pvt_tls_destroy();
671 #endif
672         config_destroy();
673
674 #ifdef CSRIMALLOC
675         mal_dumpleaktrace( leakfile );
676 #endif
677
678         if ( !BER_BVISNULL( &authcDN ) ) {
679                 ch_free( authcDN.bv_val );
680         }
681 }