]> git.sur5r.net Git - openldap/blob - servers/slapd/main.c
reject registrations when back-monitor is not configured
[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         (void) ldap_pvt_thread_initialize();
276
277         serverName = lutil_progname( "slapd", argc, argv );
278
279         if ( strcmp( serverName, "slapd" ) ) {
280                 for (i=0; tools[i].name; i++) {
281                         if ( !strcmp( serverName, tools[i].name ) ) {
282                                 rc = tools[i].func(argc, argv);
283                                 MAIN_RETURN(rc);
284                         }
285                 }
286         }
287
288 #ifdef HAVE_NT_SERVICE_MANAGER
289         {
290                 int *i;
291                 char *newConfigFile;
292                 char *newConfigDir;
293                 char *newUrls;
294                 char *regService = NULL;
295
296                 if ( is_NT_Service ) {
297                         lutil_CommenceStartupProcessing( serverName, slap_sig_shutdown );
298                         if ( strcmp(serverName, SERVICE_NAME) )
299                             regService = serverName;
300                 }
301
302                 i = (int*)lutil_getRegParam( regService, "DebugLevel" );
303                 if ( i != NULL ) {
304                         slap_debug = *i;
305                         Debug( LDAP_DEBUG_ANY,
306                                 "new debug level from registry is: %d\n", slap_debug, 0, 0 );
307                 }
308
309                 newUrls = (char *) lutil_getRegParam(regService, "Urls");
310                 if (newUrls) {
311                     if (urls)
312                         ch_free(urls);
313
314                     urls = ch_strdup(newUrls);
315                     Debug(LDAP_DEBUG_ANY, "new urls from registry: %s\n",
316                                 urls, 0, 0);
317                 }
318
319                 newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
320                 if ( newConfigFile != NULL ) {
321                         configfile = newConfigFile;
322                         Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", configfile, 0, 0 );
323                 }
324
325                 newConfigDir = (char*)lutil_getRegParam( regService, "ConfigDir" );
326                 if ( newConfigDir != NULL ) {
327                         configdir = newConfigDir;
328                         Debug ( LDAP_DEBUG_ANY, "new config dir from registry is: %s\n", configdir, 0, 0 );
329                 }
330         }
331 #endif
332
333         while ( (i = getopt( argc, argv,
334                              "c:d:f:F:h:n:o:s:StT:V"
335 #if LDAP_PF_INET6
336                                 "46"
337 #endif
338 #ifdef HAVE_CHROOT
339                                 "r:"
340 #endif
341 #ifdef LOG_LOCAL4
342                              "l:"
343 #endif
344 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
345                              "u:g:"
346 #endif
347                              )) != EOF ) {
348                 switch ( i ) {
349 #ifdef LDAP_PF_INET6
350                 case '4':
351                         slap_inet4or6 = AF_INET;
352                         break;
353                 case '6':
354                         slap_inet4or6 = AF_INET6;
355                         break;
356 #endif
357
358                 case 'h':       /* listen URLs */
359                         if ( urls != NULL ) free( urls );
360                         urls = ch_strdup( optarg );
361                         break;
362
363                 case 'c':       /* provide sync cookie, override if exist in replica */
364                         scp = (struct sync_cookie *) ch_calloc( 1,
365                                                                                 sizeof( struct sync_cookie ));
366                         ber_str2bv( optarg, 0, 1, &scp->octet_str );
367                         
368                         /* This only parses out the rid at this point */
369                         slap_parse_sync_cookie( scp, NULL );
370
371                         if ( scp->rid == -1 ) {
372                                 Debug( LDAP_DEBUG_ANY,
373                                                 "main: invalid cookie \"%s\"\n",
374                                                 optarg, 0, 0 );
375                                 slap_sync_cookie_free( scp, 1 );
376                                 goto destroy;
377                         }
378
379                         LDAP_STAILQ_FOREACH( scp_entry, &slap_sync_cookie, sc_next ) {
380                                 if ( scp->rid == scp_entry->rid ) {
381                                         Debug( LDAP_DEBUG_ANY,
382                                                     "main: duplicated replica id in cookies\n",
383                                                         0, 0, 0 );
384                                         slap_sync_cookie_free( scp, 1 );
385                                         goto destroy;
386                                 }
387                         }
388                         LDAP_STAILQ_INSERT_TAIL( &slap_sync_cookie, scp, sc_next );
389                         break;
390
391                 case 'd':       /* set debug level and 'do not detach' flag */
392                         no_detach = 1;
393 #ifdef LDAP_DEBUG
394                         if ( optarg != NULL && optarg[ 0 ] != '-' && !isdigit( optarg[ 0 ] ) )
395                         {
396                                 int     level;
397
398                                 if ( str2loglevel( optarg, &level ) ) {
399                                         fprintf( stderr,
400                                                 "unrecognized log level "
401                                                 "\"%s\"\n", optarg );
402                                         goto destroy;
403                                 }
404
405                                 slap_debug |= level;
406                         } else {
407                                 int     level;
408                                 char    *next = NULL;
409
410                                 level = strtol( optarg, &next, 0 );
411                                 if ( next == NULL || next[ 0 ] != '\0' ) {
412                                         fprintf( stderr,
413                                                 "unrecognized log level "
414                                                 "\"%s\"\n", optarg );
415                                         goto destroy;
416                                 }
417                                 slap_debug |= level;
418                         }
419 #else
420                         if ( atoi( optarg ) != 0 )
421                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
422                                        stderr );
423 #endif
424                         break;
425
426                 case 'f':       /* read config file */
427                         configfile = ch_strdup( optarg );
428                         break;
429
430                 case 'F':       /* use config dir */
431                         configdir = ch_strdup( optarg );
432                         break;
433
434                 case 'o': {
435                         char            *val = strchr( optarg, '=' );
436                         struct berval   opt;
437                         int             i;
438
439                         opt.bv_val = optarg;
440                         
441                         if ( val ) {
442                                 opt.bv_len = ( val - optarg );
443                                 val++;
444                         
445                         } else {
446                                 opt.bv_len = strlen( optarg );
447                         }
448
449                         for ( i = 0; !BER_BVISNULL( &option_helpers[i].oh_name ); i++ ) {
450                                 if ( ber_bvstrcasecmp( &option_helpers[i].oh_name, &opt ) == 0 ) {
451                                         assert( option_helpers[i].oh_fnc != NULL );
452                                         if ( (*option_helpers[i].oh_fnc)( val, option_helpers[i].oh_arg ) == -1 ) {
453                                                 /* we assume the option parsing helper
454                                                  * issues appropriate and self-explanatory
455                                                  * error messages... */
456                                                 goto stop;
457                                         }
458                                         break;
459                                 }
460                         }
461
462                         if ( BER_BVISNULL( &option_helpers[i].oh_name ) ) {
463                                 goto unhandled_option;
464                         }
465                         break;
466                 }
467
468                 case 's':       /* set syslog level */
469                         ldap_syslog = atoi( optarg );
470                         break;
471
472 #ifdef LOG_LOCAL4
473                 case 'l':       /* set syslog local user */
474                         syslogUser = cnvt_str2int( optarg,
475                                 syslog_types, DEFAULT_SYSLOG_USER );
476                         break;
477 #endif
478
479 #ifdef HAVE_CHROOT
480                 case 'r':
481                         if( sandbox ) free(sandbox);
482                         sandbox = ch_strdup( optarg );
483                         break;
484 #endif
485
486 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
487                 case 'u':       /* user name */
488                         if( username ) free(username);
489                         username = ch_strdup( optarg );
490                         break;
491
492                 case 'g':       /* group name */
493                         if( groupname ) free(groupname);
494                         groupname = ch_strdup( optarg );
495                         break;
496 #endif /* SETUID && GETUID */
497
498                 case 'n':  /* NT service name */
499                         serverName = ch_strdup( optarg );
500                         break;
501
502                 case 't':
503                         /* deprecated; use slaptest instead */
504                         fprintf( stderr, "option -t deprecated; "
505                                 "use slaptest command instead\n" );
506                         check |= CHECK_CONFIG;
507                         break;
508
509                 case 'V':
510                         version++;
511                         break;
512
513                 case 'T':
514                         /* try full option string first */
515                         for ( i = 0; tools[i].name; i++ ) {
516                                 if ( strcmp( optarg, &tools[i].name[4] ) == 0 ) {
517                                         rc = tools[i].func( argc, argv );
518                                         MAIN_RETURN( rc );
519                                 }
520                         }
521
522                         /* try bits of option string (backward compatibility for single char) */
523                         l = strlen( optarg );
524                         for ( i = 0; tools[i].name; i++ ) {
525                                 if ( strncmp( optarg, &tools[i].name[4], l ) == 0 ) {
526                                         rc = tools[i].func( argc, argv );
527                                         MAIN_RETURN( rc );
528                                 }
529                         }
530                         
531                         /* issue error */
532                         serverName = optarg;
533                         serverNamePrefix = "slap";
534                         fprintf( stderr, "program name \"%s%s\" unrecognized; "
535                                         "aborting...\n", serverNamePrefix, serverName );
536                         /* FALLTHRU */
537                 default:
538 unhandled_option:;
539                         usage( argv[0] );
540                         rc = 1;
541                         SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
542                         goto stop;
543                 }
544         }
545
546         ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
547         ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
548         ldif_debug = slap_debug;
549
550         if ( version ) {
551                 fprintf( stderr, "%s\n", Versionstr );
552                 if ( version > 1 ) goto stop;
553         }
554
555         {
556                 char *logName;
557 #ifdef HAVE_EBCDIC
558                 logName = ch_strdup( serverName );
559                 __atoe( logName );
560 #else
561                 logName = serverName;
562 #endif
563
564 #ifdef LOG_LOCAL4
565                 openlog( logName, OPENLOG_OPTIONS, syslogUser );
566 #elif LOG_DEBUG
567                 openlog( logName, OPENLOG_OPTIONS );
568 #endif
569 #ifdef HAVE_EBCDIC
570                 free( logName );
571 #endif
572         }
573
574         Debug( LDAP_DEBUG_ANY, "%s", Versionstr, 0, 0 );
575
576         if( check == CHECK_NONE && slapd_daemon_init( urls ) != 0 ) {
577                 rc = 1;
578                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
579                 goto stop;
580         }
581
582 #if defined(HAVE_CHROOT)
583         if ( sandbox ) {
584                 if ( chdir( sandbox ) ) {
585                         perror("chdir");
586                         rc = 1;
587                         goto stop;
588                 }
589                 if ( chroot( sandbox ) ) {
590                         perror("chroot");
591                         rc = 1;
592                         goto stop;
593                 }
594         }
595 #endif
596
597 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
598         if ( username != NULL || groupname != NULL ) {
599                 slap_init_user( username, groupname );
600         }
601 #endif
602
603         extops_init();
604         lutil_passwd_init();
605         slap_op_init();
606
607         rc = slap_init( serverMode, serverName );
608         if ( rc ) {
609                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
610                 goto destroy;
611         }
612
613         if ( read_config( configfile, configdir ) != 0 ) {
614                 rc = 1;
615                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
616
617                 if ( check & CHECK_CONFIG ) {
618                         fprintf( stderr, "config check failed\n" );
619                 }
620
621                 goto destroy;
622         }
623
624         if ( check & CHECK_CONFIG ) {
625                 fprintf( stderr, "config check succeeded\n" );
626
627                 check &= ~CHECK_CONFIG;
628                 if ( check == CHECK_NONE ) {
629                         rc = 0;
630                         goto destroy;
631                 }
632         }
633
634         if ( glue_sub_init( ) != 0 ) {
635                 Debug( LDAP_DEBUG_ANY,
636                     "subordinate config error\n",
637                     0, 0, 0 );
638
639                 goto destroy;
640         }
641
642         if ( slap_schema_check( ) != 0 ) {
643                 Debug( LDAP_DEBUG_ANY,
644                     "schema prep error\n",
645                     0, 0, 0 );
646
647                 goto destroy;
648         }
649
650 #ifdef HAVE_TLS
651         rc = ldap_pvt_tls_init();
652         if( rc != 0) {
653                 Debug( LDAP_DEBUG_ANY,
654                     "main: TLS init failed: %d\n",
655                     0, 0, 0 );
656                 rc = 1;
657                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
658                 goto destroy;
659         }
660
661         {
662                 void *def_ctx = NULL;
663
664                 /* Save existing default ctx, if any */
665                 ldap_pvt_tls_get_option( NULL, LDAP_OPT_X_TLS_CTX, &def_ctx );
666
667                 /* Force new ctx to be created */
668                 ldap_pvt_tls_set_option( NULL, LDAP_OPT_X_TLS_CTX, NULL );
669
670                 rc = ldap_pvt_tls_init_def_ctx();
671                 if( rc != 0) {
672                         Debug( LDAP_DEBUG_ANY,
673                             "main: TLS init def ctx failed: %d\n",
674                             rc, 0, 0 );
675                         rc = 1;
676                         SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
677                         goto destroy;
678                 }
679                 /* Retrieve slapd's own ctx */
680                 ldap_pvt_tls_get_option( NULL, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
681                 /* Restore previous ctx */
682                 ldap_pvt_tls_set_option( NULL, LDAP_OPT_X_TLS_CTX, def_ctx );
683         }
684 #endif
685
686         (void) SIGNAL( LDAP_SIGUSR1, slap_sig_wake );
687         (void) SIGNAL( LDAP_SIGUSR2, slap_sig_shutdown );
688
689 #ifdef SIGPIPE
690         (void) SIGNAL( SIGPIPE, SIG_IGN );
691 #endif
692 #ifdef SIGHUP
693         (void) SIGNAL( SIGHUP, slap_sig_shutdown );
694 #endif
695         (void) SIGNAL( SIGINT, slap_sig_shutdown );
696         (void) SIGNAL( SIGTERM, slap_sig_shutdown );
697 #ifdef SIGTRAP
698         (void) SIGNAL( SIGTRAP, slap_sig_shutdown );
699 #endif
700 #ifdef LDAP_SIGCHLD
701         (void) SIGNAL( LDAP_SIGCHLD, wait4child );
702 #endif
703 #ifdef SIGBREAK
704         /* SIGBREAK is generated when Ctrl-Break is pressed. */
705         (void) SIGNAL( SIGBREAK, slap_sig_shutdown );
706 #endif
707
708 #ifndef HAVE_WINSOCK
709         lutil_detach( no_detach, 0 );
710 #endif /* HAVE_WINSOCK */
711
712 #ifdef CSRIMALLOC
713         mal_leaktrace(1);
714 #endif
715
716         /*
717          * FIXME: moved here from slapd_daemon_task()
718          * because back-monitor db_open() needs it
719          */
720         time( &starttime );
721
722         if ( slap_startup( NULL )  != 0 ) {
723                 rc = 1;
724                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
725                 goto shutdown;
726         }
727
728         Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
729
730
731         if ( slapd_pid_file != NULL ) {
732                 FILE *fp = fopen( slapd_pid_file, "w" );
733
734                 if( fp != NULL ) {
735                         fprintf( fp, "%d\n", (int) getpid() );
736                         fclose( fp );
737
738                 } else {
739                         free(slapd_pid_file);
740                         slapd_pid_file = NULL;
741                 }
742         }
743
744         if ( slapd_args_file != NULL ) {
745                 FILE *fp = fopen( slapd_args_file, "w" );
746
747                 if( fp != NULL ) {
748                         for ( i = 0; i < g_argc; i++ ) {
749                                 fprintf( fp, "%s ", g_argv[i] );
750                         }
751                         fprintf( fp, "\n" );
752                         fclose( fp );
753                 } else {
754                         free(slapd_args_file);
755                         slapd_args_file = NULL;
756                 }
757         }
758
759 #ifdef HAVE_NT_EVENT_LOG
760         if (is_NT_Service)
761         lutil_LogStartedEvent( serverName, slap_debug, configfile ?
762                 configfile : SLAPD_DEFAULT_CONFIGFILE , urls );
763 #endif
764
765         rc = slapd_daemon();
766
767 #ifdef HAVE_NT_SERVICE_MANAGER
768         /* Throw away the event that we used during the startup process. */
769         if ( is_NT_Service )
770                 ldap_pvt_thread_cond_destroy( &started_event );
771 #endif
772
773 shutdown:
774         /* remember an error during shutdown */
775         rc |= slap_shutdown( NULL );
776
777 destroy:
778         /* remember an error during destroy */
779         rc |= slap_destroy();
780
781         while ( !LDAP_STAILQ_EMPTY( &slap_sync_cookie )) {
782                 scp = LDAP_STAILQ_FIRST( &slap_sync_cookie );
783                 LDAP_STAILQ_REMOVE_HEAD( &slap_sync_cookie, sc_next );
784                 ch_free( scp );
785         }
786
787 #ifdef SLAPD_MODULES
788         module_kill();
789 #endif
790
791         slap_op_destroy();
792
793         extops_kill();
794
795 stop:
796 #ifdef HAVE_NT_EVENT_LOG
797         if (is_NT_Service)
798         lutil_LogStoppedEvent( serverName );
799 #endif
800
801         Debug( LDAP_DEBUG_ANY, "slapd stopped.\n", 0, 0, 0 );
802
803
804 #ifdef HAVE_NT_SERVICE_MANAGER
805         lutil_ReportShutdownComplete();
806 #endif
807
808 #ifdef LOG_DEBUG
809     closelog();
810 #endif
811         slapd_daemon_destroy();
812
813         controls_destroy();
814
815         schema_destroy();
816
817         lutil_passwd_destroy();
818
819 #ifdef HAVE_TLS
820         ldap_pvt_tls_destroy();
821 #endif
822
823         if ( slapd_pid_file != NULL ) {
824                 unlink( slapd_pid_file );
825         }
826         if ( slapd_args_file != NULL ) {
827                 unlink( slapd_args_file );
828         }
829
830         config_destroy();
831
832         if ( configfile )
833                 ch_free( configfile );
834         if ( configdir )
835                 ch_free( configdir );
836         if ( urls )
837                 ch_free( urls );
838
839 #ifdef CSRIMALLOC
840         mal_dumpleaktrace( leakfile );
841 #endif
842
843         MAIN_RETURN(rc);
844 }
845
846
847 #ifdef LDAP_SIGCHLD
848
849 /*
850  *  Catch and discard terminated child processes, to avoid zombies.
851  */
852
853 static RETSIGTYPE
854 wait4child( int sig )
855 {
856     int save_errno = errno;
857
858 #ifdef WNOHANG
859     errno = 0;
860 #ifdef HAVE_WAITPID
861     while ( waitpid( (pid_t)-1, NULL, WNOHANG ) > 0 || errno == EINTR )
862         ;       /* NULL */
863 #else
864     while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR )
865         ;       /* NULL */
866 #endif
867 #else
868     (void) wait( NULL );
869 #endif
870     (void) SIGNAL_REINSTALL( sig, wait4child );
871     errno = save_errno;
872 }
873
874 #endif /* LDAP_SIGCHLD */
875
876
877 #ifdef LOG_LOCAL4
878
879 /*
880  *  Convert a string to an integer by means of a dispatcher table
881  *  if the string is not in the table return the default
882  */
883
884 static int
885 cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
886 {
887     int        retVal = defaultVal;
888     STRDISP_P  disp;
889
890     for (disp = dispatcher; disp->stringVal; disp++) {
891
892         if (!strncasecmp (stringVal, disp->stringVal, disp->abbr)) {
893
894             retVal = disp->intVal;
895             break;
896
897         }
898     }
899
900     return (retVal);
901 }
902
903 #endif  /* LOG_LOCAL4 */