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).
31 * args.c - process command-line arguments, and set appropriate globals.
38 #include <ac/stdlib.h>
39 #include <ac/string.h>
41 #include <ac/unistd.h>
52 fprintf( stderr, "usage: %s\t[-d debug-level] [-s syslog-level]\n", name );
53 fprintf( stderr, "\t\t[-f slapd-config-file] [-r replication-log-file]\n" );
54 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND
55 fprintf( stderr, "\t\t[-t tmp-dir] [-o] [-k srvtab-file]\n" );
56 #else /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
57 fprintf( stderr, "\t\t[-t tmp-dir] [-o]\n" );
58 #endif /* LDAP_API_FEATURE_X_OPENLDAP_V2_KBIND */
59 fprintf( stderr, "\t\t[-n service-name]\n" );
65 * Interpret argv, and fill in any appropriate globals.
77 if ( (g->myname = strrchr( argv[0], LDAP_DIRSEP[0] )) == NULL ) {
78 g->myname = strdup( argv[0] );
80 g->myname = strdup( g->myname + 1 );
83 while ( (i = getopt( argc, argv, "d:f:n:or:t:V" )) != EOF ) {
85 case 'd': /* set debug level and 'do not detach' flag */
87 if ( optarg[0] == '?' ) {
89 printf( "Debug levels:\n" );
90 printf( "\tLDAP_DEBUG_TRACE\t%d\n",
92 printf( "\tLDAP_DEBUG_PACKETS\t%d\n",
94 printf( "\tLDAP_DEBUG_ARGS\t\t%d\n",
96 printf( "\tLDAP_DEBUG_CONNS\t%d\n",
98 printf( "\tLDAP_DEBUG_BER\t\t%d\n",
100 printf( "\tLDAP_DEBUG_FILTER\t%d\n",
102 printf( "\tLDAP_DEBUG_CONFIG\t%d\n",
104 printf( "\tLDAP_DEBUG_ACL\t\t%d\n",
106 printf( "\tLDAP_DEBUG_ANY\t\t%d\n",
108 puts( "\tThe -d flag also prevents slurpd from detaching." );
109 #endif /* LDAP_DEBUG */
110 puts( "\tDebugging is disabled. -d 0 prevents slurpd from detaching." );
114 ldap_debug |= atoi( optarg );
115 #else /* !LDAP_DEBUG */
116 if ( atoi( optarg ) != 0 )
117 /* can't enable debugging - not built with debug code */
118 fputs( "must compile with LDAP_DEBUG for debugging\n",
120 #endif /* LDAP_DEBUG */
122 case 'f': /* slapd config file */
123 g->slapd_configfile = strdup( optarg );
125 case 'n': /* NT service name */
126 if ( g->serverName ) free( g->serverName );
127 g->serverName = strdup( optarg );
130 g->one_shot_mode = 1;
132 case 'r': /* slapd replog file */
133 snprintf( g->slapd_replogfile, sizeof g->slapd_replogfile,
137 case 't': { /* dir to use for our copies of replogs */
139 g->slurpd_rdir = (char *)malloc (sz = (strlen(optarg) + sizeof("/replica")));
140 snprintf(g->slurpd_rdir, sz,
141 "%s" LDAP_DIRSEP "replica", optarg);
152 if ( g->one_shot_mode && !rflag ) {
153 fprintf( stderr, "If -o flag is given, -r flag must also be given.\n" );
158 /* Set location/name of our private copy of the slapd replog file */
159 snprintf( g->slurpd_replogfile, sizeof g->slurpd_replogfile,
160 "%s" LDAP_DIRSEP "%s", g->slurpd_rdir,
161 DEFAULT_SLURPD_REPLOGFILE );
163 /* Set location/name of the slurpd status file */
164 snprintf( g->slurpd_status_file, sizeof g->slurpd_status_file,
165 "%s" LDAP_DIRSEP "%s", g->slurpd_rdir,
166 DEFAULT_SLURPD_STATUS_FILE );
168 ber_set_option(NULL, LBER_OPT_DEBUG_LEVEL, &ldap_debug);
169 ldap_set_option(NULL, LDAP_OPT_DEBUG_LEVEL, &ldap_debug);
170 ldif_debug = ldap_debug;
173 openlog( g->myname, OPENLOG_OPTIONS, LOG_LOCAL4 );
175 openlog( g->myname, OPENLOG_OPTIONS );