]> git.sur5r.net Git - openldap/blob - servers/slapd/slapcommon.c
Force a refresh if the search base has changed
[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-2004 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
40 tool_vars tool_globals;
41
42 #ifdef CSRIMALLOC
43 static char *leakfilename;
44 static FILE *leakfile;
45 #endif
46
47 static void
48 usage( int tool, const char *progname )
49 {
50         char *options = NULL;
51         fprintf( stderr,
52                 "usage: %s [-v] [-c] [-d debuglevel] [-f configfile]\n",
53                 progname );
54
55         switch( tool ) {
56         case SLAPADD:
57                 options = "\t[-n databasenumber | -b suffix]\n"
58                         "\t[-l ldiffile] [-u] [-p [-w] | -r [-i syncreplidlist] [-w]]\n";
59                 break;
60
61         case SLAPCAT:
62                 options = "\t[-n databasenumber | -b suffix]"
63                         " [-l ldiffile] [-a filter] [-m] [-k]\n";
64                 break;
65
66         case SLAPDN:
67                 options = "\tDN [...]\n";
68                 break;
69
70         case SLAPINDEX:
71                 options = "\t[-n databasenumber | -b suffix]\n";
72                 break;
73
74         case SLAPAUTH:
75                 options = "\t[-U authcID] [-X authzID] ID [...]\n";
76                 break;
77
78         case SLAPACL:
79                 options = "\t[-U authcID | -D authcDN]"
80                         " -b DN [attr[/access][:value]] [...]\n";
81                 break;
82         }
83
84         if ( options != NULL ) {
85                 fputs( options, stderr );
86         }
87         exit( EXIT_FAILURE );
88 }
89
90
91 /*
92  * slap_tool_init - initialize slap utility, handle program options.
93  * arguments:
94  *      name            program name
95  *      tool            tool code
96  *      argc, argv      command line arguments
97  */
98
99 void
100 slap_tool_init(
101         const char* progname,
102         int tool,
103         int argc, char **argv )
104 {
105         char *options;
106         char *conffile = SLAPD_DEFAULT_CONFIGFILE;
107         struct berval base = BER_BVNULL;
108         char *filterstr = NULL;
109         char *subtree = NULL;
110         char *ldiffile  = NULL;
111         int rc, i, dbnum;
112         int mode = SLAP_TOOL_MODE;
113         int truncatemode = 0;
114
115 #ifdef CSRIMALLOC
116         leakfilename = malloc( strlen( progname ) + STRLEOF( ".leak" ) - 1 );
117         sprintf( leakfilename, "%s.leak", progname );
118         if( ( leakfile = fopen( leakfilename, "w" )) == NULL ) {
119                 leakfile = stderr;
120         }
121         free( leakfilename );
122 #endif
123
124         switch( tool ) {
125         case SLAPADD:
126                 options = "b:cd:f:i:l:n:prtuvWw";
127                 break;
128
129         case SLAPCAT:
130                 options = "a:b:cd:f:kl:mn:s:v";
131                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
132                 break;
133
134         case SLAPDN:
135         case SLAPTEST:
136                 options = "d:f:v";
137                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
138                 break;
139
140         case SLAPAUTH:
141                 options = "d:f:U:vX:";
142                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
143                 break;
144
145         case SLAPINDEX:
146                 options = "b:cd:f:n:v";
147                 mode |= SLAP_TOOL_READMAIN;
148                 break;
149
150         case SLAPACL:
151                 options = "b:D:d:f:U:v";
152                 mode |= SLAP_TOOL_READMAIN | SLAP_TOOL_READONLY;
153                 break;
154
155         default:
156                 fprintf( stderr, "%s: unknown tool mode (%d)\n", progname, tool );
157                 exit( EXIT_FAILURE );
158         }
159
160         dbnum = -1;
161         while ( (i = getopt( argc, argv, options )) != EOF ) {
162                 switch ( i ) {
163                 case 'a':
164                         filterstr = strdup( optarg );
165                         break;
166
167                 case 'b':
168                         ber_str2bv( optarg, 0, 1, &base );
169                         break;
170
171                 case 'c':       /* enable continue mode */
172                         continuemode++;
173                         break;
174
175                 case 'd':       /* turn on debugging */
176                         ldap_debug += atoi( optarg );
177                         break;
178
179                 case 'D':
180                         ber_str2bv( optarg, 0, 1, &authcDN );
181                         break;
182
183                 case 'f':       /* specify a conf file */
184                         conffile = strdup( optarg );
185                         break;
186
187                 case 'i': /* specify syncrepl id list */
188                         replica_id_string = strdup( optarg );
189                         if ( !isdigit( (unsigned char) *replica_id_string )) {
190                                 usage( tool, progname );
191                                 exit( EXIT_FAILURE );
192                         }
193                         slap_str2clist( &replica_id_strlist, replica_id_string, "," );
194                         for ( i = 0; replica_id_strlist && replica_id_strlist[i]; i++ ) ;
195                         replica_id_list = ch_calloc( i + 1, sizeof( int ) );
196                         for ( i = 0; replica_id_strlist && replica_id_strlist[i]; i++ ) {
197                                 replica_id_list[i] = atoi( replica_id_strlist[i] );
198                                 if ( replica_id_list[i] >= 1000 ) {
199                                         fprintf(stderr,
200                                                 "%s: syncrepl id %d is out of range [0..999]\n",
201                                                 progname, replica_id_list[i] );
202                                         exit( EXIT_FAILURE );
203                                 }
204                         }
205                         replica_id_list[i] = -1;
206                         break;
207
208                 case 'k':       /* Retrieve sync cookie entry */
209                         retrieve_synccookie = 1;
210                         break;
211
212                 case 'l':       /* LDIF file */
213                         ldiffile = strdup( optarg );
214                         break;
215
216                 case 'm':       /* Retrieve ldapsync entry */
217                         retrieve_ctxcsn = 1;
218                         break;
219
220                 case 'n':       /* which config file db to index */
221                         dbnum = atoi( optarg ) - 1;
222                         break;
223
224                 case 'p':       /* replica promotion */
225                         replica_promotion = 1;          
226                         break;
227
228                 case 'r':       /* replica demotion */
229                         replica_demotion = 1;           
230                         break;
231
232                 case 's':       /* dump subtree */
233                         subtree = strdup( optarg );
234                         break;
235
236                 case 't':       /* turn on truncate */
237                         truncatemode++;
238                         mode |= SLAP_TRUNCATE_MODE;
239                         break;
240
241                 case 'U':
242                         ber_str2bv( optarg, 0, 0, &authcID );
243                         break;
244
245                 case 'u':       /* dry run */
246                         dryrun++;
247                         break;
248
249                 case 'v':       /* turn on verbose */
250                         verbose++;
251                         break;
252
253                 case 'W':       /* write context csn on every entry add */
254                         update_ctxcsn = SLAP_TOOL_CTXCSN_BATCH;
255                         /* FIXME : update_ctxcsn = SLAP_TOOL_CTXCSN_ENTRY; */
256                         break;
257
258                 case 'w':       /* write context csn on at the end */
259                         update_ctxcsn = SLAP_TOOL_CTXCSN_BATCH;
260                         break;
261
262                 case 'X':
263                         ber_str2bv( optarg, 0, 0, &authzID );
264                         break;
265
266                 default:
267                         usage( tool, progname );
268                         break;
269                 }
270         }
271
272         switch ( tool ) {
273         case SLAPADD:
274         case SLAPCAT:
275         case SLAPINDEX:
276                 if ( ( argc != optind ) || (dbnum >= 0 && base.bv_val != NULL ) ) {
277                         usage( tool, progname );
278                 }
279
280                 if ( replica_promotion && replica_demotion ) {
281                         usage( tool, progname );
282
283                 } else if ( !replica_promotion && !replica_demotion ) {
284                         if ( update_ctxcsn != SLAP_TOOL_CTXCSN_KEEP ) {
285                                 usage( tool, progname );
286                         }
287                 }
288                 break;
289
290         case SLAPDN:
291                 if ( argc == optind ) {
292                         usage( tool, progname );
293                 }
294                 break;
295
296         case SLAPAUTH:
297                 if ( argc == optind && BER_BVISNULL( &authcID ) ) {
298                         usage( tool, progname );
299                 }
300                 break;
301
302         case SLAPTEST:
303                 if ( argc != optind ) {
304                         usage( tool, progname );
305                 }
306                 break;
307
308         case SLAPACL:
309                 if ( !BER_BVISNULL( &authcDN ) && !BER_BVISNULL( &authcID ) ) {
310                         usage( tool, progname );
311                 }
312                 if ( BER_BVISNULL( &base ) ) {
313                         usage( tool, progname );
314                 }
315                 ber_dupbv( &baseDN, &base );
316                 break;
317
318         default:
319                 break;
320         }
321
322         if ( ldiffile == NULL ) {
323                 ldiffp = tool == SLAPCAT ? stdout : stdin;
324
325         } else if ((ldiffp = fopen( ldiffile, tool == SLAPCAT ? "w" : "r" ))
326                 == NULL )
327         {
328                 perror( ldiffile );
329                 exit( EXIT_FAILURE );
330         }
331
332         /*
333          * initialize stuff and figure out which backend we're dealing with
334          */
335
336 #ifdef SLAPD_MODULES
337         if ( module_init() != 0 ) {
338                 fprintf( stderr, "%s: module_init failed!\n", progname );
339                 exit( EXIT_FAILURE );
340         }
341 #endif
342                 
343         rc = slap_init( mode, progname );
344
345         if ( rc != 0 ) {
346                 fprintf( stderr, "%s: slap_init failed!\n", progname );
347                 exit( EXIT_FAILURE );
348         }
349
350         rc = slap_schema_init();
351
352         if ( rc != 0 ) {
353                 fprintf( stderr, "%s: slap_schema_init failed!\n", progname );
354                 exit( EXIT_FAILURE );
355         }
356
357         if ( frontend_init() ) {
358                 fprintf( stderr, "%s: frontend_init failed!\n", progname );
359                 exit( EXIT_FAILURE );
360         }
361
362         if ( overlay_init() ) {
363                 fprintf( stderr, "%s: overlay_init failed!\n", progname );
364                 exit( EXIT_FAILURE );
365         }
366
367         rc = read_config( conffile, 0 );
368
369         if ( rc != 0 ) {
370                 fprintf( stderr, "%s: bad configuration file!\n", progname );
371                 exit( EXIT_FAILURE );
372         }
373
374         ldap_syslog = 0;
375
376         switch ( tool ) {
377         case SLAPADD:
378         case SLAPCAT:
379         case SLAPINDEX:
380                 if ( !nbackends ) {
381                         fprintf( stderr, "No databases found "
382                                         "in config file\n" );
383                         exit( EXIT_FAILURE );
384                 }
385                 break;
386
387         default:
388                 break;
389         }
390
391         rc = glue_sub_init();
392
393         if ( rc != 0 ) {
394                 fprintf( stderr, "Subordinate configuration error\n" );
395                 exit( EXIT_FAILURE );
396         }
397
398         rc = slap_schema_check();
399
400         if ( rc != 0 ) {
401                 fprintf( stderr, "%s: slap_schema_prep failed!\n", progname );
402                 exit( EXIT_FAILURE );
403         }
404
405         switch ( tool ) {
406         case SLAPDN:
407         case SLAPTEST:
408         case SLAPAUTH:
409                 be = NULL;
410                 goto startup;
411
412         default:
413                 break;
414         }
415
416         if( filterstr ) {
417                 filter = str2filter( filterstr );
418
419                 if( filter == NULL ) {
420                         fprintf( stderr, "Invalid filter '%s'\n", filterstr );
421                         exit( EXIT_FAILURE );
422                 }
423         }
424
425         if( subtree ) {
426                 struct berval val;
427                 ber_str2bv( subtree, 0, 0, &val );
428                 rc = dnNormalize( 0, NULL, NULL, &val, &sub_ndn, NULL );
429                 if( rc != LDAP_SUCCESS ) {
430                         fprintf( stderr, "Invalid subtree DN '%s'\n", subtree );
431                         exit( EXIT_FAILURE );
432                 }
433
434                 if ( BER_BVISNULL( &base ) && dbnum == -1 ) {
435                         base = val;
436                 } else {
437                         free( subtree );
438                 }
439         }
440
441         if( base.bv_val != NULL ) {
442                 struct berval nbase;
443
444                 rc = dnNormalize( 0, NULL, NULL, &base, &nbase, NULL );
445                 if( rc != LDAP_SUCCESS ) {
446                         fprintf( stderr, "%s: slap_init invalid suffix (\"%s\")\n",
447                                 progname, base.bv_val );
448                         exit( EXIT_FAILURE );
449                 }
450
451                 be = select_backend( &nbase, 0, 0 );
452                 ber_memfree( nbase.bv_val );
453
454                 switch ( tool ) {
455                 case SLAPACL:
456                         goto startup;
457
458                 default:
459                         break;
460                 }
461
462                 if( be == NULL ) {
463                         fprintf( stderr, "%s: slap_init no backend for \"%s\"\n",
464                                 progname, base.bv_val );
465                         exit( EXIT_FAILURE );
466                 }
467                 /* If the named base is a glue master, operate on the
468                  * entire context
469                  */
470                 if (SLAP_GLUE_INSTANCE(be)) {
471                         nosubordinates = 1;
472                 }
473
474         } else if ( dbnum == -1 ) {
475                 if ( nbackends <= 0 ) {
476                         fprintf( stderr, "No available databases\n" );
477                         exit( EXIT_FAILURE );
478                 }
479                 
480                 be = &backends[dbnum=0];
481                 /* If just doing the first by default and it is a
482                  * glue subordinate, find the master.
483                  */
484                 while (SLAP_GLUE_SUBORDINATE(be) || SLAP_MONITOR(be)) {
485                         if (SLAP_GLUE_SUBORDINATE(be)) {
486                                 nosubordinates = 1;
487                         }
488                         be++;
489                         dbnum++;
490                 }
491
492
493                 if ( dbnum >= nbackends ) {
494                         fprintf( stderr, "Available database(s) "
495                                         "do not allow %s\n", progname );
496                         exit( EXIT_FAILURE );
497                 }
498                 
499                 if ( nosubordinates == 0 && dbnum > 0 ) {
500                         Debug( LDAP_DEBUG_ANY,
501                                 "The first database does not allow %s;"
502                                 " using the first available one (%d)\n",
503                                 progname, dbnum + 1, 0 );
504                 }
505
506         } else if ( dbnum < 0 || dbnum > (nbackends-1) ) {
507                 fprintf( stderr,
508                         "Database number selected via -n is out of range\n"
509                         "Must be in the range 1 to %d"
510                         " (number of databases in the config file)\n",
511                         nbackends );
512                 exit( EXIT_FAILURE );
513
514         } else {
515                 be = &backends[dbnum];
516         }
517
518 startup:;
519
520 #ifdef CSRIMALLOC
521         mal_leaktrace(1);
522 #endif
523
524         if ( !dryrun && slap_startup( be ) ) {
525                 fprintf( stderr, "slap_startup failed\n" );
526                 exit( EXIT_FAILURE );
527         }
528 }
529
530 void slap_tool_destroy( void )
531 {
532         if ( !dryrun && be != NULL ) {
533                 slap_shutdown( be );
534         }
535         slap_destroy();
536 #ifdef SLAPD_MODULES
537         if ( slapMode == SLAP_SERVER_MODE ) {
538         /* always false. just pulls in necessary symbol references. */
539                 lutil_uuidstr(NULL, 0);
540         }
541         module_kill();
542 #endif
543         schema_destroy();
544 #ifdef HAVE_TLS
545         ldap_pvt_tls_destroy();
546 #endif
547         config_destroy();
548
549 #ifdef CSRIMALLOC
550         mal_dumpleaktrace( leakfile );
551 #endif
552
553         if ( !BER_BVISNULL( &authcDN ) ) {
554                 ch_free( authcDN.bv_val );
555         }
556 }