1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 1996 Regents of the University of Michigan.
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* main.c - main routine for slurpd.
|
|
|
|
|
*/
|
|
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#include "portable.h"
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
|
|
#include "slurp.h"
|
|
|
|
|
#include "globals.h"
|
1998-11-04 20:56:41 -05:00
|
|
|
#include "lutil.h"
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
|
1998-11-05 02:31:40 -05:00
|
|
|
int
|
1998-08-08 20:43:13 -04:00
|
|
|
main(
|
|
|
|
|
int argc,
|
|
|
|
|
char **argv
|
|
|
|
|
)
|
|
|
|
|
{
|
1998-10-24 21:41:42 -04:00
|
|
|
#ifdef NO_THREADS
|
1998-08-08 20:43:13 -04:00
|
|
|
/* Haven't yet written the non-threaded version */
|
1998-11-05 02:31:40 -05:00
|
|
|
fputs( "slurpd currently requires threads support\n", stderr );
|
|
|
|
|
return( 1 );
|
1998-10-24 21:41:42 -04:00
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-11-05 02:31:40 -05:00
|
|
|
pthread_attr_t attr;
|
|
|
|
|
int status;
|
|
|
|
|
int i;
|
|
|
|
|
|
1998-08-08 20:43:13 -04: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" );
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Process command-line args and fill in globals.
|
|
|
|
|
*/
|
|
|
|
|
if ( doargs( argc, argv, sglob ) < 0 ) {
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 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 );
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* 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, 0, 0 );
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* All readonly data should now be initialized.
|
|
|
|
|
* Check for any fatal error conditions before we get started
|
|
|
|
|
*/
|
|
|
|
|
if ( sanity() < 0 ) {
|
|
|
|
|
exit( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Detach from the controlling terminal, if debug level = 0,
|
|
|
|
|
* and if not in one-shot mode.
|
|
|
|
|
*/
|
|
|
|
|
#ifdef LDAP_DEBUG
|
1998-10-24 21:41:42 -04:00
|
|
|
if (( ldap_debug == 0 ) && !sglob->one_shot_mode )
|
1998-08-08 20:43:13 -04:00
|
|
|
#else /* LDAP_DEBUG */
|
1998-10-24 21:41:42 -04:00
|
|
|
if ( !sglob->one_shot_mode )
|
1998-08-08 20:43:13 -04:00
|
|
|
#endif /* LDAP_DEBUG */
|
1998-11-04 20:56:41 -05:00
|
|
|
lutil_detach( 0, 0 );
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1998-10-24 21:41:42 -04:00
|
|
|
#if defined( HAVE_LWP )
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* Need to start a scheduler thread under SunOS 4
|
|
|
|
|
*/
|
|
|
|
|
start_lwp_scheduler();
|
1998-10-24 21:41:42 -04:00
|
|
|
#endif /* HAVE_LWP */
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Start threads - one thread for each replica
|
|
|
|
|
*/
|
|
|
|
|
for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
|
|
|
|
|
start_replica_thread( sglob->replicas[ i ]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Start the main file manager thread (in fm.c).
|
|
|
|
|
*/
|
1998-12-29 19:06:27 -05:00
|
|
|
if ( pthread_create( &(sglob->fm_tid), NULL, fm, (void *) NULL )
|
1998-08-08 20:43:13 -04:00
|
|
|
!= 0 ) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "file manager pthread_create failed\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
exit( 1 );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Wait for the fm thread to finish.
|
|
|
|
|
*/
|
1998-10-24 21:41:42 -04:00
|
|
|
#ifdef HAVE_PTHREADS_FINAL
|
1998-08-18 13:51:53 -04:00
|
|
|
pthread_join( sglob->fm_tid, (void *) NULL );
|
|
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
pthread_join( sglob->fm_tid, (void *) &status );
|
1998-08-18 13:51:53 -04:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
/*
|
|
|
|
|
* Wait for the replica threads to finish.
|
|
|
|
|
*/
|
|
|
|
|
for ( i = 0; sglob->replicas[ i ] != NULL; i++ ) {
|
1998-10-24 21:41:42 -04:00
|
|
|
#ifdef HAVE_PTHREADS_FINAL
|
1998-08-18 13:51:53 -04:00
|
|
|
pthread_join( sglob->replicas[ i ]->ri_tid, (void *) NULL );
|
|
|
|
|
#else
|
1998-08-08 20:43:13 -04:00
|
|
|
pthread_join( sglob->replicas[ i ]->ri_tid, (void *) &status );
|
1998-08-18 13:51:53 -04:00
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "slurpd: terminating normally\n", 0, 0, 0 );
|
|
|
|
|
sglob->slurpd_shutdown = 1;
|
|
|
|
|
|
1998-12-29 19:06:27 -05:00
|
|
|
return 0;
|
1998-10-24 21:41:42 -04:00
|
|
|
#endif /* !NO_THREADS */
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|