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