]> git.sur5r.net Git - openldap/blob - servers/slapd/main.c
0fc8b3072c552b10e3532f79c95ded24f9f0d113
[openldap] / servers / slapd / main.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 #include "portable.h"
7
8 #include <stdio.h>
9
10 #include <ac/signal.h>
11 #include <ac/socket.h>
12 #include <ac/string.h>
13 #include <ac/time.h>
14 #include <ac/unistd.h>
15 #include <ac/wait.h>
16 #include <ac/errno.h>
17
18 #include "slap.h"
19 #include "lutil.h"
20
21 #ifdef LDAP_SIGCHLD
22 static RETSIGTYPE wait4child( int sig );
23 #endif
24
25 #ifdef HAVE_NT_SERVICE_MANAGER
26 #define MAIN_RETURN(x) return
27 struct sockaddr_in      bind_addr;
28
29 /* in nt_main.c */
30 LDAP_LUTIL_V(SERVICE_STATUS)            SLAPDServiceStatus;
31 LDAP_LUTIL_V(SERVICE_STATUS_HANDLE)     hSLAPDServiceStatus;
32 extern ldap_pvt_thread_cond_t   started_event,          stopped_event;
33 extern int        is_NT_Service;
34
35 void CommenceStartupProcessing( LPCTSTR serverName,
36                                                            void(*stopper)(int));
37 void ReportSlapdShutdownComplete( void );
38 void *getRegParam( char *svc, char *value );
39
40 #define SERVICE_EXIT( e, n )    do { \
41         if ( is_NT_Service ) { \
42                 SLAPDServiceStatus.dwWin32ExitCode                              = (e); \
43                 SLAPDServiceStatus.dwServiceSpecificExitCode    = (n); \
44         } \
45 } while ( 0 )
46
47 #else
48 #define SERVICE_EXIT( e, n )
49 #define MAIN_RETURN(x) return(x)
50 #endif
51
52 #ifdef HAVE_NT_EVENT_LOG
53 void LogSlapdStartedEvent( char *svc, int slap_debug, char *configfile, char *urls );
54 void LogSlapdStoppedEvent( char *svc );
55 #endif
56
57 /*
58  * when more than one slapd is running on one machine, each one might have
59  * it's own LOCAL for syslogging and must have its own pid/args files
60  */
61
62 #ifndef HAVE_MKVERSION
63 const char Versionstr[] =
64         OPENLDAP_PACKAGE " " OPENLDAP_VERSION " Standalone LDAP Server (slapd)";
65 #endif
66
67 #ifdef LOG_LOCAL4
68
69 #define DEFAULT_SYSLOG_USER  LOG_LOCAL4
70
71 typedef struct _str2intDispatch {
72         char    *stringVal;
73         int      abbr;
74         int      intVal;
75 } STRDISP, *STRDISP_P;
76
77
78 /* table to compute syslog-options to integer */
79 static STRDISP  syslog_types[] = {
80         { "LOCAL0", sizeof("LOCAL0"), LOG_LOCAL0 },
81         { "LOCAL1", sizeof("LOCAL1"), LOG_LOCAL1 },
82         { "LOCAL2", sizeof("LOCAL2"), LOG_LOCAL2 },
83         { "LOCAL3", sizeof("LOCAL3"), LOG_LOCAL3 },
84         { "LOCAL4", sizeof("LOCAL4"), LOG_LOCAL4 },
85         { "LOCAL5", sizeof("LOCAL5"), LOG_LOCAL5 },
86         { "LOCAL6", sizeof("LOCAL6"), LOG_LOCAL6 },
87         { "LOCAL7", sizeof("LOCAL7"), LOG_LOCAL7 },
88         { NULL }
89 };
90
91 static int   cnvt_str2int( char *, STRDISP_P, int );
92
93 #endif  /* LOG_LOCAL4 */
94
95
96 static void
97 usage( char *name )
98 {
99         fprintf( stderr,
100                 "usage: %s options\n", name );
101         fprintf( stderr,
102                 "\t-d level\tDebug Level" "\n"
103                 "\t-f filename\tConfiguration File\n"
104 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
105                 "\t-g group\tGroup (id or name) to ran as\n"
106 #endif
107                 "\t-h URLs\tList of URLs to serve\n"
108 #ifdef LOG_LOCAL4
109                 "\t-l sysloguser\tSyslog User (default: LOCAL4)\n"
110 #endif
111                 "\t-n serverName\tservice name\n"
112 #ifdef HAVE_CHROOT
113                 "\t-r directory\n"
114 #endif
115                 "\t-s level\tSyslog Level\n"
116 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
117                 "\t-u user\tUser (id or name) to ran as\n"
118 #endif
119     );
120 }
121
122 #ifdef HAVE_NT_SERVICE_MANAGER
123 void WINAPI ServiceMain( DWORD argc, LPTSTR *argv )
124 #else
125 int main( int argc, char **argv )
126 #endif
127 {
128         int             i, no_detach = 0;
129         int             rc;
130         char *urls = NULL;
131 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
132         char *username = NULL;
133         char *groupname = NULL;
134 #endif
135 #if defined(HAVE_CHROOT)
136         char *sandbox = NULL;
137 #endif
138 #ifdef LOG_LOCAL4
139     int     syslogUser = DEFAULT_SYSLOG_USER;
140 #endif
141
142 #ifdef HAVE_NT_SERVICE_MANAGER
143         char            *configfile = ".\\slapd.conf";
144 #else
145         char            *configfile = SLAPD_DEFAULT_CONFIGFILE;
146 #endif
147         char        *serverName = NULL;
148         int         serverMode = SLAP_SERVER_MODE;
149
150 #ifdef CSRIMALLOC
151         FILE *leakfile;
152         if( ( leakfile = fopen( "slapd.leak", "w" )) == NULL ) {
153                 leakfile = stderr;
154         }
155 #endif
156
157         g_argc = argc;
158         g_argv = argv;
159
160 #ifdef HAVE_NT_SERVICE_MANAGER
161         {
162                 int *i;
163                 char *newConfigFile;
164                 char *newUrls;
165                 char *regService = NULL;
166
167                 if ( is_NT_Service ) {
168                         serverName = argv[0];
169                         CommenceStartupProcessing( serverName, slap_sig_shutdown );
170                         if ( strcmp(serverName, SERVICE_NAME) )
171                             regService = serverName;
172                 }
173
174                 i = (int*)getRegParam( regService, "DebugLevel" );
175                 if ( i != NULL ) 
176                 {
177                         slap_debug = *i;
178                         Debug( LDAP_DEBUG_ANY, "new debug level from registry is: %d\n", slap_debug, 0, 0 );
179                 }
180
181                 newUrls = (char *) getRegParam(regService, "Urls");
182                 if (newUrls)
183                 {
184                     if (urls)
185                         ch_free(urls);
186
187                     urls = ch_strdup(newUrls);
188                     Debug(LDAP_DEBUG_ANY, "new urls from registry: %s\n",
189                           urls, 0, 0);
190                 }
191
192                 newConfigFile = (char*)getRegParam( regService, "ConfigFile" );
193                 if ( newConfigFile != NULL ) 
194                 {
195                         configfile = newConfigFile;
196                         Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", configfile, 0, 0 );
197                 }
198         }
199 #endif
200
201         while ( (i = getopt( argc, argv,
202                              "d:f:h:s:n:"
203 #ifdef HAVE_CHROOT
204                                 "r:"
205 #endif
206 #ifdef LOG_LOCAL4
207                              "l:"
208 #endif
209 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
210                              "u:g:"
211 #endif
212                              )) != EOF ) {
213                 switch ( i ) {
214                 case 'h':       /* listen URLs */
215                         if ( urls != NULL ) free( urls );
216                         urls = ch_strdup( optarg );
217             break;
218
219                 case 'd':       /* set debug level and 'do not detach' flag */
220                         no_detach = 1;
221 #ifdef LDAP_DEBUG
222                         slap_debug |= atoi( optarg );
223 #else
224                         if ( atoi( optarg ) != 0 )
225                                 fputs( "must compile with LDAP_DEBUG for debugging\n",
226                                        stderr );
227 #endif
228                         break;
229
230                 case 'f':       /* read config file */
231                         configfile = ch_strdup( optarg );
232                         break;
233
234                 case 's':       /* set syslog level */
235                         ldap_syslog = atoi( optarg );
236                         break;
237
238 #ifdef LOG_LOCAL4
239                 case 'l':       /* set syslog local user */
240                         syslogUser = cnvt_str2int( optarg,
241                                 syslog_types, DEFAULT_SYSLOG_USER );
242                         break;
243 #endif
244
245 #ifdef HAVE_CHROOT
246                 case 'r':
247                         if( sandbox ) free(sandbox);
248                         sandbox = ch_strdup( optarg );
249                         break;
250 #endif
251
252 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
253                 case 'u':       /* user name */
254                         if( username ) free(username);
255                         username = ch_strdup( optarg );
256                         break;
257
258                 case 'g':       /* group name */
259                         if( groupname ) free(groupname);
260                         groupname = ch_strdup( optarg );
261                         break;
262 #endif /* SETUID && GETUID */
263
264                 case 'n':  /* NT service name */
265                         if( serverName != NULL ) free( serverName );
266                         serverName = ch_strdup( optarg );
267                         break;
268
269                 default:
270                         usage( argv[0] );
271                         rc = 1;
272                         SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
273                         goto stop;
274                 }
275         }
276
277         ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
278         ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
279         ldif_debug = slap_debug;
280
281         Debug( LDAP_DEBUG_TRACE, "%s", Versionstr, 0, 0 );
282
283         if( serverName == NULL ) {
284                 if ( (serverName = strrchr( argv[0], *LDAP_DIRSEP )) == NULL ) {
285                         serverName = ch_strdup( argv[0] );
286                 } else {
287                         serverName = ch_strdup( serverName + 1 );
288                 }
289         }
290
291 #ifdef LOG_LOCAL4
292         openlog( serverName, OPENLOG_OPTIONS, syslogUser );
293 #elif LOG_DEBUG
294         openlog( serverName, OPENLOG_OPTIONS );
295 #endif
296
297         if( slapd_daemon_init( urls ) != 0 ) {
298                 rc = 1;
299                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
300                 goto stop;
301         }
302
303 #if defined(HAVE_CHROOT)
304         if ( sandbox && chroot( sandbox ) ) {
305                 perror("chroot");
306                 rc = 1;
307                 goto stop;
308         }
309 #endif
310
311 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
312         if ( username != NULL || groupname != NULL ) {
313                 slap_init_user( username, groupname );
314         }
315 #endif
316
317         extops_init();
318
319 #ifdef SLAPD_MODULES
320         if ( module_init() != 0 ) {
321                 rc = 1;
322                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 17 );
323                 goto destroy;
324         }
325 #endif
326
327         if ( slap_init( serverMode, serverName ) != 0 ) {
328                 rc = 1;
329                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
330                 goto destroy;
331         }
332
333         if ( schema_init( ) != 0 ) {
334                 Debug( LDAP_DEBUG_ANY,
335                     "schema initialization error\n",
336                     0, 0, 0 );
337                 goto destroy;
338         }
339
340         if ( read_config( configfile ) != 0 ) {
341                 rc = 1;
342                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
343                 goto destroy;
344         }
345
346         if ( schema_prep( ) != 0 ) {
347                 Debug( LDAP_DEBUG_ANY,
348                     "schema prep error\n",
349                     0, 0, 0 );
350                 goto destroy;
351         }
352
353 #ifdef HAVE_TLS
354         rc = ldap_pvt_tls_init();
355
356         if (rc || ldap_pvt_tls_init_def_ctx() != 0) {
357                 rc = 1;
358                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
359                 goto destroy;
360         }
361 #endif
362
363         (void) SIGNAL( LDAP_SIGUSR1, slap_sig_wake );
364         (void) SIGNAL( LDAP_SIGUSR2, slap_sig_shutdown );
365
366 #ifdef SIGPIPE
367         (void) SIGNAL( SIGPIPE, SIG_IGN );
368 #endif
369 #ifdef SIGHUP
370         (void) SIGNAL( SIGHUP, slap_sig_shutdown );
371 #endif
372         (void) SIGNAL( SIGINT, slap_sig_shutdown );
373         (void) SIGNAL( SIGTERM, slap_sig_shutdown );
374 #ifdef LDAP_SIGCHLD
375         (void) SIGNAL( LDAP_SIGCHLD, wait4child );
376 #endif
377 #ifdef SIGBREAK
378         /* SIGBREAK is generated when Ctrl-Break is pressed. */
379         (void) SIGNAL( SIGBREAK, slap_sig_shutdown );
380 #endif
381
382 #ifndef HAVE_WINSOCK
383         lutil_detach( no_detach, 0 );
384 #endif /* HAVE_WINSOCK */
385
386 #ifdef CSRIMALLOC
387         mal_leaktrace(1);
388 #endif
389
390         if ( slap_startup( NULL )  != 0 ) {
391                 rc = 1;
392                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
393                 goto shutdown;
394         }
395
396         {
397                 FILE *fp;
398
399                 Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
400
401                 if (( slapd_pid_file != NULL ) &&
402                         (( fp = fopen( slapd_pid_file, "w" )) != NULL ))
403                 {
404                         fprintf( fp, "%d\n", (int) getpid() );
405                         fclose( fp );
406                 }
407
408                 if (( slapd_args_file != NULL ) &&
409                         (( fp = fopen( slapd_args_file, "w" )) != NULL ))
410                 {
411                         for ( i = 0; i < g_argc; i++ ) {
412                                 fprintf( fp, "%s ", g_argv[i] );
413                         }
414                         fprintf( fp, "\n" );
415                         fclose( fp );
416                 }
417         }
418
419 #ifdef HAVE_NT_EVENT_LOG
420         if (is_NT_Service)
421         LogSlapdStartedEvent( serverName, slap_debug, configfile, urls );
422 #endif
423
424         rc = slapd_daemon();
425
426 #ifdef HAVE_NT_SERVICE_MANAGER
427         /* Throw away the event that we used during the startup process. */
428         if ( is_NT_Service )
429                 ldap_pvt_thread_cond_destroy( &started_event );
430 #endif
431
432 shutdown:
433         /* remember an error during shutdown */
434         rc |= slap_shutdown( NULL );
435
436 destroy:
437         /* remember an error during destroy */
438         rc |= slap_destroy();
439
440 #ifdef SLAPD_MODULES
441         module_kill();
442 #endif
443
444         extops_kill();
445
446 stop:
447 #ifdef HAVE_NT_EVENT_LOG
448         if (is_NT_Service)
449         LogSlapdStoppedEvent( serverName );
450 #endif
451
452         Debug( LDAP_DEBUG_ANY, "slapd stopped.\n", 0, 0, 0 );
453
454 #ifdef HAVE_NT_SERVICE_MANAGER
455         ReportSlapdShutdownComplete();
456 #endif
457
458 #ifdef LOG_DEBUG
459     closelog();
460 #endif
461         slapd_daemon_destroy();
462
463 #ifdef CSRIMALLOC
464         mal_dumpleaktrace( leakfile );
465 #endif
466
467         MAIN_RETURN(rc);
468 }
469
470
471 #ifdef LDAP_SIGCHLD
472
473 /*
474  *  Catch and discard terminated child processes, to avoid zombies.
475  */
476
477 static RETSIGTYPE
478 wait4child( int sig )
479 {
480     int save_errno = errno;
481
482 #ifdef WNOHANG
483     errno = 0;
484 #ifdef HAVE_WAITPID
485     while ( waitpid( (pid_t)-1, NULL, WNOHANG ) >= 0 || errno == EINTR )
486         ;       /* NULL */
487 #else
488     while ( wait3( NULL, WNOHANG, NULL ) >= 0 || errno == EINTR )
489         ;       /* NULL */
490 #endif
491 #else
492     (void) wait( NULL );
493 #endif
494     (void) SIGNAL_REINSTALL( sig, wait4child );
495     errno = save_errno;
496 }
497
498 #endif /* SIGCHLD || SIGCLD */
499
500
501 #ifdef LOG_LOCAL4
502
503 /*
504  *  Convert a string to an integer by means of a dispatcher table
505  *  if the string is not in the table return the default
506  */
507
508 static int
509 cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
510 {
511     int        retVal = defaultVal;
512     STRDISP_P  disp;
513
514     for (disp = dispatcher; disp->stringVal; disp++) {
515
516         if (!strncasecmp (stringVal, disp->stringVal, disp->abbr)) {
517
518             retVal = disp->intVal;
519             break;
520
521         }
522     }
523
524     return (retVal);
525 }
526
527 #endif  /* LOG_LOCAL4 */