2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 * Copyright 1998-2004 The OpenLDAP Foundation.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted only as authorized by the OpenLDAP
11 * A copy of this license is available in file LICENSE in the
12 * top-level directory of the distribution or, alternatively, at
13 * <http://www.OpenLDAP.org/license.html>.
15 /* Portions Copyright (c) 1996 Regents of the University of Michigan.
16 * All rights reserved.
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.
26 * This work was originally developed by the University of Michigan
27 * (as part of U-MICH LDAP). Additional significant contributors
34 * main.c - main routine for slurpd.
41 #include <ac/stdlib.h>
42 #include <ac/unistd.h>
50 #ifdef HAVE_NT_SERVICE_MANAGER
51 #define MAIN_RETURN(x) return
52 #define SERVICE_EXIT( e, n ) do { \
53 if ( is_NT_Service ) { \
54 lutil_ServiceStatus.dwWin32ExitCode = (e); \
55 lutil_ServiceStatus.dwServiceSpecificExitCode = (n); \
59 #define SERVICE_EXIT( e, n )
60 #define MAIN_RETURN(x) return(x)
63 #ifndef HAVE_MKVERSION
64 const char Versionstr[] =
65 OPENLDAP_PACKAGE " " OPENLDAP_VERSION " Standalone LDAP Replicator (slurpd)";
68 #ifdef HAVE_NT_SERVICE_MANAGER
69 void WINAPI ServiceMain( DWORD argc, LPTSTR *argv )
71 int main( int argc, char **argv )
75 /* Haven't yet written the non-threaded version */
76 fputs( "slurpd currently requires threads support\n", stderr );
82 /* initialize thread package */
83 ldap_pvt_thread_initialize();
86 * Create and initialize globals. init_globals() also initializes
87 * the main replication queue.
89 if (( sglob = init_globals()) == NULL ) {
90 fprintf( stderr, "Out of memory initializing globals\n" );
91 SERVICE_EXIT( ERROR_NOT_ENOUGH_MEMORY, 0 );
96 #ifdef HAVE_NT_SERVICE_MANAGER
100 char *regService = NULL;
102 if ( is_NT_Service ) {
103 sglob->serverName = argv[0];
104 lutil_CommenceStartupProcessing( sglob->serverName, slurp_set_shutdown );
105 if ( strcmp(sglob->serverName, SERVICE_NAME) )
106 regService = sglob->serverName;
109 i = (int*)lutil_getRegParam( regService, "DebugLevel" );
114 lutil_log_initialize( argc, argv );
115 LDAP_LOG( SLURPD, INFO,
116 "main: new debug level from registry is: %d\n",
119 Debug( LDAP_DEBUG_ANY, "new debug level from registry is: %d\n", ldap_debug, 0, 0 );
123 newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
124 if ( newConfigFile != NULL )
126 sglob->slapd_configfile = newConfigFile;
128 LDAP_LOG( SLURPD, INFO,
129 "main: new config file from registry is: %s\n", sglob->slapd_configfile, 0, 0 );
131 Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", sglob->slapd_configfile, 0, 0 );
139 * Process command-line args and fill in globals.
141 if ( doargs( argc, argv, sglob ) < 0 ) {
142 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
147 if ( sglob->version ) {
148 fprintf(stderr, "%s\n", Versionstr);
149 if (sglob->version > 1 ) {
156 LDAP_LOG( SLURPD, INFO, "%s\n", Versionstr, 0, 0 );
158 Debug ( LDAP_DEBUG_ANY, "%s\n", Versionstr, 0, 0 );
162 * Read slapd config file and initialize Re (per-replica) structs.
164 if ( slurpd_read_config( sglob->slapd_configfile ) < 0 ) {
166 "Errors encountered while processing config file \"%s\"\n",
167 sglob->slapd_configfile );
168 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
174 if( ldap_pvt_tls_init() || ldap_pvt_tls_init_def_ctx() ) {
175 fprintf( stderr, "TLS Initialization failed.\n" );
176 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
183 * Make sure our directory exists
185 if ( mkdir(sglob->slurpd_rdir, 0755) == -1 && errno != EEXIST) {
186 perror(sglob->slurpd_rdir);
187 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
193 * Get any saved state information off the disk.
195 if ( sglob->st->st_read( sglob->st )) {
196 fprintf( stderr, "Malformed slurpd status file \"%s\"\n",
197 sglob->slurpd_status_file );
198 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 17 );
204 * All readonly data should now be initialized.
205 * Check for any fatal error conditions before we get started
207 if ( sanity() < 0 ) {
208 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
215 * Detach from the controlling terminal
216 * unless the -d flag is given or in one-shot mode.
219 if ( ! (sglob->no_detach || sglob->one_shot_mode) ) {
220 lutil_detach( 0, 0 );
224 if ( slurpd_pid_file != NULL ) {
225 FILE *fp = fopen( slurpd_pid_file, "w" );
228 fprintf( fp, "%d\n", (int) getpid() );
232 free(slurpd_pid_file);
233 slurpd_pid_file = NULL;
237 if ( slurpd_args_file != NULL ) {
238 FILE *fp = fopen( slurpd_args_file, "w" );
241 for ( i = 0; i < argc; i++ ) {
242 fprintf( fp, "%s ", argv[i] );
247 free(slurpd_args_file);
248 slurpd_args_file = NULL;
252 if ( (rc = lutil_pair( sglob->wake_sds )) < 0 ) {
253 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
258 #ifdef HAVE_NT_EVENT_LOG
259 if (is_NT_Service) lutil_LogStartedEvent( sglob->serverName, ldap_debug, sglob->slapd_configfile, "n/a" );
263 * Start the main file manager thread (in fm.c).
265 if ( ldap_pvt_thread_create( &(sglob->fm_tid),
266 0, fm, (void *) NULL ) != 0 )
269 LDAP_LOG ( SLURPD, ERR,
270 "main: file manager ldap_pvt_thread_create failed\n" , 0, 0, 0 );
272 Debug( LDAP_DEBUG_ANY, "file manager ldap_pvt_thread_create failed\n",
275 SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
282 * wait for fm to finish if in oneshot mode
284 if ( sglob->one_shot_mode ) {
285 ldap_pvt_thread_join( sglob->fm_tid, (void *) NULL );
289 * Start threads - one thread for each replica
291 for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
292 start_replica_thread( sglob->replicas[ i ]);
295 #ifdef HAVE_NT_SERVICE_MANAGER
296 if ( started_event ) ldap_pvt_thread_cond_signal( &started_event );
300 * Wait for the fm thread to finish.
302 if ( !sglob->one_shot_mode ) {
303 ldap_pvt_thread_join( sglob->fm_tid, (void *) NULL );
307 * Wait for the replica threads to finish.
309 for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
310 ldap_pvt_thread_join( sglob->replicas[ i ]->ri_tid, (void *) NULL );
314 #ifdef HAVE_NT_SERVICE_MANAGER
316 ldap_pvt_thread_cond_destroy( &started_event );
317 lutil_LogStoppedEvent( sglob->serverName );
318 lutil_ReportShutdownComplete();
321 /* destroy the thread package */
322 ldap_pvt_thread_destroy();
325 ldap_pvt_tls_destroy();
329 LDAP_LOG ( SLURPD, RESULTS, "main: slurpd terminated\n", 0, 0, 0 );
331 Debug( LDAP_DEBUG_ANY, "slurpd: terminated.\n", 0, 0, 0 );
334 if ( slurpd_pid_file != NULL ) {
335 unlink( slurpd_pid_file );
337 if ( slurpd_args_file != NULL ) {
338 unlink( slurpd_args_file );
343 #endif /* !NO_THREADS */