1999-09-08 15:06:24 -04:00
|
|
|
/* $OpenLDAP$ */
|
2003-11-26 20:17:14 -05:00
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
*
|
2013-01-02 13:20:30 -05:00
|
|
|
* Copyright 1998-2013 The OpenLDAP Foundation.
|
2003-11-26 20:17:14 -05: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 the file LICENSE in the
|
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
1999-08-04 19:59:13 -04:00
|
|
|
*/
|
2003-11-26 20:17:14 -05:00
|
|
|
/* Portions Copyright (c) 1995 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.
|
|
|
|
|
*/
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#include "portable.h"
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
2005-08-08 16:19:25 -04:00
|
|
|
#include <ac/ctype.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
#include <ac/socket.h>
|
|
|
|
|
#include <ac/string.h>
|
|
|
|
|
#include <ac/time.h>
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
#include <ac/unistd.h>
|
1999-03-27 11:21:44 -05:00
|
|
|
#include <ac/wait.h>
|
|
|
|
|
#include <ac/errno.h>
|
1998-10-24 21:41:42 -04:00
|
|
|
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
#include "slap.h"
|
1999-06-18 19:53:05 -04:00
|
|
|
#include "lutil.h"
|
2001-09-24 20:03:24 -04:00
|
|
|
#include "ldif.h"
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-02-09 21:09:00 -05:00
|
|
|
#ifdef LDAP_SLAPI
|
2003-12-27 23:17:48 -05:00
|
|
|
#include "slapi/slapi.h"
|
2003-02-09 21:09:00 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-03-29 04:04:35 -05:00
|
|
|
#ifdef LDAP_SIGCHLD
|
1999-03-27 11:21:44 -05:00
|
|
|
static RETSIGTYPE wait4child( int sig );
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-11-01 16:25:22 -05:00
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
1999-06-18 17:33:39 -04:00
|
|
|
#define MAIN_RETURN(x) return
|
2001-12-26 21:03:57 -05:00
|
|
|
static struct sockaddr_in bind_addr;
|
1999-06-17 14:46:02 -04:00
|
|
|
|
1999-11-01 17:00:18 -05:00
|
|
|
#define SERVICE_EXIT( e, n ) do { \
|
|
|
|
|
if ( is_NT_Service ) { \
|
2003-03-03 06:46:05 -05:00
|
|
|
lutil_ServiceStatus.dwWin32ExitCode = (e); \
|
|
|
|
|
lutil_ServiceStatus.dwServiceSpecificExitCode = (n); \
|
1999-11-01 17:00:18 -05:00
|
|
|
} \
|
|
|
|
|
} while ( 0 )
|
|
|
|
|
|
1999-06-17 14:46:02 -04:00
|
|
|
#else
|
|
|
|
|
#define SERVICE_EXIT( e, n )
|
1999-06-18 17:33:39 -04:00
|
|
|
#define MAIN_RETURN(x) return(x)
|
1999-06-17 14:46:02 -04:00
|
|
|
#endif
|
|
|
|
|
|
2004-02-26 14:03:41 -05:00
|
|
|
typedef int (MainFunc) LDAP_P(( int argc, char *argv[] ));
|
2004-04-16 02:12:13 -04:00
|
|
|
extern MainFunc slapadd, slapcat, slapdn, slapindex, slappasswd,
|
2010-04-20 02:00:16 -04:00
|
|
|
slaptest, slapauth, slapacl, slapschema, slapmodify;
|
2004-02-26 14:03:41 -05:00
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
|
char *name;
|
|
|
|
|
MainFunc *func;
|
|
|
|
|
} tools[] = {
|
|
|
|
|
{"slapadd", slapadd},
|
|
|
|
|
{"slapcat", slapcat},
|
2004-03-17 18:25:09 -05:00
|
|
|
{"slapdn", slapdn},
|
2004-02-26 14:03:41 -05:00
|
|
|
{"slapindex", slapindex},
|
2010-04-20 02:00:16 -04:00
|
|
|
{"slapmodify", slapmodify},
|
2004-02-26 14:03:41 -05:00
|
|
|
{"slappasswd", slappasswd},
|
2009-05-28 09:40:57 -04:00
|
|
|
{"slapschema", slapschema},
|
2004-03-17 18:25:09 -05:00
|
|
|
{"slaptest", slaptest},
|
2004-04-16 02:12:13 -04:00
|
|
|
{"slapauth", slapauth},
|
2004-04-19 20:08:44 -04:00
|
|
|
{"slapacl", slapacl},
|
2004-04-17 06:48:40 -04:00
|
|
|
/* NOTE: new tools must be added in chronological order,
|
|
|
|
|
* not in alphabetical order, because for backwards
|
|
|
|
|
* compatibility name[4] is used to identify the
|
|
|
|
|
* tools; so name[4]=='a' must refer to "slapadd" and
|
|
|
|
|
* not to "slapauth". Alphabetical order can be used
|
|
|
|
|
* for tools whose name[4] is not used yet */
|
2004-02-26 14:03:41 -05:00
|
|
|
{NULL, NULL}
|
|
|
|
|
};
|
|
|
|
|
|
1999-01-05 10:40:58 -05:00
|
|
|
/*
|
|
|
|
|
* when more than one slapd is running on one machine, each one might have
|
|
|
|
|
* it's own LOCAL for syslogging and must have its own pid/args files
|
|
|
|
|
*/
|
|
|
|
|
|
1999-05-18 21:12:33 -04:00
|
|
|
#ifndef HAVE_MKVERSION
|
1999-05-20 23:53:37 -04:00
|
|
|
const char Versionstr[] =
|
|
|
|
|
OPENLDAP_PACKAGE " " OPENLDAP_VERSION " Standalone LDAP Server (slapd)";
|
1999-05-18 21:12:33 -04:00
|
|
|
#endif
|
|
|
|
|
|
2010-11-01 10:51:23 -04:00
|
|
|
extern OverlayInit slap_oinfo[];
|
|
|
|
|
extern BackendInfo slap_binfo[];
|
|
|
|
|
|
2006-09-08 16:49:00 -04:00
|
|
|
#define CHECK_NONE 0x00
|
|
|
|
|
#define CHECK_CONFIG 0x01
|
|
|
|
|
#define CHECK_LOGLEVEL 0x02
|
2004-03-16 13:36:38 -05:00
|
|
|
static int check = CHECK_NONE;
|
2003-12-02 11:57:34 -05:00
|
|
|
static int version = 0;
|
1999-01-05 10:40:58 -05:00
|
|
|
|
2004-10-06 01:51:38 -04:00
|
|
|
void *slap_tls_ctx;
|
2006-04-06 21:25:46 -04:00
|
|
|
LDAP *slap_tls_ld;
|
2004-10-06 01:51:38 -04:00
|
|
|
|
2004-05-25 06:44:51 -04:00
|
|
|
static int
|
|
|
|
|
slapd_opt_slp( const char *val, void *arg )
|
|
|
|
|
{
|
|
|
|
|
#ifdef HAVE_SLP
|
|
|
|
|
/* NULL is default */
|
2006-04-27 15:36:40 -04:00
|
|
|
if ( val == NULL || *val == '(' || strcasecmp( val, "on" ) == 0 ) {
|
2004-10-06 01:51:38 -04:00
|
|
|
slapd_register_slp = 1;
|
2006-04-27 15:36:40 -04:00
|
|
|
slapd_slp_attrs = (val != NULL && *val == '(') ? val : NULL;
|
2004-05-25 06:44:51 -04:00
|
|
|
|
|
|
|
|
} else if ( strcasecmp( val, "off" ) == 0 ) {
|
2004-10-06 01:51:38 -04:00
|
|
|
slapd_register_slp = 0;
|
2004-05-25 06:44:51 -04:00
|
|
|
|
|
|
|
|
/* NOTE: add support for URL specification? */
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
fprintf(stderr, "unrecognized value \"%s\" for SLP option\n", val );
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
fputs( "slapd: SLP support is not available\n", stderr );
|
|
|
|
|
return 0;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2004-05-26 08:29:17 -04:00
|
|
|
/*
|
|
|
|
|
* Option helper structure:
|
|
|
|
|
*
|
|
|
|
|
* oh_nam is left-hand part of <option>[=<value>]
|
|
|
|
|
* oh_fnc is handler function
|
|
|
|
|
* oh_arg is an optional arg to oh_fnc
|
|
|
|
|
* oh_usage is the one-line usage string related to the option,
|
|
|
|
|
* which is assumed to start with <option>[=<value>]
|
|
|
|
|
*
|
|
|
|
|
* please leave valid options in the structure, and optionally #ifdef
|
|
|
|
|
* their processing inside the helper, so that reasonable and helpful
|
|
|
|
|
* error messages can be generated if a disabled option is requested.
|
|
|
|
|
*/
|
2004-05-25 06:44:51 -04:00
|
|
|
struct option_helper {
|
|
|
|
|
struct berval oh_name;
|
|
|
|
|
int (*oh_fnc)(const char *val, void *arg);
|
|
|
|
|
void *oh_arg;
|
2004-05-26 08:29:17 -04:00
|
|
|
const char *oh_usage;
|
2004-05-25 06:44:51 -04:00
|
|
|
} option_helpers[] = {
|
2006-04-27 15:36:40 -04:00
|
|
|
{ BER_BVC("slp"), slapd_opt_slp, NULL, "slp[={on|off|(attrs)}] enable/disable SLP using (attrs)" },
|
2005-07-31 14:17:13 -04:00
|
|
|
{ BER_BVNULL, 0, NULL, NULL }
|
2004-05-25 06:44:51 -04:00
|
|
|
};
|
|
|
|
|
|
2006-05-11 00:43:17 -04:00
|
|
|
#if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
|
2005-12-22 17:33:32 -05:00
|
|
|
#ifdef LOG_LOCAL4
|
2006-05-24 13:57:13 -04:00
|
|
|
int
|
2005-12-22 17:33:32 -05:00
|
|
|
parse_syslog_user( const char *arg, int *syslogUser )
|
2005-12-20 03:20:16 -05:00
|
|
|
{
|
2005-12-22 17:33:32 -05:00
|
|
|
static slap_verbmasks syslogUsers[] = {
|
|
|
|
|
{ BER_BVC( "LOCAL0" ), LOG_LOCAL0 },
|
|
|
|
|
{ BER_BVC( "LOCAL1" ), LOG_LOCAL1 },
|
|
|
|
|
{ BER_BVC( "LOCAL2" ), LOG_LOCAL2 },
|
|
|
|
|
{ BER_BVC( "LOCAL3" ), LOG_LOCAL3 },
|
|
|
|
|
{ BER_BVC( "LOCAL4" ), LOG_LOCAL4 },
|
|
|
|
|
{ BER_BVC( "LOCAL5" ), LOG_LOCAL5 },
|
|
|
|
|
{ BER_BVC( "LOCAL6" ), LOG_LOCAL6 },
|
|
|
|
|
{ BER_BVC( "LOCAL7" ), LOG_LOCAL7 },
|
|
|
|
|
#ifdef LOG_USER
|
|
|
|
|
{ BER_BVC( "USER" ), LOG_USER },
|
|
|
|
|
#endif /* LOG_USER */
|
|
|
|
|
#ifdef LOG_DAEMON
|
|
|
|
|
{ BER_BVC( "DAEMON" ), LOG_DAEMON },
|
|
|
|
|
#endif /* LOG_DAEMON */
|
|
|
|
|
{ BER_BVNULL, 0 }
|
|
|
|
|
};
|
2006-05-24 13:57:13 -04:00
|
|
|
int i = verb_to_mask( arg, syslogUsers );
|
2005-12-22 17:33:32 -05:00
|
|
|
|
|
|
|
|
if ( BER_BVISNULL( &syslogUsers[ i ].word ) ) {
|
2005-12-27 11:29:37 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"unrecognized syslog user \"%s\".\n",
|
2006-05-24 13:57:13 -04:00
|
|
|
arg, 0, 0 );
|
2005-12-20 03:20:16 -05:00
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-22 17:33:32 -05:00
|
|
|
*syslogUser = syslogUsers[ i ].mask;
|
|
|
|
|
|
2005-12-20 03:20:16 -05:00
|
|
|
return 0;
|
|
|
|
|
}
|
2005-12-22 17:33:32 -05:00
|
|
|
#endif /* LOG_LOCAL4 */
|
2005-12-20 03:20:16 -05:00
|
|
|
|
2006-05-24 13:57:13 -04:00
|
|
|
int
|
2005-12-27 11:29:37 -05:00
|
|
|
parse_syslog_level( const char *arg, int *levelp )
|
|
|
|
|
{
|
|
|
|
|
static slap_verbmasks str2syslog_level[] = {
|
|
|
|
|
{ BER_BVC( "EMERG" ), LOG_EMERG },
|
|
|
|
|
{ BER_BVC( "ALERT" ), LOG_ALERT },
|
|
|
|
|
{ BER_BVC( "CRIT" ), LOG_CRIT },
|
|
|
|
|
{ BER_BVC( "ERR" ), LOG_ERR },
|
|
|
|
|
{ BER_BVC( "WARNING" ), LOG_WARNING },
|
|
|
|
|
{ BER_BVC( "NOTICE" ), LOG_NOTICE },
|
|
|
|
|
{ BER_BVC( "INFO" ), LOG_INFO },
|
|
|
|
|
{ BER_BVC( "DEBUG" ), LOG_DEBUG },
|
|
|
|
|
{ BER_BVNULL, 0 }
|
|
|
|
|
};
|
|
|
|
|
int i = verb_to_mask( arg, str2syslog_level );
|
|
|
|
|
if ( BER_BVISNULL( &str2syslog_level[ i ].word ) ) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"unknown syslog level \"%s\".\n",
|
|
|
|
|
arg, 0, 0 );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*levelp = str2syslog_level[ i ].mask;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2006-05-11 00:43:17 -04:00
|
|
|
#endif /* LDAP_DEBUG && LDAP_SYSLOG */
|
2005-12-27 11:29:37 -05:00
|
|
|
|
2005-12-20 03:20:16 -05:00
|
|
|
int
|
2006-02-02 03:30:56 -05:00
|
|
|
parse_debug_unknowns( char **unknowns, int *levelp )
|
|
|
|
|
{
|
|
|
|
|
int i, level, rc = 0;
|
|
|
|
|
|
|
|
|
|
for ( i = 0; unknowns[ i ] != NULL; i++ ) {
|
|
|
|
|
level = 0;
|
|
|
|
|
if ( str2loglevel( unknowns[ i ], &level )) {
|
|
|
|
|
fprintf( stderr,
|
|
|
|
|
"unrecognized log level \"%s\"\n", unknowns[ i ] );
|
|
|
|
|
rc = 1;
|
|
|
|
|
} else {
|
|
|
|
|
*levelp |= level;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
parse_debug_level( const char *arg, int *levelp, char ***unknowns )
|
2005-12-20 03:20:16 -05:00
|
|
|
{
|
|
|
|
|
int level;
|
|
|
|
|
|
2006-04-01 18:44:42 -05:00
|
|
|
if ( arg && arg[ 0 ] != '-' && !isdigit( (unsigned char) arg[ 0 ] ) )
|
2005-12-20 03:20:16 -05:00
|
|
|
{
|
2006-02-02 03:30:56 -05:00
|
|
|
int i;
|
2005-12-20 03:20:16 -05:00
|
|
|
char **levels;
|
|
|
|
|
|
|
|
|
|
levels = ldap_str2charray( arg, "," );
|
|
|
|
|
|
|
|
|
|
for ( i = 0; levels[ i ] != NULL; i++ ) {
|
|
|
|
|
level = 0;
|
|
|
|
|
|
|
|
|
|
if ( str2loglevel( levels[ i ], &level ) ) {
|
2006-02-02 03:30:56 -05:00
|
|
|
/* remember this for later */
|
|
|
|
|
ldap_charray_add( unknowns, levels[ i ] );
|
2005-12-20 03:20:16 -05:00
|
|
|
fprintf( stderr,
|
2006-02-02 03:30:56 -05:00
|
|
|
"unrecognized log level \"%s\" (deferred)\n",
|
|
|
|
|
levels[ i ] );
|
2005-12-20 03:20:16 -05:00
|
|
|
} else {
|
|
|
|
|
*levelp |= level;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ldap_charray_free( levels );
|
|
|
|
|
|
|
|
|
|
} else {
|
2009-10-06 18:03:15 -04:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
|
|
if ( arg[0] == '-' ) {
|
|
|
|
|
rc = lutil_atoix( &level, arg, 0 );
|
|
|
|
|
} else {
|
|
|
|
|
unsigned ulevel;
|
|
|
|
|
|
|
|
|
|
rc = lutil_atoux( &ulevel, arg, 0 );
|
|
|
|
|
level = (int)ulevel;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( rc ) {
|
2005-12-20 03:20:16 -05:00
|
|
|
fprintf( stderr,
|
|
|
|
|
"unrecognized log level "
|
|
|
|
|
"\"%s\"\n", arg );
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2005-12-22 17:33:32 -05:00
|
|
|
if ( level == 0 ) {
|
|
|
|
|
*levelp = 0;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
*levelp |= level;
|
|
|
|
|
}
|
2005-12-20 03:20:16 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
1998-11-05 01:49:49 -05:00
|
|
|
static void
|
Protoized, moved extern definitions to .h files, fixed related bugs.
Most function and variable definitions are now preceded by its extern
definition, for error checking. Retyped a number of functions, usually
to return void. Fixed a number of printf format errors.
API changes (in ldap/include):
Added avl_dup_ok, avl_prefixapply, removed ber_fatten (probably typo
for ber_flatten), retyped ldap_sort_strcasecmp, grew lutil.h.
A number of `extern' declarations are left (some added by protoize), to
be cleaned away later. Mostly strdup(), strcasecmp(), mktemp(), optind,
optarg, errno.
1998-11-15 17:40:11 -05:00
|
|
|
usage( char *name )
|
1998-08-08 20:43:13 -04:00
|
|
|
{
|
1999-07-19 15:40:33 -04:00
|
|
|
fprintf( stderr,
|
|
|
|
|
"usage: %s options\n", name );
|
|
|
|
|
fprintf( stderr,
|
2002-06-15 18:01:39 -04:00
|
|
|
"\t-4\t\tIPv4 only\n"
|
|
|
|
|
"\t-6\t\tIPv6 only\n"
|
2010-04-20 02:00:16 -04:00
|
|
|
"\t-T {acl|add|auth|cat|dn|index|modify|passwd|test}\n"
|
2004-04-16 14:54:15 -04:00
|
|
|
"\t\t\tRun in Tool mode\n"
|
2003-11-09 21:44:25 -05:00
|
|
|
"\t-c cookie\tSync cookie of consumer\n"
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-d level\tDebug level" "\n"
|
|
|
|
|
"\t-f filename\tConfiguration file\n"
|
2005-04-07 16:12:57 -04:00
|
|
|
"\t-F dir\tConfiguration directory\n"
|
1999-07-19 15:40:33 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
2002-03-25 11:30:06 -05:00
|
|
|
"\t-g group\tGroup (id or name) to run as\n"
|
1999-04-01 17:31:24 -05:00
|
|
|
#endif
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-h URLs\t\tList of URLs to serve\n"
|
2007-05-11 19:04:33 -04:00
|
|
|
#ifdef SLAP_DEFAULT_SYSLOG_USER
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-l facility\tSyslog facility (default: LOCAL4)\n"
|
1999-04-02 22:19:07 -05:00
|
|
|
#endif
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-n serverName\tService name\n"
|
2004-07-28 19:48:08 -04:00
|
|
|
"\t-o <opt>[=val] generic means to specify options" );
|
2004-05-26 08:29:17 -04:00
|
|
|
if ( !BER_BVISNULL( &option_helpers[0].oh_name ) ) {
|
|
|
|
|
int i;
|
|
|
|
|
|
|
|
|
|
fprintf( stderr, "; supported options:\n" );
|
|
|
|
|
for ( i = 0; !BER_BVISNULL( &option_helpers[i].oh_name ); i++) {
|
|
|
|
|
fprintf( stderr, "\t\t%s\n", option_helpers[i].oh_usage );
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
fprintf( stderr, "\n" );
|
|
|
|
|
}
|
|
|
|
|
fprintf( stderr,
|
2000-08-17 00:21:20 -04:00
|
|
|
#ifdef HAVE_CHROOT
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-r directory\tSandbox directory to chroot to\n"
|
2000-08-17 00:21:20 -04:00
|
|
|
#endif
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-s level\tSyslog level\n"
|
1999-07-19 15:40:33 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
2002-04-15 13:32:08 -04:00
|
|
|
"\t-u user\t\tUser (id or name) to run as\n"
|
1999-07-19 15:40:33 -04:00
|
|
|
#endif
|
2010-11-01 11:20:39 -04:00
|
|
|
"\t-V\t\tprint version info (-VV exit afterwards, -VVV print\n"
|
|
|
|
|
"\t\t\tinfo about static overlays and backends)\n"
|
1999-07-19 15:40:33 -04:00
|
|
|
);
|
|
|
|
|
}
|
1999-03-22 02:14:54 -05:00
|
|
|
|
1999-11-01 16:25:22 -05:00
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
1999-06-17 14:46:02 -04:00
|
|
|
void WINAPI ServiceMain( DWORD argc, LPTSTR *argv )
|
|
|
|
|
#else
|
|
|
|
|
int main( int argc, char **argv )
|
|
|
|
|
#endif
|
1999-06-18 19:53:05 -04:00
|
|
|
{
|
1999-09-04 16:24:40 -04:00
|
|
|
int i, no_detach = 0;
|
2001-11-17 11:18:07 -05:00
|
|
|
int rc = 1;
|
1999-07-19 15:40:33 -04:00
|
|
|
char *urls = NULL;
|
1999-06-17 14:46:02 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
|
|
|
|
char *username = NULL;
|
|
|
|
|
char *groupname = NULL;
|
1999-06-16 20:51:12 -04:00
|
|
|
#endif
|
2000-05-10 19:30:52 -04:00
|
|
|
#if defined(HAVE_CHROOT)
|
|
|
|
|
char *sandbox = NULL;
|
|
|
|
|
#endif
|
2007-05-11 19:04:33 -04:00
|
|
|
#ifdef SLAP_DEFAULT_SYSLOG_USER
|
2006-05-24 13:57:13 -04:00
|
|
|
int syslogUser = SLAP_DEFAULT_SYSLOG_USER;
|
1999-04-02 22:19:07 -05:00
|
|
|
#endif
|
2001-12-26 21:03:57 -05:00
|
|
|
|
2011-02-28 20:19:37 -05:00
|
|
|
#ifndef HAVE_WINSOCK
|
2011-02-28 20:31:11 -05:00
|
|
|
int pid, waitfds[2];
|
2011-02-28 20:19:37 -05:00
|
|
|
#endif
|
2001-12-26 21:03:57 -05:00
|
|
|
int g_argc = argc;
|
|
|
|
|
char **g_argv = argv;
|
1999-11-01 17:00:18 -05:00
|
|
|
|
2005-12-07 09:47:00 -05:00
|
|
|
char *configfile = NULL;
|
|
|
|
|
char *configdir = NULL;
|
|
|
|
|
char *serverName;
|
|
|
|
|
int serverMode = SLAP_SERVER_MODE;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-11-26 14:49:47 -05:00
|
|
|
struct sync_cookie *scp = NULL;
|
|
|
|
|
struct sync_cookie *scp_entry = NULL;
|
2003-11-09 21:44:25 -05:00
|
|
|
|
2006-02-02 03:30:56 -05:00
|
|
|
char **debug_unknowns = NULL;
|
|
|
|
|
char **syslog_unknowns = NULL;
|
|
|
|
|
|
2005-12-07 09:47:00 -05:00
|
|
|
char *serverNamePrefix = "";
|
2005-09-29 16:03:04 -04:00
|
|
|
size_t l;
|
|
|
|
|
|
2005-12-07 09:47:00 -05:00
|
|
|
int slapd_pid_file_unlink = 0, slapd_args_file_unlink = 0;
|
2006-09-08 14:25:34 -04:00
|
|
|
int firstopt = 1;
|
2005-12-07 09:47:00 -05:00
|
|
|
|
1999-08-19 13:06:28 -04:00
|
|
|
#ifdef CSRIMALLOC
|
|
|
|
|
FILE *leakfile;
|
|
|
|
|
if( ( leakfile = fopen( "slapd.leak", "w" )) == NULL ) {
|
|
|
|
|
leakfile = stderr;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-04-19 23:44:57 -04:00
|
|
|
slap_sl_mem_init();
|
2003-04-09 12:52:03 -04:00
|
|
|
|
2005-08-10 19:19:47 -04:00
|
|
|
(void) ldap_pvt_thread_initialize();
|
|
|
|
|
|
2004-02-26 14:03:41 -05:00
|
|
|
serverName = lutil_progname( "slapd", argc, argv );
|
|
|
|
|
|
|
|
|
|
if ( strcmp( serverName, "slapd" ) ) {
|
|
|
|
|
for (i=0; tools[i].name; i++) {
|
|
|
|
|
if ( !strcmp( serverName, tools[i].name ) ) {
|
|
|
|
|
rc = tools[i].func(argc, argv);
|
|
|
|
|
MAIN_RETURN(rc);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-01 16:25:22 -05:00
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
1999-06-17 14:46:02 -04:00
|
|
|
{
|
2007-03-11 13:46:46 -04:00
|
|
|
int *ip;
|
1999-06-17 14:46:02 -04:00
|
|
|
char *newConfigFile;
|
2005-03-15 03:57:34 -05:00
|
|
|
char *newConfigDir;
|
2000-05-11 16:50:20 -04:00
|
|
|
char *newUrls;
|
2000-05-12 17:26:30 -04:00
|
|
|
char *regService = NULL;
|
1999-08-31 01:18:06 -04:00
|
|
|
|
|
|
|
|
if ( is_NT_Service ) {
|
2003-03-03 06:46:05 -05:00
|
|
|
lutil_CommenceStartupProcessing( serverName, slap_sig_shutdown );
|
2000-05-27 02:21:23 -04:00
|
|
|
if ( strcmp(serverName, SERVICE_NAME) )
|
|
|
|
|
regService = serverName;
|
1999-08-31 01:18:06 -04:00
|
|
|
}
|
|
|
|
|
|
2007-03-11 13:46:46 -04:00
|
|
|
ip = (int*)lutil_getRegParam( regService, "DebugLevel" );
|
|
|
|
|
if ( ip != NULL ) {
|
|
|
|
|
slap_debug = *ip;
|
2004-05-24 19:28:52 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"new debug level from registry is: %d\n", slap_debug, 0, 0 );
|
1999-06-17 14:46:02 -04:00
|
|
|
}
|
2000-05-11 16:50:20 -04:00
|
|
|
|
2003-03-03 06:46:05 -05:00
|
|
|
newUrls = (char *) lutil_getRegParam(regService, "Urls");
|
2004-05-24 19:28:52 -04:00
|
|
|
if (newUrls) {
|
2000-05-11 16:50:20 -04:00
|
|
|
if (urls)
|
|
|
|
|
ch_free(urls);
|
|
|
|
|
|
|
|
|
|
urls = ch_strdup(newUrls);
|
|
|
|
|
Debug(LDAP_DEBUG_ANY, "new urls from registry: %s\n",
|
2004-05-24 19:28:52 -04:00
|
|
|
urls, 0, 0);
|
2000-05-11 16:50:20 -04:00
|
|
|
}
|
|
|
|
|
|
2003-03-03 06:46:05 -05:00
|
|
|
newConfigFile = (char*)lutil_getRegParam( regService, "ConfigFile" );
|
2004-05-24 19:28:52 -04:00
|
|
|
if ( newConfigFile != NULL ) {
|
2011-05-08 16:15:13 -04:00
|
|
|
configfile = ch_strdup(newConfigFile);
|
1999-06-17 14:46:02 -04:00
|
|
|
Debug ( LDAP_DEBUG_ANY, "new config file from registry is: %s\n", configfile, 0, 0 );
|
|
|
|
|
}
|
2005-03-15 03:57:34 -05:00
|
|
|
|
|
|
|
|
newConfigDir = (char*)lutil_getRegParam( regService, "ConfigDir" );
|
|
|
|
|
if ( newConfigDir != NULL ) {
|
2011-05-08 16:15:13 -04:00
|
|
|
configdir = ch_strdup(newConfigDir);
|
2005-03-15 03:57:34 -05:00
|
|
|
Debug ( LDAP_DEBUG_ANY, "new config dir from registry is: %s\n", configdir, 0, 0 );
|
|
|
|
|
}
|
1999-06-17 14:46:02 -04:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-04-01 17:31:24 -05:00
|
|
|
while ( (i = getopt( argc, argv,
|
2005-10-28 18:55:22 -04:00
|
|
|
"c:d:f:F:h:n:o:s:tT:V"
|
2007-05-09 14:17:10 -04:00
|
|
|
#ifdef LDAP_PF_INET6
|
2002-06-15 18:01:39 -04:00
|
|
|
"46"
|
|
|
|
|
#endif
|
2000-05-10 19:30:52 -04:00
|
|
|
#ifdef HAVE_CHROOT
|
|
|
|
|
"r:"
|
|
|
|
|
#endif
|
2006-05-11 00:43:17 -04:00
|
|
|
#if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
|
2005-12-27 11:29:37 -05:00
|
|
|
"S:"
|
1999-04-01 17:31:24 -05:00
|
|
|
#ifdef LOG_LOCAL4
|
2005-12-27 11:29:37 -05:00
|
|
|
"l:"
|
1999-04-01 17:31:24 -05:00
|
|
|
#endif
|
2006-05-11 00:43:17 -04:00
|
|
|
#endif
|
1999-04-20 20:40:20 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
2005-12-27 11:29:37 -05:00
|
|
|
"u:g:"
|
1999-02-12 09:36:16 -05:00
|
|
|
#endif
|
1999-04-01 17:31:24 -05:00
|
|
|
)) != EOF ) {
|
1998-08-08 20:43:13 -04:00
|
|
|
switch ( i ) {
|
2002-06-15 18:01:39 -04:00
|
|
|
#ifdef LDAP_PF_INET6
|
|
|
|
|
case '4':
|
|
|
|
|
slap_inet4or6 = AF_INET;
|
|
|
|
|
break;
|
|
|
|
|
case '6':
|
|
|
|
|
slap_inet4or6 = AF_INET6;
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-07-19 15:40:33 -04:00
|
|
|
case 'h': /* listen URLs */
|
1999-08-21 23:36:19 -04:00
|
|
|
if ( urls != NULL ) free( urls );
|
1999-07-19 15:40:33 -04:00
|
|
|
urls = ch_strdup( optarg );
|
2003-11-26 14:49:47 -05:00
|
|
|
break;
|
1999-03-16 22:56:25 -05:00
|
|
|
|
2003-11-09 21:44:25 -05:00
|
|
|
case 'c': /* provide sync cookie, override if exist in replica */
|
2004-10-06 01:51:38 -04:00
|
|
|
scp = (struct sync_cookie *) ch_calloc( 1,
|
|
|
|
|
sizeof( struct sync_cookie ));
|
2005-01-25 06:14:09 -05:00
|
|
|
ber_str2bv( optarg, 0, 1, &scp->octet_str );
|
2005-08-08 19:56:40 -04:00
|
|
|
|
|
|
|
|
/* This only parses out the rid at this point */
|
2005-08-08 08:38:19 -04:00
|
|
|
slap_parse_sync_cookie( scp, NULL );
|
2003-11-26 14:49:47 -05:00
|
|
|
|
2005-08-08 19:56:40 -04:00
|
|
|
if ( scp->rid == -1 ) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"main: invalid cookie \"%s\"\n",
|
|
|
|
|
optarg, 0, 0 );
|
|
|
|
|
slap_sync_cookie_free( scp, 1 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
|
2004-10-06 01:51:38 -04:00
|
|
|
LDAP_STAILQ_FOREACH( scp_entry, &slap_sync_cookie, sc_next ) {
|
2003-11-26 14:49:47 -05:00
|
|
|
if ( scp->rid == scp_entry->rid ) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"main: duplicated replica id in cookies\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
slap_sync_cookie_free( scp, 1 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
}
|
2004-10-06 01:51:38 -04:00
|
|
|
LDAP_STAILQ_INSERT_TAIL( &slap_sync_cookie, scp, sc_next );
|
2003-11-09 21:44:25 -05:00
|
|
|
break;
|
|
|
|
|
|
2005-12-05 05:39:38 -05:00
|
|
|
case 'd': { /* set debug level and 'do not detach' flag */
|
|
|
|
|
int level = 0;
|
|
|
|
|
|
2006-09-08 14:10:53 -04:00
|
|
|
if ( strcmp( optarg, "?" ) == 0 ) {
|
2006-09-08 16:49:00 -04:00
|
|
|
check |= CHECK_LOGLEVEL;
|
|
|
|
|
break;
|
2006-09-08 14:10:53 -04:00
|
|
|
}
|
|
|
|
|
|
1999-09-04 16:24:40 -04:00
|
|
|
no_detach = 1;
|
2006-02-02 03:30:56 -05:00
|
|
|
if ( parse_debug_level( optarg, &level, &debug_unknowns ) ) {
|
2005-12-20 03:20:16 -05:00
|
|
|
goto destroy;
|
2005-08-08 10:01:40 -04:00
|
|
|
}
|
2005-12-20 03:20:16 -05:00
|
|
|
#ifdef LDAP_DEBUG
|
|
|
|
|
slap_debug |= level;
|
1998-08-08 20:43:13 -04:00
|
|
|
#else
|
2005-12-20 03:20:16 -05:00
|
|
|
if ( level != 0 )
|
1999-09-04 16:24:40 -04:00
|
|
|
fputs( "must compile with LDAP_DEBUG for debugging\n",
|
|
|
|
|
stderr );
|
1998-08-08 20:43:13 -04:00
|
|
|
#endif
|
2005-12-05 05:39:38 -05:00
|
|
|
} break;
|
1998-08-08 20:43:13 -04:00
|
|
|
|
|
|
|
|
case 'f': /* read config file */
|
1998-11-27 15:21:54 -05:00
|
|
|
configfile = ch_strdup( optarg );
|
1998-08-08 20:43:13 -04:00
|
|
|
break;
|
|
|
|
|
|
2005-03-15 03:57:34 -05:00
|
|
|
case 'F': /* use config dir */
|
|
|
|
|
configdir = ch_strdup( optarg );
|
|
|
|
|
break;
|
|
|
|
|
|
2004-05-25 06:44:51 -04:00
|
|
|
case 'o': {
|
|
|
|
|
char *val = strchr( optarg, '=' );
|
|
|
|
|
struct berval opt;
|
|
|
|
|
|
|
|
|
|
opt.bv_val = optarg;
|
|
|
|
|
|
|
|
|
|
if ( val ) {
|
|
|
|
|
opt.bv_len = ( val - optarg );
|
|
|
|
|
val++;
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
opt.bv_len = strlen( optarg );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( i = 0; !BER_BVISNULL( &option_helpers[i].oh_name ); i++ ) {
|
|
|
|
|
if ( ber_bvstrcasecmp( &option_helpers[i].oh_name, &opt ) == 0 ) {
|
2004-05-25 09:35:04 -04:00
|
|
|
assert( option_helpers[i].oh_fnc != NULL );
|
|
|
|
|
if ( (*option_helpers[i].oh_fnc)( val, option_helpers[i].oh_arg ) == -1 ) {
|
|
|
|
|
/* we assume the option parsing helper
|
|
|
|
|
* issues appropriate and self-explanatory
|
|
|
|
|
* error messages... */
|
|
|
|
|
goto stop;
|
2004-05-25 06:44:51 -04:00
|
|
|
}
|
2004-05-25 09:35:04 -04:00
|
|
|
break;
|
2004-05-25 06:44:51 -04:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( BER_BVISNULL( &option_helpers[i].oh_name ) ) {
|
|
|
|
|
goto unhandled_option;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
case 's': /* set syslog level */
|
2006-09-08 14:10:53 -04:00
|
|
|
if ( strcmp( optarg, "?" ) == 0 ) {
|
2006-09-08 16:49:00 -04:00
|
|
|
check |= CHECK_LOGLEVEL;
|
|
|
|
|
break;
|
2006-09-08 14:10:53 -04:00
|
|
|
}
|
|
|
|
|
|
2006-02-02 03:30:56 -05:00
|
|
|
if ( parse_debug_level( optarg, &ldap_syslog, &syslog_unknowns ) ) {
|
2005-11-23 12:29:16 -05:00
|
|
|
goto destroy;
|
|
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
break;
|
|
|
|
|
|
2005-12-27 11:29:37 -05:00
|
|
|
#if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
|
|
|
|
|
case 'S':
|
|
|
|
|
if ( parse_syslog_level( optarg, &ldap_syslog_level ) ) {
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
1999-01-05 10:40:58 -05:00
|
|
|
#ifdef LOG_LOCAL4
|
|
|
|
|
case 'l': /* set syslog local user */
|
2005-12-22 17:33:32 -05:00
|
|
|
if ( parse_syslog_user( optarg, &syslogUser ) ) {
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
1999-01-05 10:40:58 -05:00
|
|
|
break;
|
|
|
|
|
#endif
|
2006-05-11 00:43:17 -04:00
|
|
|
#endif /* LDAP_DEBUG && LDAP_SYSLOG */
|
1999-01-05 10:40:58 -05:00
|
|
|
|
2000-05-10 19:30:52 -04:00
|
|
|
#ifdef HAVE_CHROOT
|
|
|
|
|
case 'r':
|
|
|
|
|
if( sandbox ) free(sandbox);
|
|
|
|
|
sandbox = ch_strdup( optarg );
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-04-30 17:32:12 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
1999-04-20 20:40:20 -04:00
|
|
|
case 'u': /* user name */
|
|
|
|
|
if( username ) free(username);
|
1999-04-02 22:19:07 -05:00
|
|
|
username = ch_strdup( optarg );
|
|
|
|
|
break;
|
|
|
|
|
|
1999-04-20 20:40:20 -04:00
|
|
|
case 'g': /* group name */
|
|
|
|
|
if( groupname ) free(groupname);
|
1999-04-02 22:19:07 -05:00
|
|
|
groupname = ch_strdup( optarg );
|
|
|
|
|
break;
|
1999-04-20 20:40:20 -04:00
|
|
|
#endif /* SETUID && GETUID */
|
1999-07-19 15:40:33 -04:00
|
|
|
|
1999-06-18 19:53:05 -04:00
|
|
|
case 'n': /* NT service name */
|
2000-05-26 15:52:40 -04:00
|
|
|
serverName = ch_strdup( optarg );
|
1999-06-18 17:33:39 -04:00
|
|
|
break;
|
2000-05-26 15:52:40 -04:00
|
|
|
|
2002-04-15 13:32:08 -04:00
|
|
|
case 't':
|
2004-03-17 18:43:00 -05:00
|
|
|
/* deprecated; use slaptest instead */
|
|
|
|
|
fprintf( stderr, "option -t deprecated; "
|
|
|
|
|
"use slaptest command instead\n" );
|
2004-03-16 13:36:38 -05:00
|
|
|
check |= CHECK_CONFIG;
|
2002-04-15 13:32:08 -04:00
|
|
|
break;
|
2004-03-16 13:36:38 -05:00
|
|
|
|
2003-12-02 11:57:34 -05:00
|
|
|
case 'V':
|
|
|
|
|
version++;
|
|
|
|
|
break;
|
2002-04-15 13:32:08 -04:00
|
|
|
|
2004-02-26 14:03:41 -05:00
|
|
|
case 'T':
|
2006-09-08 14:25:34 -04:00
|
|
|
if ( firstopt == 0 ) {
|
|
|
|
|
fprintf( stderr, "warning: \"-T %s\" "
|
|
|
|
|
"should be the first option.\n",
|
|
|
|
|
optarg );
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-17 06:48:40 -04:00
|
|
|
/* try full option string first */
|
|
|
|
|
for ( i = 0; tools[i].name; i++ ) {
|
2004-04-16 14:54:15 -04:00
|
|
|
if ( strcmp( optarg, &tools[i].name[4] ) == 0 ) {
|
2004-04-17 06:48:40 -04:00
|
|
|
rc = tools[i].func( argc, argv );
|
|
|
|
|
MAIN_RETURN( rc );
|
2004-02-26 14:03:41 -05:00
|
|
|
}
|
|
|
|
|
}
|
2004-04-17 06:48:40 -04:00
|
|
|
|
|
|
|
|
/* try bits of option string (backward compatibility for single char) */
|
|
|
|
|
l = strlen( optarg );
|
|
|
|
|
for ( i = 0; tools[i].name; i++ ) {
|
|
|
|
|
if ( strncmp( optarg, &tools[i].name[4], l ) == 0 ) {
|
|
|
|
|
rc = tools[i].func( argc, argv );
|
|
|
|
|
MAIN_RETURN( rc );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* issue error */
|
2004-04-16 15:10:09 -04:00
|
|
|
serverName = optarg;
|
|
|
|
|
serverNamePrefix = "slap";
|
|
|
|
|
fprintf( stderr, "program name \"%s%s\" unrecognized; "
|
|
|
|
|
"aborting...\n", serverNamePrefix, serverName );
|
2004-02-26 14:03:41 -05:00
|
|
|
/* FALLTHRU */
|
1998-08-08 20:43:13 -04:00
|
|
|
default:
|
2004-05-25 06:44:51 -04:00
|
|
|
unhandled_option:;
|
1998-08-08 20:43:13 -04:00
|
|
|
usage( argv[0] );
|
1999-06-17 14:46:02 -04:00
|
|
|
rc = 1;
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 15 );
|
|
|
|
|
goto stop;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2006-09-08 14:25:34 -04:00
|
|
|
|
|
|
|
|
if ( firstopt ) {
|
|
|
|
|
firstopt = 0;
|
|
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
|
|
|
|
|
2010-12-30 14:45:08 -05:00
|
|
|
if ( optind != argc )
|
|
|
|
|
goto unhandled_option;
|
|
|
|
|
|
1999-05-18 21:12:33 -04:00
|
|
|
ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &slap_debug);
|
1998-12-21 20:34:01 -05:00
|
|
|
ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &slap_debug);
|
|
|
|
|
ldif_debug = slap_debug;
|
|
|
|
|
|
2003-12-02 11:57:34 -05:00
|
|
|
if ( version ) {
|
|
|
|
|
fprintf( stderr, "%s\n", Versionstr );
|
2010-11-01 10:51:23 -04:00
|
|
|
if ( version > 2 ) {
|
|
|
|
|
if ( slap_oinfo[0].ov_type ) {
|
|
|
|
|
fprintf( stderr, "Included static overlays:\n");
|
|
|
|
|
for ( i= 0 ; slap_oinfo[i].ov_type; i++ ) {
|
|
|
|
|
fprintf( stderr, " %s\n", slap_oinfo[i].ov_type );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ( slap_binfo[0].bi_type ) {
|
|
|
|
|
fprintf( stderr, "Included static backends:\n");
|
|
|
|
|
for ( i= 0 ; slap_binfo[i].bi_type; i++ ) {
|
|
|
|
|
fprintf( stderr, " %s\n", slap_binfo[i].bi_type );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2003-12-02 11:57:34 -05:00
|
|
|
if ( version > 1 ) goto stop;
|
|
|
|
|
}
|
2001-01-15 14:17:29 -05:00
|
|
|
|
2007-05-11 19:04:33 -04:00
|
|
|
#if defined(LDAP_DEBUG) && defined(LDAP_SYSLOG)
|
2004-02-04 18:00:05 -05:00
|
|
|
{
|
|
|
|
|
char *logName;
|
|
|
|
|
#ifdef HAVE_EBCDIC
|
|
|
|
|
logName = ch_strdup( serverName );
|
|
|
|
|
__atoe( logName );
|
|
|
|
|
#else
|
|
|
|
|
logName = serverName;
|
|
|
|
|
#endif
|
|
|
|
|
|
1998-08-08 20:43:13 -04:00
|
|
|
#ifdef LOG_LOCAL4
|
2004-02-04 18:00:05 -05:00
|
|
|
openlog( logName, OPENLOG_OPTIONS, syslogUser );
|
2007-05-09 14:17:10 -04:00
|
|
|
#elif defined LOG_DEBUG
|
2004-02-04 18:00:05 -05:00
|
|
|
openlog( logName, OPENLOG_OPTIONS );
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef HAVE_EBCDIC
|
|
|
|
|
free( logName );
|
1998-08-08 20:43:13 -04:00
|
|
|
#endif
|
2004-02-04 18:00:05 -05:00
|
|
|
}
|
2007-05-11 19:04:33 -04:00
|
|
|
#endif /* LDAP_DEBUG && LDAP_SYSLOG */
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2003-12-02 11:57:34 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "%s", Versionstr, 0, 0 );
|
|
|
|
|
|
2007-02-02 21:53:10 -05:00
|
|
|
global_host = ldap_pvt_get_fqdn( NULL );
|
2009-04-19 19:25:41 -04:00
|
|
|
ber_str2bv( global_host, 0, 0, &global_host_bv );
|
2007-02-02 21:53:10 -05:00
|
|
|
|
2004-03-16 13:36:38 -05:00
|
|
|
if( check == CHECK_NONE && slapd_daemon_init( urls ) != 0 ) {
|
1999-07-19 16:48:19 -04:00
|
|
|
rc = 1;
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 16 );
|
|
|
|
|
goto stop;
|
|
|
|
|
}
|
1999-07-19 15:40:33 -04:00
|
|
|
|
2000-05-10 19:30:52 -04:00
|
|
|
#if defined(HAVE_CHROOT)
|
2000-10-09 19:38:30 -04:00
|
|
|
if ( sandbox ) {
|
|
|
|
|
if ( chdir( sandbox ) ) {
|
|
|
|
|
perror("chdir");
|
|
|
|
|
rc = 1;
|
|
|
|
|
goto stop;
|
|
|
|
|
}
|
|
|
|
|
if ( chroot( sandbox ) ) {
|
|
|
|
|
perror("chroot");
|
|
|
|
|
rc = 1;
|
|
|
|
|
goto stop;
|
|
|
|
|
}
|
2000-05-10 19:30:52 -04:00
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-04-20 20:40:20 -04:00
|
|
|
#if defined(HAVE_SETUID) && defined(HAVE_SETGID)
|
1999-07-19 15:40:33 -04:00
|
|
|
if ( username != NULL || groupname != NULL ) {
|
1999-04-02 22:19:07 -05:00
|
|
|
slap_init_user( username, groupname );
|
1999-07-19 15:40:33 -04:00
|
|
|
}
|
1999-04-02 22:19:07 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-12-09 17:33:22 -05:00
|
|
|
extops_init();
|
2003-03-12 08:10:22 -05:00
|
|
|
lutil_passwd_init();
|
1999-12-09 17:33:22 -05:00
|
|
|
|
2006-04-06 21:25:46 -04:00
|
|
|
#ifdef HAVE_TLS
|
|
|
|
|
rc = ldap_create( &slap_tls_ld );
|
|
|
|
|
if ( rc ) {
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
2008-02-10 01:29:40 -05:00
|
|
|
/* Library defaults to full certificate checking. This is correct when
|
|
|
|
|
* a client is verifying a server because all servers should have a
|
|
|
|
|
* valid cert. But few clients have valid certs, so we want our default
|
|
|
|
|
* to be no checking. The config file can override this as usual.
|
|
|
|
|
*/
|
|
|
|
|
rc = LDAP_OPT_X_TLS_NEVER;
|
|
|
|
|
(void) ldap_pvt_tls_set_option( slap_tls_ld, LDAP_OPT_X_TLS_REQUIRE_CERT, &rc );
|
2006-04-06 21:25:46 -04:00
|
|
|
#endif
|
|
|
|
|
|
2005-08-27 23:25:16 -04:00
|
|
|
rc = slap_init( serverMode, serverName );
|
|
|
|
|
if ( rc ) {
|
2003-06-15 01:57:14 -04:00
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 18 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
|
2005-03-15 03:57:34 -05:00
|
|
|
if ( read_config( configfile, configdir ) != 0 ) {
|
1999-02-05 04:03:47 -05:00
|
|
|
rc = 1;
|
1999-06-17 14:46:02 -04:00
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 19 );
|
2002-04-15 13:32:08 -04:00
|
|
|
|
2004-03-16 13:36:38 -05:00
|
|
|
if ( check & CHECK_CONFIG ) {
|
2002-04-15 13:32:08 -04:00
|
|
|
fprintf( stderr, "config check failed\n" );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
|
2006-02-02 03:30:56 -05:00
|
|
|
if ( debug_unknowns ) {
|
|
|
|
|
rc = parse_debug_unknowns( debug_unknowns, &slap_debug );
|
|
|
|
|
ldap_charray_free( debug_unknowns );
|
|
|
|
|
debug_unknowns = NULL;
|
|
|
|
|
if ( rc )
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
if ( syslog_unknowns ) {
|
|
|
|
|
rc = parse_debug_unknowns( syslog_unknowns, &ldap_syslog );
|
|
|
|
|
ldap_charray_free( syslog_unknowns );
|
|
|
|
|
syslog_unknowns = NULL;
|
|
|
|
|
if ( rc )
|
|
|
|
|
goto destroy;
|
2006-09-08 16:49:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ( check & CHECK_LOGLEVEL ) {
|
|
|
|
|
rc = 0;
|
|
|
|
|
goto destroy;
|
2006-02-02 03:30:56 -05:00
|
|
|
}
|
|
|
|
|
|
2004-03-16 13:36:38 -05:00
|
|
|
if ( check & CHECK_CONFIG ) {
|
2002-04-15 13:32:08 -04:00
|
|
|
fprintf( stderr, "config check succeeded\n" );
|
2004-03-16 13:36:38 -05:00
|
|
|
|
|
|
|
|
check &= ~CHECK_CONFIG;
|
|
|
|
|
if ( check == CHECK_NONE ) {
|
|
|
|
|
rc = 0;
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
1999-02-05 04:03:47 -05:00
|
|
|
}
|
|
|
|
|
|
2009-02-05 16:44:21 -05:00
|
|
|
if ( glue_sub_attach( 0 ) != 0 ) {
|
2005-09-01 07:45:04 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"subordinate config error\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-09 19:17:21 -05:00
|
|
|
if ( slap_schema_check( ) != 0 ) {
|
2000-05-15 16:04:36 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"schema prep error\n",
|
|
|
|
|
0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
|
2000-05-15 16:04:36 -04:00
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-15 17:07:01 -04:00
|
|
|
#ifdef HAVE_TLS
|
2000-09-21 17:30:02 -04:00
|
|
|
rc = ldap_pvt_tls_init();
|
2001-08-01 23:37:20 -04:00
|
|
|
if( rc != 0) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"main: TLS init failed: %d\n",
|
2011-02-28 20:19:37 -05:00
|
|
|
rc, 0, 0 );
|
2001-08-01 23:37:20 -04:00
|
|
|
rc = 1;
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
2000-05-11 16:50:20 -04:00
|
|
|
|
2004-04-25 21:10:49 -04:00
|
|
|
{
|
2006-04-06 21:25:46 -04:00
|
|
|
int opt = 1;
|
2004-04-25 21:10:49 -04:00
|
|
|
|
|
|
|
|
/* Force new ctx to be created */
|
2006-04-06 21:25:46 -04:00
|
|
|
rc = ldap_pvt_tls_set_option( slap_tls_ld, LDAP_OPT_X_TLS_NEWCTX, &opt );
|
2005-10-14 17:21:27 -04:00
|
|
|
if( rc == 0 ) {
|
2006-04-06 21:25:46 -04:00
|
|
|
/* The ctx's refcount is bumped up here */
|
|
|
|
|
ldap_pvt_tls_get_option( slap_tls_ld, LDAP_OPT_X_TLS_CTX, &slap_tls_ctx );
|
2005-10-09 15:55:39 -04:00
|
|
|
load_extop( &slap_EXOP_START_TLS, 0, starttls_extop );
|
|
|
|
|
} else if ( rc != LDAP_NOT_SUPPORTED ) {
|
2004-04-25 21:10:49 -04:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"main: TLS init def ctx failed: %d\n",
|
|
|
|
|
rc, 0, 0 );
|
|
|
|
|
rc = 1;
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 20 );
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
2000-05-11 16:50:20 -04:00
|
|
|
}
|
1999-07-15 17:07:01 -04:00
|
|
|
#endif
|
|
|
|
|
|
2007-11-05 04:30:40 -05:00
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
|
if( sasl_host == NULL ) {
|
|
|
|
|
sasl_host = ch_strdup( global_host );
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-08-31 01:18:06 -04:00
|
|
|
(void) SIGNAL( LDAP_SIGUSR1, slap_sig_wake );
|
|
|
|
|
(void) SIGNAL( LDAP_SIGUSR2, slap_sig_shutdown );
|
|
|
|
|
|
1999-03-01 17:37:05 -05:00
|
|
|
#ifdef SIGPIPE
|
1999-03-22 02:14:54 -05:00
|
|
|
(void) SIGNAL( SIGPIPE, SIG_IGN );
|
1999-03-01 17:37:05 -05:00
|
|
|
#endif
|
|
|
|
|
#ifdef SIGHUP
|
1999-08-31 01:18:06 -04:00
|
|
|
(void) SIGNAL( SIGHUP, slap_sig_shutdown );
|
1999-03-01 17:37:05 -05:00
|
|
|
#endif
|
1999-08-31 01:18:06 -04:00
|
|
|
(void) SIGNAL( SIGINT, slap_sig_shutdown );
|
|
|
|
|
(void) SIGNAL( SIGTERM, slap_sig_shutdown );
|
2004-10-09 00:55:41 -04:00
|
|
|
#ifdef SIGTRAP
|
2004-10-06 01:51:38 -04:00
|
|
|
(void) SIGNAL( SIGTRAP, slap_sig_shutdown );
|
2004-10-09 00:55:41 -04:00
|
|
|
#endif
|
1999-03-29 04:04:35 -05:00
|
|
|
#ifdef LDAP_SIGCHLD
|
|
|
|
|
(void) SIGNAL( LDAP_SIGCHLD, wait4child );
|
1999-03-27 11:21:44 -05:00
|
|
|
#endif
|
1999-06-18 19:53:05 -04:00
|
|
|
#ifdef SIGBREAK
|
1999-06-18 17:33:39 -04:00
|
|
|
/* SIGBREAK is generated when Ctrl-Break is pressed. */
|
1999-08-31 01:18:06 -04:00
|
|
|
(void) SIGNAL( SIGBREAK, slap_sig_shutdown );
|
1999-06-17 14:46:02 -04:00
|
|
|
#endif
|
1999-02-06 11:00:00 -05:00
|
|
|
|
1999-06-17 14:46:02 -04:00
|
|
|
#ifndef HAVE_WINSOCK
|
2011-03-09 13:09:35 -05:00
|
|
|
if ( !no_detach ) {
|
|
|
|
|
if ( lutil_pair( waitfds ) < 0 ) {
|
|
|
|
|
Debug( LDAP_DEBUG_ANY,
|
|
|
|
|
"main: lutil_pair failed: %d\n",
|
|
|
|
|
0, 0, 0 );
|
|
|
|
|
rc = 1;
|
|
|
|
|
goto destroy;
|
|
|
|
|
}
|
|
|
|
|
pid = lutil_detach( no_detach, 0 );
|
|
|
|
|
if ( pid ) {
|
|
|
|
|
char buf[4];
|
|
|
|
|
rc = EXIT_SUCCESS;
|
|
|
|
|
close( waitfds[1] );
|
|
|
|
|
if ( read( waitfds[0], buf, 1 ) != 1 )
|
|
|
|
|
rc = EXIT_FAILURE;
|
|
|
|
|
_exit( rc );
|
|
|
|
|
} else {
|
|
|
|
|
close( waitfds[0] );
|
|
|
|
|
}
|
2011-02-28 20:19:37 -05:00
|
|
|
}
|
1999-07-19 15:40:33 -04:00
|
|
|
#endif /* HAVE_WINSOCK */
|
1999-02-05 04:03:47 -05:00
|
|
|
|
1999-08-19 13:06:28 -04:00
|
|
|
#ifdef CSRIMALLOC
|
|
|
|
|
mal_leaktrace(1);
|
|
|
|
|
#endif
|
|
|
|
|
|
2004-10-06 01:51:38 -04:00
|
|
|
if ( slapd_pid_file != NULL ) {
|
|
|
|
|
FILE *fp = fopen( slapd_pid_file, "w" );
|
2003-02-19 15:47:57 -05:00
|
|
|
|
2005-10-14 17:21:27 -04:00
|
|
|
if ( fp == NULL ) {
|
|
|
|
|
int save_errno = errno;
|
|
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "unable to open pid file "
|
|
|
|
|
"\"%s\": %d (%s)\n",
|
|
|
|
|
slapd_pid_file,
|
|
|
|
|
save_errno, strerror( save_errno ) );
|
2003-02-19 15:47:57 -05:00
|
|
|
|
2005-10-14 17:21:27 -04:00
|
|
|
free( slapd_pid_file );
|
2004-10-06 01:51:38 -04:00
|
|
|
slapd_pid_file = NULL;
|
2005-10-14 17:21:27 -04:00
|
|
|
|
|
|
|
|
rc = 1;
|
2005-12-02 06:47:10 -05:00
|
|
|
goto destroy;
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
2005-10-14 17:21:27 -04:00
|
|
|
fprintf( fp, "%d\n", (int) getpid() );
|
|
|
|
|
fclose( fp );
|
2005-12-07 09:47:00 -05:00
|
|
|
slapd_pid_file_unlink = 1;
|
2003-02-19 15:47:57 -05:00
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2004-10-06 01:51:38 -04:00
|
|
|
if ( slapd_args_file != NULL ) {
|
|
|
|
|
FILE *fp = fopen( slapd_args_file, "w" );
|
2003-02-19 15:47:57 -05:00
|
|
|
|
2005-10-14 17:21:27 -04:00
|
|
|
if ( fp == NULL ) {
|
|
|
|
|
int save_errno = errno;
|
|
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "unable to open args file "
|
|
|
|
|
"\"%s\": %d (%s)\n",
|
|
|
|
|
slapd_args_file,
|
|
|
|
|
save_errno, strerror( save_errno ) );
|
|
|
|
|
|
|
|
|
|
free( slapd_args_file );
|
2004-10-06 01:51:38 -04:00
|
|
|
slapd_args_file = NULL;
|
2005-10-14 17:21:27 -04:00
|
|
|
|
|
|
|
|
rc = 1;
|
2005-12-02 06:47:10 -05:00
|
|
|
goto destroy;
|
2005-10-14 17:21:27 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for ( i = 0; i < g_argc; i++ ) {
|
|
|
|
|
fprintf( fp, "%s ", g_argv[i] );
|
1999-03-22 02:14:54 -05:00
|
|
|
}
|
2005-10-14 17:21:27 -04:00
|
|
|
fprintf( fp, "\n" );
|
|
|
|
|
fclose( fp );
|
2005-12-07 09:47:00 -05:00
|
|
|
slapd_args_file_unlink = 1;
|
1999-03-22 02:14:54 -05:00
|
|
|
}
|
1998-08-08 20:43:13 -04:00
|
|
|
|
2005-12-02 06:47:10 -05:00
|
|
|
/*
|
|
|
|
|
* FIXME: moved here from slapd_daemon_task()
|
|
|
|
|
* because back-monitor db_open() needs it
|
|
|
|
|
*/
|
|
|
|
|
time( &starttime );
|
|
|
|
|
|
2008-05-18 11:58:10 -04:00
|
|
|
connections_init();
|
|
|
|
|
|
2005-12-02 06:47:10 -05:00
|
|
|
if ( slap_startup( NULL ) != 0 ) {
|
|
|
|
|
rc = 1;
|
|
|
|
|
SERVICE_EXIT( ERROR_SERVICE_SPECIFIC_ERROR, 21 );
|
|
|
|
|
goto shutdown;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Debug( LDAP_DEBUG_ANY, "slapd starting\n", 0, 0, 0 );
|
|
|
|
|
|
2011-02-28 20:19:37 -05:00
|
|
|
#ifndef HAVE_WINSOCK
|
2011-03-09 13:09:35 -05:00
|
|
|
if ( !no_detach ) {
|
|
|
|
|
write( waitfds[1], "1", 1 );
|
|
|
|
|
close( waitfds[1] );
|
|
|
|
|
}
|
2011-02-28 20:19:37 -05:00
|
|
|
#endif
|
|
|
|
|
|
1999-11-01 17:00:18 -05:00
|
|
|
#ifdef HAVE_NT_EVENT_LOG
|
2000-05-11 16:50:20 -04:00
|
|
|
if (is_NT_Service)
|
2005-05-01 16:55:15 -04:00
|
|
|
lutil_LogStartedEvent( serverName, slap_debug, configfile ?
|
|
|
|
|
configfile : SLAPD_DEFAULT_CONFIGFILE , urls );
|
1999-06-17 14:46:02 -04:00
|
|
|
#endif
|
|
|
|
|
|
1999-07-19 15:40:33 -04:00
|
|
|
rc = slapd_daemon();
|
1999-06-17 14:46:02 -04:00
|
|
|
|
1999-11-01 16:25:22 -05:00
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
1999-06-18 17:33:39 -04:00
|
|
|
/* Throw away the event that we used during the startup process. */
|
1999-06-17 14:46:02 -04:00
|
|
|
if ( is_NT_Service )
|
|
|
|
|
ldap_pvt_thread_cond_destroy( &started_event );
|
|
|
|
|
#endif
|
1998-08-08 20:43:13 -04:00
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
shutdown:
|
1999-02-08 06:42:14 -05:00
|
|
|
/* remember an error during shutdown */
|
1999-08-17 15:00:59 -04:00
|
|
|
rc |= slap_shutdown( NULL );
|
1999-08-19 13:06:28 -04:00
|
|
|
|
1999-02-05 04:03:47 -05:00
|
|
|
destroy:
|
2006-09-08 16:49:00 -04:00
|
|
|
if ( check & CHECK_LOGLEVEL ) {
|
|
|
|
|
(void)loglevel_print( stdout );
|
|
|
|
|
}
|
1999-02-08 06:42:14 -05:00
|
|
|
/* remember an error during destroy */
|
|
|
|
|
rc |= slap_destroy();
|
|
|
|
|
|
2004-10-06 01:51:38 -04:00
|
|
|
while ( !LDAP_STAILQ_EMPTY( &slap_sync_cookie )) {
|
|
|
|
|
scp = LDAP_STAILQ_FIRST( &slap_sync_cookie );
|
|
|
|
|
LDAP_STAILQ_REMOVE_HEAD( &slap_sync_cookie, sc_next );
|
2003-11-26 14:49:47 -05:00
|
|
|
ch_free( scp );
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-09 16:22:12 -05:00
|
|
|
#ifdef SLAPD_MODULES
|
|
|
|
|
module_kill();
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-12-09 17:33:22 -05:00
|
|
|
extops_kill();
|
|
|
|
|
|
2005-11-27 18:17:57 -05:00
|
|
|
supported_feature_destroy();
|
2006-01-02 03:57:56 -05:00
|
|
|
entry_info_destroy();
|
2005-11-27 18:17:57 -05:00
|
|
|
|
1999-06-17 14:46:02 -04:00
|
|
|
stop:
|
1999-11-01 17:00:18 -05:00
|
|
|
#ifdef HAVE_NT_EVENT_LOG
|
2000-05-11 16:50:20 -04:00
|
|
|
if (is_NT_Service)
|
2003-03-03 06:46:05 -05:00
|
|
|
lutil_LogStoppedEvent( serverName );
|
1999-06-17 14:46:02 -04:00
|
|
|
#endif
|
1999-07-19 15:40:33 -04:00
|
|
|
|
1999-02-08 06:42:14 -05:00
|
|
|
Debug( LDAP_DEBUG_ANY, "slapd stopped.\n", 0, 0, 0 );
|
2001-01-15 14:17:29 -05:00
|
|
|
|
1999-07-19 15:40:33 -04:00
|
|
|
|
1999-11-01 16:25:22 -05:00
|
|
|
#ifdef HAVE_NT_SERVICE_MANAGER
|
2003-03-03 06:46:05 -05:00
|
|
|
lutil_ReportShutdownComplete();
|
1999-06-17 14:46:02 -04:00
|
|
|
#endif
|
1999-02-08 06:42:14 -05:00
|
|
|
|
1999-11-01 13:14:26 -05:00
|
|
|
#ifdef LOG_DEBUG
|
1999-06-17 14:46:02 -04:00
|
|
|
closelog();
|
1999-11-01 13:14:26 -05:00
|
|
|
#endif
|
1999-07-19 15:40:33 -04:00
|
|
|
slapd_daemon_destroy();
|
1999-04-05 21:55:11 -04:00
|
|
|
|
2003-02-28 07:34:35 -05:00
|
|
|
controls_destroy();
|
|
|
|
|
|
2007-09-15 13:38:53 -04:00
|
|
|
filter_destroy();
|
|
|
|
|
|
2001-11-06 20:03:49 -05:00
|
|
|
schema_destroy();
|
|
|
|
|
|
2003-03-12 08:10:22 -05:00
|
|
|
lutil_passwd_destroy();
|
|
|
|
|
|
2001-11-06 15:52:59 -05:00
|
|
|
#ifdef HAVE_TLS
|
2006-04-13 17:49:25 -04:00
|
|
|
if ( slap_tls_ld ) {
|
2007-03-23 19:47:07 -04:00
|
|
|
ldap_pvt_tls_ctx_free( slap_tls_ctx );
|
2006-09-04 03:20:59 -04:00
|
|
|
ldap_unbind_ext( slap_tls_ld, NULL, NULL );
|
2006-04-13 17:49:25 -04:00
|
|
|
}
|
2001-11-06 15:52:59 -05:00
|
|
|
ldap_pvt_tls_destroy();
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-09-04 03:20:59 -04:00
|
|
|
slap_sasl_regexp_destroy();
|
|
|
|
|
|
2005-12-07 09:47:00 -05:00
|
|
|
if ( slapd_pid_file_unlink ) {
|
2004-10-06 01:51:38 -04:00
|
|
|
unlink( slapd_pid_file );
|
2003-02-19 15:47:57 -05:00
|
|
|
}
|
2005-12-07 09:47:00 -05:00
|
|
|
if ( slapd_args_file_unlink ) {
|
2004-10-06 01:51:38 -04:00
|
|
|
unlink( slapd_args_file );
|
2003-02-19 15:47:57 -05:00
|
|
|
}
|
|
|
|
|
|
2001-12-15 07:05:58 -05:00
|
|
|
config_destroy();
|
|
|
|
|
|
2005-07-16 11:40:14 -04:00
|
|
|
if ( configfile )
|
|
|
|
|
ch_free( configfile );
|
|
|
|
|
if ( configdir )
|
|
|
|
|
ch_free( configdir );
|
|
|
|
|
if ( urls )
|
|
|
|
|
ch_free( urls );
|
2008-09-08 11:21:51 -04:00
|
|
|
if ( global_host )
|
|
|
|
|
ch_free( global_host );
|
2005-07-16 11:40:14 -04:00
|
|
|
|
2006-05-19 11:24:56 -04:00
|
|
|
/* kludge, get symbols referenced */
|
|
|
|
|
tavl_free( NULL, NULL );
|
|
|
|
|
|
1999-08-19 13:06:28 -04:00
|
|
|
#ifdef CSRIMALLOC
|
|
|
|
|
mal_dumpleaktrace( leakfile );
|
|
|
|
|
#endif
|
|
|
|
|
|
1999-06-18 17:33:39 -04:00
|
|
|
MAIN_RETURN(rc);
|
1998-08-08 20:43:13 -04:00
|
|
|
}
|
1999-01-05 10:40:58 -05:00
|
|
|
|
|
|
|
|
|
1999-03-29 04:04:35 -05:00
|
|
|
#ifdef LDAP_SIGCHLD
|
1999-03-27 11:21:44 -05:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Catch and discard terminated child processes, to avoid zombies.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static RETSIGTYPE
|
|
|
|
|
wait4child( int sig )
|
|
|
|
|
{
|
|
|
|
|
int save_errno = errno;
|
1999-04-01 23:12:18 -05:00
|
|
|
|
|
|
|
|
#ifdef WNOHANG
|
2009-03-26 18:12:12 -04:00
|
|
|
do
|
|
|
|
|
errno = 0;
|
1999-04-01 23:12:18 -05:00
|
|
|
#ifdef HAVE_WAITPID
|
2009-03-26 18:12:12 -04:00
|
|
|
while ( waitpid( (pid_t)-1, NULL, WNOHANG ) > 0 || errno == EINTR );
|
1999-04-01 23:12:18 -05:00
|
|
|
#else
|
2009-03-26 18:12:12 -04:00
|
|
|
while ( wait3( NULL, WNOHANG, NULL ) > 0 || errno == EINTR );
|
1999-04-01 23:12:18 -05:00
|
|
|
#endif
|
1999-04-02 03:30:02 -05:00
|
|
|
#else
|
1999-03-27 11:21:44 -05:00
|
|
|
(void) wait( NULL );
|
|
|
|
|
#endif
|
2000-07-21 20:37:51 -04:00
|
|
|
(void) SIGNAL_REINSTALL( sig, wait4child );
|
1999-03-27 11:21:44 -05:00
|
|
|
errno = save_errno;
|
|
|
|
|
}
|
|
|
|
|
|
2002-10-17 00:35:55 -04:00
|
|
|
#endif /* LDAP_SIGCHLD */
|