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