openldap/servers/slurpd/main.c

320 lines
7.6 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-11-27 02:19:00 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
2005-01-02 04:49:32 +08:00
* Copyright 1998-2005 The OpenLDAP Foundation.
2003-11-27 02:19:00 +08:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
2001-01-21 01:49:05 +08:00
*/
2003-11-27 02:19:00 +08:00
/* Portions Copyright (c) 1996 Regents of the University of Michigan.
1998-08-09 08:43:13 +08:00
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
2003-11-27 02:19:00 +08:00
/* ACKNOWLEDGEMENTS:
* This work was originally developed by the University of Michigan
* (as part of U-MICH LDAP). Additional significant contributors
* include:
* Howard Chu
*/
1998-08-09 08:43:13 +08:00
/*
* main.c - main routine for slurpd.
*/
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
#include <stdio.h>
#include <sys/stat.h>
#include <ac/stdlib.h>
2003-04-16 05:56:21 +08:00
#include <ac/unistd.h>
1998-08-09 08:43:13 +08:00
#include "slurp.h"
#include "globals.h"
1998-11-05 09:56:41 +08:00
#include "lutil.h"
1998-08-09 08:43:13 +08:00
2002-04-16 00:45:02 +08:00
#include <ldap_pvt.h>
1998-08-09 08:43:13 +08:00
2003-03-03 19:47:16 +08:00
#ifdef HAVE_NT_SERVICE_MANAGER
#define MAIN_RETURN(x) return
#define SERVICE_EXIT( e, n ) do { \
if ( is_NT_Service ) { \
lutil_ServiceStatus.dwWin32ExitCode = (e); \
lutil_ServiceStatus.dwServiceSpecificExitCode = (n); \
} \
} while ( 0 )
#else
#define SERVICE_EXIT( e, n )
#define MAIN_RETURN(x) return(x)
#endif
#ifndef HAVE_MKVERSION
const char Versionstr[] =
OPENLDAP_PACKAGE " " OPENLDAP_VERSION " Standalone LDAP Replicator (slurpd)";
#endif
2003-03-03 19:47:16 +08:00
#ifdef HAVE_NT_SERVICE_MANAGER
void WINAPI ServiceMain( DWORD argc, LPTSTR *argv )
#else
int main( int argc, char **argv )
#endif
1998-08-09 08:43:13 +08:00
{
1998-10-25 09:41:42 +08:00
#ifdef NO_THREADS
1998-08-09 08:43:13 +08:00
/* Haven't yet written the non-threaded version */
1998-11-05 15:31:40 +08:00
fputs( "slurpd currently requires threads support\n", stderr );
return( 1 );
1998-10-25 09:41:42 +08:00
#else
1998-08-09 08:43:13 +08:00
2003-03-03 19:47:16 +08:00
int i, rc = 0;
1998-11-05 15:31:40 +08:00
/* initialize thread package */
ldap_pvt_thread_initialize();
1998-08-09 08:43:13 +08:00
/*
* Create and initialize globals. init_globals() also initializes
* the main replication queue.
*/
if (( sglob = init_globals()) == NULL ) {
fprintf( stderr, "Out of memory initializing globals\n" );
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_NOT_ENOUGH_MEMORY, 0 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
2003-03-03 19:47:16 +08:00
#ifdef HAVE_NT_SERVICE_MANAGER
{
int *i;
char *newConfigFile;
char *regService = NULL;
if ( is_NT_Service ) {
sglob->serverName = argv[0];
lutil_CommenceStartupProcessing( sglob->serverName, slurp_set_shutdown );
if ( strcmp(sglob->serverName, SERVICE_NAME) )
regService = sglob->serverName;
}
i = (int*)lutil_getRegParam( regService, "DebugLevel" );
if ( i != NULL )
{
ldap_debug = *i;
Debug( LDAP_DEBUG_ANY, "new debug level from registry is: %d\n", ldap_debug, 0, 0 );
}
newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
if ( newConfigFile != NULL )
{
sglob->slapd_configfile = newConfigFile;
Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", sglob->slapd_configfile, 0, 0 );
}
}
#endif
1998-08-09 08:43:13 +08:00
/*
* Process command-line args and fill in globals.
*/
if ( doargs( argc, argv, sglob ) < 0 ) {
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
if ( sglob->version ) {
fprintf(stderr, "%s\n", Versionstr);
if (sglob->version > 1 ) {
rc = 1;
goto stop;
}
}
Debug ( LDAP_DEBUG_ANY, "%s\n", Versionstr, 0, 0 );
1998-08-09 08:43:13 +08:00
/*
* Read slapd config file and initialize Re (per-replica) structs.
*/
if ( slurpd_read_config( sglob->slapd_configfile ) < 0 ) {
fprintf( stderr,
"Errors encountered while processing config file \"%s\"\n",
sglob->slapd_configfile );
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
#ifdef HAVE_TLS
if( ldap_pvt_tls_init() || ldap_pvt_tls_init_def_ctx() ) {
fprintf( stderr, "TLS Initialization failed.\n" );
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
rc = 1;
goto stop;
}
#endif
/*
* Make sure our directory exists
*/
if ( mkdir(sglob->slurpd_rdir, 0755) == -1 && errno != EEXIST) {
perror(sglob->slurpd_rdir);
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
rc = 1;
goto stop;
}
1998-08-09 08:43:13 +08:00
/*
* Get any saved state information off the disk.
*/
if ( sglob->st->st_read( sglob->st )) {
fprintf( stderr, "Malformed slurpd status file \"%s\"\n",
sglob->slurpd_status_file );
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 17 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
/*
* All readonly data should now be initialized.
* Check for any fatal error conditions before we get started
*/
if ( sanity() < 0 ) {
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
2003-04-16 05:56:21 +08:00
2003-10-10 10:07:24 +08:00
/*
* Detach from the controlling terminal
* unless the -d flag is given or in one-shot mode.
*/
#ifndef HAVE_WINSOCK
if ( ! (sglob->no_detach || sglob->one_shot_mode) ) {
lutil_detach( 0, 0 );
}
#endif
if ( slurpd_pid_file != NULL ) {
FILE *fp = fopen( slurpd_pid_file, "w" );
2003-04-16 05:56:21 +08:00
2003-10-10 10:07:24 +08:00
if( fp != NULL ) {
fprintf( fp, "%d\n", (int) getpid() );
fclose( fp );
2003-04-16 05:56:21 +08:00
2003-10-10 10:07:24 +08:00
} else {
2003-04-16 05:56:21 +08:00
free(slurpd_pid_file);
slurpd_pid_file = NULL;
2003-10-10 10:07:24 +08:00
}
2003-04-16 05:56:21 +08:00
}
2003-10-10 10:07:24 +08:00
if ( slurpd_args_file != NULL ) {
FILE *fp = fopen( slurpd_args_file, "w" );
if( fp != NULL ) {
for ( i = 0; i < argc; i++ ) {
fprintf( fp, "%s ", argv[i] );
}
fprintf( fp, "\n" );
fclose( fp );
} else {
free(slurpd_args_file);
slurpd_args_file = NULL;
2003-04-16 05:56:21 +08:00
}
}
1998-08-09 08:43:13 +08:00
if ( (rc = lutil_pair( sglob->wake_sds )) < 0 ) {
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
rc = 1;
goto stop;
}
2003-03-03 19:47:16 +08:00
#ifdef HAVE_NT_EVENT_LOG
if (is_NT_Service) lutil_LogStartedEvent( sglob->serverName, ldap_debug, sglob->slapd_configfile, "n/a" );
#endif
1998-08-09 08:43:13 +08:00
/*
* Start the main file manager thread (in fm.c).
*/
if ( ldap_pvt_thread_create( &(sglob->fm_tid),
0, fm, (void *) NULL ) != 0 )
{
Debug( LDAP_DEBUG_ANY, "file manager ldap_pvt_thread_create failed\n",
1998-08-09 08:43:13 +08:00
0, 0, 0 );
2003-03-03 19:47:16 +08:00
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
rc = 1;
goto stop;
1998-08-09 08:43:13 +08:00
}
/*
* wait for fm to finish if in oneshot mode
*/
if ( sglob->one_shot_mode ) {
ldap_pvt_thread_join( sglob->fm_tid, (void *) NULL );
}
/*
* Start threads - one thread for each replica
*/
for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
start_replica_thread( sglob->replicas[ i ]);
}
2003-03-03 19:47:16 +08:00
#ifdef HAVE_NT_SERVICE_MANAGER
if ( started_event ) ldap_pvt_thread_cond_signal( &started_event );
#endif
1998-08-09 08:43:13 +08:00
/*
* Wait for the fm thread to finish.
*/
if ( !sglob->one_shot_mode ) {
ldap_pvt_thread_join( sglob->fm_tid, (void *) NULL );
}
1998-08-09 08:43:13 +08:00
/*
* Wait for the replica threads to finish.
*/
for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
ldap_pvt_thread_join( sglob->replicas[ i ]->ri_tid, (void *) NULL );
1998-08-09 08:43:13 +08:00
}
2003-03-03 19:47:16 +08:00
stop:
#ifdef HAVE_NT_SERVICE_MANAGER
if (is_NT_Service) {
ldap_pvt_thread_cond_destroy( &started_event );
lutil_LogStoppedEvent( sglob->serverName );
lutil_ReportShutdownComplete();
}
#endif
/* destroy the thread package */
ldap_pvt_thread_destroy();
2003-11-19 17:01:13 +08:00
#ifdef HAVE_TLS
ldap_pvt_tls_destroy();
#endif
Debug( LDAP_DEBUG_ANY, "slurpd: terminated.\n", 0, 0, 0 );
2003-04-16 05:56:21 +08:00
if ( slurpd_pid_file != NULL ) {
unlink( slurpd_pid_file );
}
if ( slurpd_args_file != NULL ) {
unlink( slurpd_args_file );
}
2003-03-03 19:47:16 +08:00
MAIN_RETURN(rc);
1998-10-25 09:41:42 +08:00
#endif /* !NO_THREADS */
1998-08-09 08:43:13 +08:00
}