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