]> git.sur5r.net Git - openldap/blob - servers/slapd/main.c
slight change to chdir/chroot commit to clean up perror args
[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 ) {
305                 if ( chdir( sandbox ) ) {
306                         perror("chdir");
307                         rc = 1;
308                         goto stop;
309                 }
310                 if ( chroot( sandbox ) ) {
311                         perror("chroot");
312                         rc = 1;
313                         goto stop;
314                 }
315         }
316 #endif
317
318 #if defined(HAVE_SETUID) && defined(HAVE_SETGID)
319         if ( username != NULL || groupname != NULL ) {
320                 slap_init_user( username, groupname );
321         }
322 #endif
323
324         extops_init();
325
326 #ifdef SLAPD_MODULES
327         if ( module_init() != 0 ) {
328                 rc = 1;
329                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 17 );
330                 goto destroy;
331         }
332 #endif
333
334         if ( slap_init( serverMode, serverName ) != 0 ) {
335                 rc = 1;
336                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
337                 goto destroy;
338         }
339
340         if ( schema_init( ) != 0 ) {
341                 Debug( LDAP_DEBUG_ANY,
342                     "schema initialization error\n",
343                     0, 0, 0 );
344                 goto destroy;
345         }
346
347         if ( read_config( configfile ) != 0 ) {
348                 rc = 1;
349                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
350                 goto destroy;
351         }
352
353         if ( schema_prep( ) != 0 ) {
354                 Debug( LDAP_DEBUG_ANY,
355                     "schema prep error\n",
356                     0, 0, 0 );
357                 goto destroy;
358         }
359
360 #ifdef HAVE_TLS
361         rc = ldap_pvt_tls_init();
362
363         if (rc || ldap_pvt_tls_init_def_ctx() != 0) {
364                 rc = 1;
365                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
366                 goto destroy;
367         }
368 #endif
369
370         (void) SIGNAL( LDAP_SIGUSR1, slap_sig_wake );
371         (void) SIGNAL( LDAP_SIGUSR2, slap_sig_shutdown );
372
373 #ifdef SIGPIPE
374         (void) SIGNAL( SIGPIPE, SIG_IGN );
375 #endif
376 #ifdef SIGHUP
377         (void) SIGNAL( SIGHUP, slap_sig_shutdown );
378 #endif
379         (void) SIGNAL( SIGINT, slap_sig_shutdown );
380         (void) SIGNAL( SIGTERM, slap_sig_shutdown );
381 #ifdef LDAP_SIGCHLD
382         (void) SIGNAL( LDAP_SIGCHLD, wait4child );
383 #endif
384 #ifdef SIGBREAK
385         /* SIGBREAK is generated when Ctrl-Break is pressed. */
386         (void) SIGNAL( SIGBREAK, slap_sig_shutdown );
387 #endif
388
389 #ifndef HAVE_WINSOCK
390         lutil_detach( no_detach, 0 );
391 #endif /* HAVE_WINSOCK */
392
393 #ifdef CSRIMALLOC
394         mal_leaktrace(1);
395 #endif
396
397         if ( slap_startup( NULL )  != 0 ) {
398                 rc = 1;
399                 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
400                 goto shutdown;
401         }
402
403         {
404                 FILE *fp;
405
406                 Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
407
408                 if (( slapd_pid_file != NULL ) &&
409                         (( fp = fopen( slapd_pid_file, "w" )) != NULL ))
410                 {
411                         fprintf( fp, "%d\n", (int) getpid() );
412                         fclose( fp );
413                 }
414
415                 if (( slapd_args_file != NULL ) &&
416                         (( fp = fopen( slapd_args_file, "w" )) != NULL ))
417                 {
418                         for ( i = 0; i < g_argc; i++ ) {
419                                 fprintf( fp, "%s ", g_argv[i] );
420                         }
421                         fprintf( fp, "\n" );
422                         fclose( fp );
423                 }
424         }
425
426 #ifdef HAVE_NT_EVENT_LOG
427         if (is_NT_Service)
428         LogSlapdStartedEvent( serverName, slap_debug, configfile, urls );
429 #endif
430
431         rc = slapd_daemon();
432
433 #ifdef HAVE_NT_SERVICE_MANAGER
434         /* Throw away the event that we used during the startup process. */
435         if ( is_NT_Service )
436                 ldap_pvt_thread_cond_destroy( &started_event );
437 #endif
438
439 shutdown:
440         /* remember an error during shutdown */
441         rc |= slap_shutdown( NULL );
442
443 destroy:
444         /* remember an error during destroy */
445         rc |= slap_destroy();
446
447 #ifdef SLAPD_MODULES
448         module_kill();
449 #endif
450
451         extops_kill();
452
453 stop:
454 #ifdef HAVE_NT_EVENT_LOG
455         if (is_NT_Service)
456         LogSlapdStoppedEvent( serverName );
457 #endif
458
459         Debug( LDAP_DEBUG_ANY, "slapd stopped.\n", 0, 0, 0 );
460
461 #ifdef HAVE_NT_SERVICE_MANAGER
462         ReportSlapdShutdownComplete();
463 #endif
464
465 #ifdef LOG_DEBUG
466     closelog();
467 #endif
468         slapd_daemon_destroy();
469
470 #ifdef CSRIMALLOC
471         mal_dumpleaktrace( leakfile );
472 #endif
473
474         MAIN_RETURN(rc);
475 }
476
477
478 #ifdef LDAP_SIGCHLD
479
480 /*
481  *  Catch and discard terminated child processes, to avoid zombies.
482  */
483
484 static RETSIGTYPE
485 wait4child( int sig )
486 {
487     int save_errno = errno;
488
489 #ifdef WNOHANG
490     errno = 0;
491 #ifdef HAVE_WAITPID
492     while ( waitpid( (pid_t)-1, NULL, WNOHANG ) >= 0 || errno == EINTR )
493         ;       /* NULL */
494 #else
495     while ( wait3( NULL, WNOHANG, NULL ) >= 0 || errno == EINTR )
496         ;       /* NULL */
497 #endif
498 #else
499     (void) wait( NULL );
500 #endif
501     (void) SIGNAL_REINSTALL( sig, wait4child );
502     errno = save_errno;
503 }
504
505 #endif /* SIGCHLD || SIGCLD */
506
507
508 #ifdef LOG_LOCAL4
509
510 /*
511  *  Convert a string to an integer by means of a dispatcher table
512  *  if the string is not in the table return the default
513  */
514
515 static int
516 cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
517 {
518     int        retVal = defaultVal;
519     STRDISP_P  disp;
520
521     for (disp = dispatcher; disp->stringVal; disp++) {
522
523         if (!strncasecmp (stringVal, disp->stringVal, disp->abbr)) {
524
525             retVal = disp->intVal;
526             break;
527
528         }
529     }
530
531     return (retVal);
532 }
533
534 #endif  /* LOG_LOCAL4 */