]> git.sur5r.net Git - openldap/blob - servers/slapd/main.c
re-enable "-d '?'" as a means to list what loglevels are available (ITS#4666)
[openldap] / servers / slapd / main.c
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 1998-2006 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15 /* Portions Copyright (c) 1995 Regents of the University of Michigan.
16  * All rights reserved.
17  *
18  * Redistribution and use in source and binary forms are permitted
19  * provided that this notice is preserved and that due credit is given
20  * to the University of Michigan at Ann Arbor. The name of the University
21  * may not be used to endorse or promote products derived from this
22  * software without specific prior written permission. This software
23  * is provided ``as is'' without express or implied warranty.
24  */
25
26 #include "portable.h"
27
28 #include <stdio.h>
29
30 #include <ac/ctype.h>
31 #include <ac/socket.h>
32 #include <ac/string.h>
33 #include <ac/time.h>
34 #include <ac/unistd.h>
35 #include <ac/wait.h>
36 #include <ac/errno.h>
37
38 #include "slap.h"
39 #include "lutil.h"
40 #include "ldif.h"
41
42 #ifdef LDAP_SLAPI
43 #include "slapi/slapi.h"
44 #endif
45
46 #ifdef LDAP_SIGCHLD
47 static RETSIGTYPE wait4child( int sig );
48 #endif
49
50 #ifdef HAVE_NT_SERVICE_MANAGER
51 #define MAIN_RETURN(x) return
52 static struct sockaddr_in       bind_addr;
53
54 #define SERVICE_EXIT( e, n )    do { \
55         if ( is_NT_Service ) { \
56                 lutil_ServiceStatus.dwWin32ExitCode                             = (e); \
57                 lutil_ServiceStatus.dwServiceSpecificExitCode   = (n); \
58         } \
59 } while ( 0 )
60
61 #else
62 #define SERVICE_EXIT( e, n )
63 #define MAIN_RETURN(x) return(x)
64 #endif
65
66 typedef int (MainFunc) LDAP_P(( int argc, char *argv[] ));
67 extern MainFunc slapadd, slapcat, slapdn, slapindex, slappasswd,
68         slaptest, slapauth, slapacl;
69
70 static struct {
71         char *name;
72         MainFunc *func;
73 } tools[] = {
74         {"slapadd", slapadd},
75         {"slapcat", slapcat},
76         {"slapdn", slapdn},
77         {"slapindex", slapindex},
78         {"slappasswd", slappasswd},
79         {"slaptest", slaptest},
80         {"slapauth", slapauth},
81         {"slapacl", slapacl},
82         /* NOTE: new tools must be added in chronological order,
83          * not in alphabetical order, because for backwards
84          * compatibility name[4] is used to identify the
85          * tools; so name[4]=='a' must refer to "slapadd" and
86          * not to "slapauth".  Alphabetical order can be used
87          * for tools whose name[4] is not used yet */
88         {NULL, NULL}
89 };
90
91 /*
92  * when more than one slapd is running on one machine, each one might have
93  * it's own LOCAL for syslogging and must have its own pid/args files
94  */
95
96 #ifndef HAVE_MKVERSION
97 const char Versionstr[] =
98         OPENLDAP_PACKAGE " " OPENLDAP_VERSION " Standalone LDAP Server (slapd)";
99 #endif
100
101 #define CHECK_NONE      0x00
102 #define CHECK_CONFIG    0x01
103 static int check = CHECK_NONE;
104 static int version = 0;
105
106 void *slap_tls_ctx;
107 LDAP *slap_tls_ld;
108
109 static int
110 slapd_opt_slp( const char *val, void *arg )
111 {
112 #ifdef HAVE_SLP
113         /* NULL is default */
114         if ( val == NULL || *val == '(' || strcasecmp( val, "on" ) == 0 ) {
115                 slapd_register_slp = 1;
116                 slapd_slp_attrs = (val != NULL && *val == '(') ? val : NULL;
117
118         } else if ( strcasecmp( val, "off" ) == 0 ) {
119                 slapd_register_slp = 0;
120
121         /* NOTE: add support for URL specification? */
122
123         } else {
124                 fprintf(stderr, "unrecognized value \"%s\" for SLP option\n", val );
125                 return -1;
126         }
127
128         return 0;
129                 
130 #else
131         fputs( "slapd: SLP support is not available\n", stderr );
132         return 0;
133 #endif
134 }
135
136 /*
137  * Option helper structure:
138  * 
139  * oh_nam       is left-hand part of <option>[=<value>]
140  * oh_fnc       is handler function
141  * oh_arg       is an optional arg to oh_fnc
142  * oh_usage     is the one-line usage string related to the option,
143  *              which is assumed to start with <option>[=<value>]
144  *
145  * please leave valid options in the structure, and optionally #ifdef
146  * their processing inside the helper, so that reasonable and helpful
147  * error messages can be generated if a disabled option is requested.
148  */
149 struct option_helper {
150         struct berval   oh_name;
151         int             (*oh_fnc)(const char *val, void *arg);
152         void            *oh_arg;
153         const char      *oh_usage;
154 } option_helpers[] = {
155         { BER_BVC("slp"),       slapd_opt_slp,  NULL, "slp[={on|off|(attrs)}] enable/disable SLP using (attrs)" },
156         { BER_BVNULL, 0, NULL, NULL }
157 };
158
159 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
160 #ifdef LOG_LOCAL4
161 int
162 parse_syslog_user( const char *arg, int *syslogUser )
163 {
164         static slap_verbmasks syslogUsers[] = {
165                 { BER_BVC( "LOCAL0" ), LOG_LOCAL0 },
166                 { BER_BVC( "LOCAL1" ), LOG_LOCAL1 },
167                 { BER_BVC( "LOCAL2" ), LOG_LOCAL2 },
168                 { BER_BVC( "LOCAL3" ), LOG_LOCAL3 },
169                 { BER_BVC( "LOCAL4" ), LOG_LOCAL4 },
170                 { BER_BVC( "LOCAL5" ), LOG_LOCAL5 },
171                 { BER_BVC( "LOCAL6" ), LOG_LOCAL6 },
172                 { BER_BVC( "LOCAL7" ), LOG_LOCAL7 },
173 #ifdef LOG_USER
174                 { BER_BVC( "USER" ), LOG_USER },
175 #endif /* LOG_USER */
176 #ifdef LOG_DAEMON
177                 { BER_BVC( "DAEMON" ), LOG_DAEMON },
178 #endif /* LOG_DAEMON */
179                 { BER_BVNULL, 0 }
180         };
181         int i = verb_to_mask( arg, syslogUsers );
182
183         if ( BER_BVISNULL( &syslogUsers[ i ].word ) ) {
184                 Debug( LDAP_DEBUG_ANY,
185                         "unrecognized syslog user \"%s\".\n",
186                         arg, 0, 0 );
187                 return 1;
188         }
189
190         *syslogUser = syslogUsers[ i ].mask;
191
192         return 0;
193 }
194 #endif /* LOG_LOCAL4 */
195
196 int
197 parse_syslog_level( const char *arg, int *levelp )
198 {
199         static slap_verbmasks   str2syslog_level[] = {
200                 { BER_BVC( "EMERG" ),   LOG_EMERG },
201                 { BER_BVC( "ALERT" ),   LOG_ALERT },
202                 { BER_BVC( "CRIT" ),    LOG_CRIT },
203                 { BER_BVC( "ERR" ),     LOG_ERR },
204                 { BER_BVC( "WARNING" ), LOG_WARNING },
205                 { BER_BVC( "NOTICE" ),  LOG_NOTICE },
206                 { BER_BVC( "INFO" ),    LOG_INFO },
207                 { BER_BVC( "DEBUG" ),   LOG_DEBUG },
208                 { BER_BVNULL, 0 }
209         };
210         int i = verb_to_mask( arg, str2syslog_level );
211         if ( BER_BVISNULL( &str2syslog_level[ i ].word ) ) {
212                 Debug( LDAP_DEBUG_ANY,
213                         "unknown syslog level \"%s\".\n",
214                         arg, 0, 0 );
215                 return 1;
216         }
217         
218         *levelp = str2syslog_level[ i ].mask;
219
220         return 0;
221 }
222 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
223
224 int
225 parse_debug_unknowns( char **unknowns, int *levelp )
226 {
227         int i, level, rc = 0;
228
229         for ( i = 0; unknowns[ i ] != NULL; i++ ) {
230                 level = 0;
231                 if ( str2loglevel( unknowns[ i ], &level )) {
232                         fprintf( stderr,
233                                 "unrecognized log level \"%s\"\n", unknowns[ i ] );
234                         rc = 1;
235                 } else {
236                         *levelp |= level;
237                 }
238         }
239         return rc;
240 }
241
242 int
243 parse_debug_level( const char *arg, int *levelp, char ***unknowns )
244 {
245         int     level;
246
247         if ( arg && arg[ 0 ] != '-' && !isdigit( (unsigned char) arg[ 0 ] ) )
248         {
249                 int     i;
250                 char    **levels;
251
252                 levels = ldap_str2charray( arg, "," );
253
254                 for ( i = 0; levels[ i ] != NULL; i++ ) {
255                         level = 0;
256
257                         if ( str2loglevel( levels[ i ], &level ) ) {
258                                 /* remember this for later */
259                                 ldap_charray_add( unknowns, levels[ i ] );
260                                 fprintf( stderr,
261                                         "unrecognized log level \"%s\" (deferred)\n",
262                                         levels[ i ] );
263                         } else {
264                                 *levelp |= level;
265                         }
266                 }
267
268                 ldap_charray_free( levels );
269
270         } else {
271                 if ( lutil_atoix( &level, arg, 0 ) != 0 ) {
272                         fprintf( stderr,
273                                 "unrecognized log level "
274                                 "\"%s\"\n", arg );
275                         return 1;
276                 }
277
278                 if ( level == 0 ) {
279                         *levelp = 0;
280
281                 } else {
282                         *levelp |= level;
283                 }
284         }
285
286         return 0;
287 }
288
289 static void
290 usage( char *name )
291 {
292         fprintf( stderr,
293                 "usage: %s options\n", name );
294         fprintf( stderr,
295                 "\t-4\t\tIPv4 only\n"
296                 "\t-6\t\tIPv6 only\n"
297                 "\t-T {acl|add|auth|cat|dn|index|passwd|test}\n"
298                 "\t\t\tRun in Tool mode\n"
299                 "\t-c cookie\tSync cookie of consumer\n"
300                 "\t-d level\tDebug level" "\n"
301                 "\t-f filename\tConfiguration file\n"
302                 "\t-F dir\tConfiguration directory\n"
303 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
304                 "\t-g group\tGroup (id or name) to run as\n"
305 #endif
306                 "\t-h URLs\t\tList of URLs to serve\n"
307 #ifdef LOG_LOCAL4
308                 "\t-l facility\tSyslog facility (default: LOCAL4)\n"
309 #endif
310                 "\t-n serverName\tService name\n"
311                 "\t-o <opt>[=val] generic means to specify options" );
312         if ( !BER_BVISNULL( &option_helpers[0].oh_name ) ) {
313                 int     i;
314
315                 fprintf( stderr, "; supported options:\n" );
316                 for ( i = 0; !BER_BVISNULL( &option_helpers[i].oh_name ); i++) {
317                         fprintf( stderr, "\t\t%s\n", option_helpers[i].oh_usage );
318                 }
319         } else {
320                 fprintf( stderr, "\n" );
321         }
322         fprintf( stderr,        
323 #ifdef HAVE_CHROOT
324                 "\t-r directory\tSandbox directory to chroot to\n"
325 #endif
326                 "\t-s level\tSyslog level\n"
327 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
328                 "\t-u user\t\tUser (id or name) to run as\n"
329 #endif
330                 "\t-V\t\tprint version info (-VV only)\n"
331     );
332 }
333
334 #ifdef HAVE_NT_SERVICE_MANAGER
335 void WINAPI ServiceMain( DWORD argc, LPTSTR *argv )
336 #else
337 int main( int argc, char **argv )
338 #endif
339 {
340         int             i, no_detach = 0;
341         int             rc = 1;
342         char *urls = NULL;
343 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
344         char *username = NULL;
345         char *groupname = NULL;
346 #endif
347 #if defined(HAVE_CHROOT)
348         char *sandbox = NULL;
349 #endif
350 #ifdef LOG_LOCAL4
351         int syslogUser = SLAP_DEFAULT_SYSLOG_USER;
352 #endif
353         
354         int g_argc = argc;
355         char **g_argv = argv;
356
357         char *configfile = NULL;
358         char *configdir = NULL;
359         char *serverName;
360         int serverMode = SLAP_SERVER_MODE;
361
362         struct sync_cookie *scp = NULL;
363         struct sync_cookie *scp_entry = NULL;
364
365         char **debug_unknowns = NULL;
366         char **syslog_unknowns = NULL;
367
368         char *serverNamePrefix = "";
369         size_t  l;
370
371         int slapd_pid_file_unlink = 0, slapd_args_file_unlink = 0;
372
373 #ifdef CSRIMALLOC
374         FILE *leakfile;
375         if( ( leakfile = fopen( "slapd.leak", "w" )) == NULL ) {
376                 leakfile = stderr;
377         }
378 #endif
379
380         slap_sl_mem_init();
381
382         (void) ldap_pvt_thread_initialize();
383
384         serverName = lutil_progname( "slapd", argc, argv );
385
386         if ( strcmp( serverName, "slapd" ) ) {
387                 for (i=0; tools[i].name; i++) {
388                         if ( !strcmp( serverName, tools[i].name ) ) {
389                                 rc = tools[i].func(argc, argv);
390                                 MAIN_RETURN(rc);
391                         }
392                 }
393         }
394
395 #ifdef HAVE_NT_SERVICE_MANAGER
396         {
397                 int *i;
398                 char *newConfigFile;
399                 char *newConfigDir;
400                 char *newUrls;
401                 char *regService = NULL;
402
403                 if ( is_NT_Service ) {
404                         lutil_CommenceStartupProcessing( serverName, slap_sig_shutdown );
405                         if ( strcmp(serverName, SERVICE_NAME) )
406                             regService = serverName;
407                 }
408
409                 i = (int*)lutil_getRegParam( regService, "DebugLevel" );
410                 if ( i != NULL ) {
411                         slap_debug = *i;
412                         Debug( LDAP_DEBUG_ANY,
413                                 "new debug level from registry is: %d\n", slap_debug, 0, 0 );
414                 }
415
416                 newUrls = (char *) lutil_getRegParam(regService, "Urls");
417                 if (newUrls) {
418                     if (urls)
419                         ch_free(urls);
420
421                     urls = ch_strdup(newUrls);
422                     Debug(LDAP_DEBUG_ANY, "new urls from registry: %s\n",
423                                 urls, 0, 0);
424                 }
425
426                 newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
427                 if ( newConfigFile != NULL ) {
428                         configfile = newConfigFile;
429                         Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", configfile, 0, 0 );
430                 }
431
432                 newConfigDir = (char*)lutil_getRegParam( regService, "ConfigDir" );
433                 if ( newConfigDir != NULL ) {
434                         configdir = newConfigDir;
435                         Debug ( LDAP_DEBUG_ANY, "new config dir from registry is: %s\n", configdir, 0, 0 );
436                 }
437         }
438 #endif
439
440         while ( (i = getopt( argc, argv,
441                              "c:d:f:F:h:n:o:s:tT:V"
442 #if LDAP_PF_INET6
443                                 "46"
444 #endif
445 #ifdef HAVE_CHROOT
446                                 "r:"
447 #endif
448 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
449                                 "S:"
450 #ifdef LOG_LOCAL4
451                                 "l:"
452 #endif
453 #endif
454 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
455                                 "u:g:"
456 #endif
457                              )) != EOF ) {
458                 switch ( i ) {
459 #ifdef LDAP_PF_INET6
460                 case '4':
461                         slap_inet4or6 = AF_INET;
462                         break;
463                 case '6':
464                         slap_inet4or6 = AF_INET6;
465                         break;
466 #endif
467
468                 case 'h':       /* listen URLs */
469                         if ( urls != NULL ) free( urls );
470                         urls = ch_strdup( optarg );
471                         break;
472
473                 case 'c':       /* provide sync cookie, override if exist in replica */
474                         scp = (struct sync_cookie *) ch_calloc( 1,
475                                                                                 sizeof( struct sync_cookie ));
476                         ber_str2bv( optarg, 0, 1, &scp->octet_str );
477                         
478                         /* This only parses out the rid at this point */
479                         slap_parse_sync_cookie( scp, NULL );
480
481                         if ( scp->rid == -1 ) {
482                                 Debug( LDAP_DEBUG_ANY,
483                                                 "main: invalid cookie \"%s\"\n",
484                                                 optarg, 0, 0 );
485                                 slap_sync_cookie_free( scp, 1 );
486                                 goto destroy;
487                         }
488
489                         LDAP_STAILQ_FOREACH( scp_entry, &slap_sync_cookie, sc_next ) {
490                                 if ( scp->rid == scp_entry->rid ) {
491                                         Debug( LDAP_DEBUG_ANY,
492                                                     "main: duplicated replica id in cookies\n",
493                                                         0, 0, 0 );
494                                         slap_sync_cookie_free( scp, 1 );
495                                         goto destroy;
496                                 }
497                         }
498                         LDAP_STAILQ_INSERT_TAIL( &slap_sync_cookie, scp, sc_next );
499                         break;
500
501                 case 'd': {     /* set debug level and 'do not detach' flag */
502                         int     level = 0;
503
504                         if ( strcmp( optarg, "?" ) == 0 ) {
505                                 rc = loglevel_print( stdout );
506                                 goto destroy;
507                         }
508
509                         no_detach = 1;
510                         if ( parse_debug_level( optarg, &level, &debug_unknowns ) ) {
511                                 goto destroy;
512                         }
513 #ifdef LDAP_DEBUG
514                         slap_debug |= level;
515 #else
516                         if ( level != 0 )
517                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
518                                        stderr );
519 #endif
520                         } break;
521
522                 case 'f':       /* read config file */
523                         configfile = ch_strdup( optarg );
524                         break;
525
526                 case 'F':       /* use config dir */
527                         configdir = ch_strdup( optarg );
528                         break;
529
530                 case 'o': {
531                         char            *val = strchr( optarg, '=' );
532                         struct berval   opt;
533                         int             i;
534
535                         opt.bv_val = optarg;
536                         
537                         if ( val ) {
538                                 opt.bv_len = ( val - optarg );
539                                 val++;
540                         
541                         } else {
542                                 opt.bv_len = strlen( optarg );
543                         }
544
545                         for ( i = 0; !BER_BVISNULL( &option_helpers[i].oh_name ); i++ ) {
546                                 if ( ber_bvstrcasecmp( &option_helpers[i].oh_name, &opt ) == 0 ) {
547                                         assert( option_helpers[i].oh_fnc != NULL );
548                                         if ( (*option_helpers[i].oh_fnc)( val, option_helpers[i].oh_arg ) == -1 ) {
549                                                 /* we assume the option parsing helper
550                                                  * issues appropriate and self-explanatory
551                                                  * error messages... */
552                                                 goto stop;
553                                         }
554                                         break;
555                                 }
556                         }
557
558                         if ( BER_BVISNULL( &option_helpers[i].oh_name ) ) {
559                                 goto unhandled_option;
560                         }
561                         break;
562                 }
563
564                 case 's':       /* set syslog level */
565                         if ( strcmp( optarg, "?" ) == 0 ) {
566                                 rc = loglevel_print( stdout );
567                                 goto destroy;
568                         }
569
570                         if ( parse_debug_level( optarg, &ldap_syslog, &syslog_unknowns ) ) {
571                                 goto destroy;
572                         }
573                         break;
574
575 #if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
576                 case 'S':
577                         if ( parse_syslog_level( optarg, &ldap_syslog_level ) ) {
578                                 goto destroy;
579                         }
580                         break;
581
582 #ifdef LOG_LOCAL4
583                 case 'l':       /* set syslog local user */
584                         if ( parse_syslog_user( optarg, &syslogUser ) ) {
585                                 goto destroy;
586                         }
587                         break;
588 #endif
589 #endif /* LDAP_DEBUG && LDAP_SYSLOG */
590
591 #ifdef HAVE_CHROOT
592                 case 'r':
593                         if( sandbox ) free(sandbox);
594                         sandbox = ch_strdup( optarg );
595                         break;
596 #endif
597
598 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
599                 case 'u':       /* user name */
600                         if( username ) free(username);
601                         username = ch_strdup( optarg );
602                         break;
603
604                 case 'g':       /* group name */
605                         if( groupname ) free(groupname);
606                         groupname = ch_strdup( optarg );
607                         break;
608 #endif /* SETUID && GETUID */
609
610                 case 'n':  /* NT service name */
611                         serverName = ch_strdup( optarg );
612                         break;
613
614                 case 't':
615                         /* deprecated; use slaptest instead */
616                         fprintf( stderr, "option -t deprecated; "
617                                 "use slaptest command instead\n" );
618                         check |= CHECK_CONFIG;
619                         break;
620
621                 case 'V':
622                         version++;
623                         break;
624
625                 case 'T':
626                         /* try full option string first */
627                         for ( i = 0; tools[i].name; i++ ) {
628                                 if ( strcmp( optarg, &tools[i].name[4] ) == 0 ) {
629                                         rc = tools[i].func( argc, argv );
630                                         MAIN_RETURN( rc );
631                                 }
632                         }
633
634                         /* try bits of option string (backward compatibility for single char) */
635                         l = strlen( optarg );
636                         for ( i = 0; tools[i].name; i++ ) {
637                                 if ( strncmp( optarg, &tools[i].name[4], l ) == 0 ) {
638                                         rc = tools[i].func( argc, argv );
639                                         MAIN_RETURN( rc );
640                                 }
641                         }
642                         
643                         /* issue error */
644                         serverName = optarg;
645                         serverNamePrefix = "slap";
646                         fprintf( stderr, "program name \"%s%s\" unrecognized; "
647                                         "aborting...\n", serverNamePrefix, serverName );
648                         /* FALLTHRU */
649                 default:
650 unhandled_option:;
651                         usage( argv[0] );
652                         rc = 1;
653                         SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
654                         goto stop;
655                 }
656         }
657
658         ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
659         ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
660         ldif_debug = slap_debug;
661
662         if ( version ) {
663                 fprintf( stderr, "%s\n", Versionstr );
664                 if ( version > 1 ) goto stop;
665         }
666
667         {
668                 char *logName;
669 #ifdef HAVE_EBCDIC
670                 logName = ch_strdup( serverName );
671                 __atoe( logName );
672 #else
673                 logName = serverName;
674 #endif
675
676 #ifdef LOG_LOCAL4
677                 openlog( logName, OPENLOG_OPTIONS, syslogUser );
678 #elif LOG_DEBUG
679                 openlog( logName, OPENLOG_OPTIONS );
680 #endif
681 #ifdef HAVE_EBCDIC
682                 free( logName );
683 #endif
684         }
685
686         Debug( LDAP_DEBUG_ANY, "%s", Versionstr, 0, 0 );
687
688         if( check == CHECK_NONE && slapd_daemon_init( urls ) != 0 ) {
689                 rc = 1;
690                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
691                 goto stop;
692         }
693
694 #if defined(HAVE_CHROOT)
695         if ( sandbox ) {
696                 if ( chdir( sandbox ) ) {
697                         perror("chdir");
698                         rc = 1;
699                         goto stop;
700                 }
701                 if ( chroot( sandbox ) ) {
702                         perror("chroot");
703                         rc = 1;
704                         goto stop;
705                 }
706         }
707 #endif
708
709 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
710         if ( username != NULL || groupname != NULL ) {
711                 slap_init_user( username, groupname );
712         }
713 #endif
714
715         extops_init();
716         lutil_passwd_init();
717         slap_op_init();
718
719 #ifdef HAVE_TLS
720         rc = ldap_create( &slap_tls_ld );
721         if ( rc ) {
722                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
723                 goto destroy;
724         }
725 #endif
726
727         rc = slap_init( serverMode, serverName );
728         if ( rc ) {
729                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
730                 goto destroy;
731         }
732
733         if ( read_config( configfile, configdir ) != 0 ) {
734                 rc = 1;
735                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
736
737                 if ( check & CHECK_CONFIG ) {
738                         fprintf( stderr, "config check failed\n" );
739                 }
740
741                 goto destroy;
742         }
743
744         if ( debug_unknowns ) {
745                 rc = parse_debug_unknowns( debug_unknowns, &slap_debug );
746                 ldap_charray_free( debug_unknowns );
747                 debug_unknowns = NULL;
748                 if ( rc )
749                         goto destroy;
750         }
751         if ( syslog_unknowns ) {
752                 rc = parse_debug_unknowns( syslog_unknowns, &ldap_syslog );
753                 ldap_charray_free( syslog_unknowns );
754                 syslog_unknowns = NULL;
755                 if ( rc )
756                         goto destroy;
757         }
758
759         if ( check & CHECK_CONFIG ) {
760                 fprintf( stderr, "config check succeeded\n" );
761
762                 check &= ~CHECK_CONFIG;
763                 if ( check == CHECK_NONE ) {
764                         rc = 0;
765                         goto destroy;
766                 }
767         }
768
769         if ( glue_sub_attach( ) != 0 ) {
770                 Debug( LDAP_DEBUG_ANY,
771                     "subordinate config error\n",
772                     0, 0, 0 );
773
774                 goto destroy;
775         }
776
777         if ( slap_schema_check( ) != 0 ) {
778                 Debug( LDAP_DEBUG_ANY,
779                     "schema prep error\n",
780                     0, 0, 0 );
781
782                 goto destroy;
783         }
784
785 #ifdef HAVE_TLS
786         rc = ldap_pvt_tls_init();
787         if( rc != 0) {
788                 Debug( LDAP_DEBUG_ANY,
789                     "main: TLS init failed: %d\n",
790                     0, 0, 0 );
791                 rc = 1;
792                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
793                 goto destroy;
794         }
795
796         {
797                 int opt = 1;
798
799                 /* Force new ctx to be created */
800                 rc = ldap_pvt_tls_set_option( slap_tls_ld, LDAP_OPT_X_TLS_NEWCTX, &opt );
801                 if( rc == 0 ) {
802                         /* The ctx's refcount is bumped up here */
803                         ldap_pvt_tls_get_option( slap_tls_ld, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
804                         load_extop( &slap_EXOP_START_TLS, 0, starttls_extop );
805                 } else if ( rc != LDAP_NOT_SUPPORTED ) {
806                         Debug( LDAP_DEBUG_ANY,
807                             "main: TLS init def ctx failed: %d\n",
808                             rc, 0, 0 );
809                         rc = 1;
810                         SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
811                         goto destroy;
812                 }
813         }
814 #endif
815
816         (void) SIGNAL( LDAP_SIGUSR1, slap_sig_wake );
817         (void) SIGNAL( LDAP_SIGUSR2, slap_sig_shutdown );
818
819 #ifdef SIGPIPE
820         (void) SIGNAL( SIGPIPE, SIG_IGN );
821 #endif
822 #ifdef SIGHUP
823         (void) SIGNAL( SIGHUP, slap_sig_shutdown );
824 #endif
825         (void) SIGNAL( SIGINT, slap_sig_shutdown );
826         (void) SIGNAL( SIGTERM, slap_sig_shutdown );
827 #ifdef SIGTRAP
828         (void) SIGNAL( SIGTRAP, slap_sig_shutdown );
829 #endif
830 #ifdef LDAP_SIGCHLD
831         (void) SIGNAL( LDAP_SIGCHLD, wait4child );
832 #endif
833 #ifdef SIGBREAK
834         /* SIGBREAK is generated when Ctrl-Break is pressed. */
835         (void) SIGNAL( SIGBREAK, slap_sig_shutdown );
836 #endif
837
838 #ifndef HAVE_WINSOCK
839         lutil_detach( no_detach, 0 );
840 #endif /* HAVE_WINSOCK */
841
842 #ifdef CSRIMALLOC
843         mal_leaktrace(1);
844 #endif
845
846         if ( slapd_pid_file != NULL ) {
847                 FILE *fp = fopen( slapd_pid_file, "w" );
848
849                 if ( fp == NULL ) {
850                         int save_errno = errno;
851
852                         Debug( LDAP_DEBUG_ANY, "unable to open pid file "
853                                 "\"%s\": %d (%s)\n",
854                                 slapd_pid_file,
855                                 save_errno, strerror( save_errno ) );
856
857                         free( slapd_pid_file );
858                         slapd_pid_file = NULL;
859
860                         rc = 1;
861                         goto destroy;
862                 }
863                 fprintf( fp, "%d\n", (int) getpid() );
864                 fclose( fp );
865                 slapd_pid_file_unlink = 1;
866         }
867
868         if ( slapd_args_file != NULL ) {
869                 FILE *fp = fopen( slapd_args_file, "w" );
870
871                 if ( fp == NULL ) {
872                         int save_errno = errno;
873
874                         Debug( LDAP_DEBUG_ANY, "unable to open args file "
875                                 "\"%s\": %d (%s)\n",
876                                 slapd_args_file,
877                                 save_errno, strerror( save_errno ) );
878
879                         free( slapd_args_file );
880                         slapd_args_file = NULL;
881
882                         rc = 1;
883                         goto destroy;
884                 }
885
886                 for ( i = 0; i < g_argc; i++ ) {
887                         fprintf( fp, "%s ", g_argv[i] );
888                 }
889                 fprintf( fp, "\n" );
890                 fclose( fp );
891                 slapd_args_file_unlink = 1;
892         }
893
894         /*
895          * FIXME: moved here from slapd_daemon_task()
896          * because back-monitor db_open() needs it
897          */
898         time( &starttime );
899
900         if ( slap_startup( NULL ) != 0 ) {
901                 rc = 1;
902                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
903                 goto shutdown;
904         }
905
906         Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
907
908 #ifdef HAVE_NT_EVENT_LOG
909         if (is_NT_Service)
910         lutil_LogStartedEvent( serverName, slap_debug, configfile ?
911                 configfile : SLAPD_DEFAULT_CONFIGFILE , urls );
912 #endif
913
914         rc = slapd_daemon();
915
916 #ifdef HAVE_NT_SERVICE_MANAGER
917         /* Throw away the event that we used during the startup process. */
918         if ( is_NT_Service )
919                 ldap_pvt_thread_cond_destroy( &started_event );
920 #endif
921
922 shutdown:
923         /* remember an error during shutdown */
924         rc |= slap_shutdown( NULL );
925
926 destroy:
927         /* remember an error during destroy */
928         rc |= slap_destroy();
929
930         while ( !LDAP_STAILQ_EMPTY( &slap_sync_cookie )) {
931                 scp = LDAP_STAILQ_FIRST( &slap_sync_cookie );
932                 LDAP_STAILQ_REMOVE_HEAD( &slap_sync_cookie, sc_next );
933                 ch_free( scp );
934         }
935
936 #ifdef SLAPD_MODULES
937         module_kill();
938 #endif
939
940         slap_op_destroy();
941
942         extops_kill();
943
944         supported_feature_destroy();
945         entry_info_destroy();
946
947 stop:
948 #ifdef HAVE_NT_EVENT_LOG
949         if (is_NT_Service)
950         lutil_LogStoppedEvent( serverName );
951 #endif
952
953         Debug( LDAP_DEBUG_ANY, "slapd stopped.\n", 0, 0, 0 );
954
955
956 #ifdef HAVE_NT_SERVICE_MANAGER
957         lutil_ReportShutdownComplete();
958 #endif
959
960 #ifdef LOG_DEBUG
961     closelog();
962 #endif
963         slapd_daemon_destroy();
964
965         controls_destroy();
966
967         schema_destroy();
968
969         lutil_passwd_destroy();
970
971 #ifdef HAVE_TLS
972         if ( slap_tls_ld ) {
973                 SSL_CTX_free( slap_tls_ctx );
974                 ldap_unbind_ext( slap_tls_ld, NULL, NULL );
975         }
976         ldap_pvt_tls_destroy();
977 #endif
978
979         slap_sasl_regexp_destroy();
980
981         if ( slapd_pid_file_unlink ) {
982                 unlink( slapd_pid_file );
983         }
984         if ( slapd_args_file_unlink ) {
985                 unlink( slapd_args_file );
986         }
987
988         config_destroy();
989
990         if ( configfile )
991                 ch_free( configfile );
992         if ( configdir )
993                 ch_free( configdir );
994         if ( urls )
995                 ch_free( urls );
996
997         /* kludge, get symbols referenced */
998         tavl_free( NULL, NULL );
999
1000 #ifdef CSRIMALLOC
1001         mal_dumpleaktrace( leakfile );
1002 #endif
1003
1004         MAIN_RETURN(rc);
1005 }
1006
1007
1008 #ifdef LDAP_SIGCHLD
1009
1010 /*
1011  *  Catch and discard terminated child processes, to avoid zombies.
1012  */
1013
1014 static RETSIGTYPE
1015 wait4child( int sig )
1016 {
1017     int save_errno = errno;
1018
1019 #ifdef WNOHANG
1020     errno = 0;
1021 #ifdef HAVE_WAITPID
1022     while ( waitpid( (pid_t)-1, NULL, WNOHANG ) > 0 || errno == EINTR )
1023         ;       /* NULL */
1024 #else
1025     while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR )
1026         ;       /* NULL */
1027 #endif
1028 #else
1029     (void) wait( NULL );
1030 #endif
1031     (void) SIGNAL_REINSTALL( sig, wait4child );
1032     errno = save_errno;
1033 }
1034
1035 #endif /* LDAP_SIGCHLD */
1036