blob: 485c5f9c7e816752cbc45682de19d5df7563c88a [file] [log] [blame]
#!/bin/sh
#
# ident "%Z%%M% %I% %E% SMI"
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# idsconfig -- script to setup iDS 5.x for Native LDAP II.
#
# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
# Use is subject to license terms.
#
#
# display_msg(): Displays message corresponding to the tag passed in.
#
display_msg()
{
case "$1" in
usage) cat <<EOF
$PROG: [ -v ] [ -i input file ] [ -o output file ]
i <input file> Get setup info from input file.
o <output file> Generate a server configuration output file.
v Verbose mode
EOF
;;
backup_server) cat <<EOF
It is strongly recommended that you BACKUP the directory server
before running $PROG.
Hit Ctrl-C at any time before the final confirmation to exit.
EOF
;;
setup_complete) cat <<EOF
$PROG: Setup of iDS server ${IDS_SERVER} is complete.
EOF
;;
display_vlv_list) cat <<EOF
Note: idsconfig has created entries for VLV indexes. Use the
directoryserver(1m) script on ${IDS_SERVER} to stop
the server and then enter the following vlvindex
sub-commands to create the actual VLV indexes:
EOF
;;
cred_level_menu) cat <<EOF
The following are the supported credential levels:
1 anonymous
2 proxy
3 proxy anonymous
EOF
;;
auth_method_menu) cat <<EOF
The following are the supported Authentication Methods:
1 none
2 simple
3 sasl/DIGEST-MD5
4 tls:simple
5 tls:sasl/DIGEST-MD5
EOF
;;
srvauth_method_menu) cat <<EOF
The following are the supported Authentication Methods:
1 simple
2 sasl/DIGEST-MD5
3 tls:simple
4 tls:sasl/DIGEST-MD5
EOF
;;
prompt_ssd_menu) cat <<EOF
A Add a Service Search Descriptor
D Delete a SSD
M Modify a SSD
P Display all SSD's
H Help
X Clear all SSD's
Q Exit menu
EOF
;;
summary_menu) cat <<EOF
Summary of Configuration
1 Domain to serve : $LDAP_DOMAIN
2 Base DN to setup : $LDAP_BASEDN
3 Profile name to create : $LDAP_PROFILE_NAME
4 Default Server List : $LDAP_SERVER_LIST
5 Preferred Server List : $LDAP_PREF_SRVLIST
6 Default Search Scope : $LDAP_SEARCH_SCOPE
7 Credential Level : $LDAP_CRED_LEVEL
8 Authentication Method : $LDAP_AUTHMETHOD
9 Enable Follow Referrals : $LDAP_FOLLOWREF
10 iDS Time Limit : $IDS_TIMELIMIT
11 iDS Size Limit : $IDS_SIZELIMIT
12 Enable crypt password storage : $NEED_CRYPT
13 Service Auth Method pam_ldap : $LDAP_SRV_AUTHMETHOD_PAM
14 Service Auth Method keyserv : $LDAP_SRV_AUTHMETHOD_KEY
15 Service Auth Method passwd-cmd: $LDAP_SRV_AUTHMETHOD_CMD
16 Search Time Limit : $LDAP_SEARCH_TIME_LIMIT
17 Profile Time to Live : $LDAP_PROFILE_TTL
18 Bind Limit : $LDAP_BIND_LIMIT
19 Service Search Descriptors Menu
EOF
;;
ldap_suffix_list) cat <<EOF
No valid suffixes (naming contexts) were found for LDAP base DN:
${LDAP_BASEDN}
Available suffixes are:
${LDAP_SUFFIX_LIST}
EOF
;;
sorry) cat <<EOF
HELP - No help is available for this topic.
EOF
;;
backup_help) cat <<EOF
HELP - Since idsconfig modifies the directory server configuration,
it is strongly recommended that you backup the server prior
to running this utility. This is especially true if the server
being configured is a production server.
EOF
;;
port_help) cat <<EOF
HELP - Enter the port number the directory server is configured to
use for LDAP.
EOF
;;
domain_help) cat <<EOF
HELP - This is the DNS domain name this server will be serving. You
must provide this name even if the server is not going to be populated
with hostnames. Any unqualified hostname stored in the directory
will be fully qualified using this DNS domain name.
EOF
;;
basedn_help) cat <<EOF
HELP - This parameter defines the default location in the directory tree for
the naming services entries. You can override this default by using
serviceSearchDescriptors (SSD). You will be given the option to set up
an SSD later on in the setup.
EOF
;;
profile_help) cat <<EOF
HELP - Name of the configuration profile with which the clients will be
configured. A directory server can store various profiles for multiple
groups of clients. The initialization tool, (ldapclient(1M)), assumes
"default" unless another is specified.
EOF
;;
def_srvlist_help) cat <<EOF
HELP - Provide a list of directory servers to serve clients using this profile.
All these servers should contain consistent data and provide similar
functionality. This list is not ordered, and clients might change the
order given in this list. Note that this is a space separated list of
*IP addresses* (not host names). Providing port numbers is optional.
EOF
;;
pref_srvlist_help) cat <<EOF
HELP - Provide a list of directory servers to serve this client profile.
Unlike the default server list, which is not ordered, the preferred
servers must be entered IN THE ORDER you wish to have them contacted.
If you do specify a preferred server list, clients will always contact
them before attempting to contact any of the servers on the default
server list. Note that you must enter the preferred server list as a
space-separated list of *IP addresses* (not host names). Providing port
numbers is optional.
EOF
;;
srch_scope_help) cat <<EOF
HELP - Default search scope to be used for all searches unless they are
overwritten using serviceSearchDescriptors. The valid options
are "one", which would specify the search will only be performed
at the base DN for the given service, or "sub", which would specify
the search will be performed through *all* levels below the base DN
for the given service.
EOF
;;
cred_lvl_help) cat <<EOF
HELP - This parameter defines what credentials the clients use to
authenticate to the directory server. This list might contain
multiple credential levels and is ordered. If a proxy level
is configured, you will also be prompted to enter a bind DN
for the proxy agent along with a password. This proxy agent
will be created if it does not exist.
EOF
;;
auth_help) cat <<EOF
HELP - The default authentication method(s) to be used by all services
in the client using this profile. This is a ordered list of
authentication methods separated by a ';'. The supported methods
are provided in a menu. Note that sasl/DIGEST-MD5 binds require
passwords to be stored un-encrypted on the server.
EOF
;;
srvauth_help) cat <<EOF
HELP - The authentication methods to be used by a given service. Currently
3 services support this feature: pam_ldap, keyserv, and passwd-cmd.
The authentication method specified in this attribute overrides
the default authentication method defined in the profile. This
feature can be used to select stronger authentication methods for
services which require increased security.
EOF
;;
pam_ldap_help) cat <<EOF
HELP - The authentication method(s) to be used by pam_ldap when contacting
the directory server. This is a ordered list, and, if provided, will
override the default authentication method parameter.
EOF
;;
keyserv_help) cat <<EOF
HELP - The authentication method(s) to be used by newkey(1M) and chkey(1)
when contacting the directory server. This is a ordered list and
if provided will override the default authentication method
parameter.
EOF
;;
passwd-cmd_help) cat <<EOF
HELP - The authentication method(s) to be used by passwd(1) command when
contacting the directory server. This is a ordered list and if
provided will override the default authentication method parameter.
EOF
;;
referrals_help) cat <<EOF
HELP - This parameter indicates whether the client should follow
ldap referrals if it encounters one during naming lookups.
EOF
;;
tlim_help) cat <<EOF
HELP - The server time limit value indicates the maximum amount of time the
server would spend on a query from the client before abandoning it.
A value of '-1' indicates no limit.
EOF
;;
slim_help) cat <<EOF
HELP - The server sizelimit value indicates the maximum number of entries
the server would return in respond to a query from the client. A
value of '-1' indicates no limit.
EOF
;;
crypt_help) cat <<EOF
HELP - By default iDS does not store userPassword attribute values using
unix "crypt" format. If you need to keep your passwords in the crypt
format for NIS/NIS+ and pam_unix compatibility, choose 'yes'. If
passwords are stored using any other format than crypt, pam_ldap
MUST be used by clients to authenticate users to the system. Note
that if you wish to use sasl/DIGEST-MD5 in conjunction with pam_ldap,
user passwords must be stored in the clear format.
EOF
;;
srchtime_help) cat <<EOF
HELP - The search time limit the client will enforce for directory
lookups.
EOF
;;
profttl_help) cat <<EOF
HELP - The time to live value for profile. The client will refresh its
cached version of the configuration profile at this TTL interval.
EOF
;;
bindlim_help) cat <<EOF
HELP - The time limit for the bind operation to the directory. This
value controls the responsiveness of the client in case a server
becomes unavailable. The smallest timeout value for a given
network architecture/conditions would work best. This is very
similar to setting TCP timeout, but only for LDAP bind operation.
EOF
;;
ssd_help) cat <<EOF
HELP - Using Service Search Descriptors (SSD), you can override the
default configuration for a given service. The SSD can be
used to override the default search base DN, the default search
scope, and the default search filter to be used for directory
lookups. SSD are supported for all services (databases)
defined in nsswitch.conf(4). The default base DN is defined
in ldap(1).
Note: SSD are powerful tools in defining configuration profiles
and provide a great deal of flexibility. However, care
must be taken in creating them. If you decide to make use
of SSDs, consult the documentation first.
EOF
;;
ssd_menu_help) cat <<EOF
HELP - Using this menu SSD can be added, updated, or deleted from
the profile.
A - This option creates a new SSD by prompting for the
service name, base DN, and scope. Service name is
any valid service as defined in ldap(1). base is
either the distinguished name to the container where
this service will use, or a relative DN followed
by a ','.
D - Delete a previously created SSD.
M - Modify a previously created SSD.
P - Display a list of all the previously created SSD.
X - Delete all of the previously created SSD.
Q - Exit the menu and continue with the server configuration.
EOF
;;
ldap_suffix_list_help) cat <<EOF
HELP - No valid suffixes (naming contexts) are available on server
${IDS_SERVER}:${IDS_PORT}.
You must set an LDAP Base DN that can be contained in
an existing suffix.
EOF
;;
esac
}
#
# get_ans(): gets an answer from the user.
# $1 instruction/comment/description/question
# $2 default value
#
get_ans()
{
if [ -z "$2" ]
then
${ECHO} "$1 \c"
else
${ECHO} "$1 [$2] \c"
fi
read ANS
if [ -z "$ANS" ]
then
ANS=$2
fi
}
#
# get_ans_req(): gets an answer (required) from the user, NULL value not allowed.
# $@ instruction/comment/description/question
#
get_ans_req()
{
ANS="" # Set ANS to NULL.
while [ "$ANS" = "" ]
do
get_ans "$@"
[ "$ANS" = "" ] && ${ECHO} "NULL value not allowed!"
done
}
#
# get_number(): Querys and verifies that number entered is numeric.
# Function will repeat prompt user for number value.
# $1 Message text.
# $2 default value.
# $3 Help argument.
#
get_number()
{
ANS="" # Set ANS to NULL.
NUM=""
get_ans "$1" "$2"
# Verify that value is numeric.
while not_numeric $ANS
do
case "$ANS" in
[Hh] | help | Help | \?) display_msg ${3:-sorry} ;;
* ) ${ECHO} "Invalid value: \"${ANS}\". \c"
;;
esac
# Get a new value.
get_ans "Enter a numeric value:" "$2"
done
NUM=$ANS
}
#
# get_negone_num(): Only allows a -1 or positive integer.
# Used for values where -1 has special meaning.
#
# $1 - Prompt message.
# $2 - Default value (require).
# $3 - Optional help argument.
get_negone_num()
{
while :
do
get_number "$1" "$2" "$3"
if is_negative $ANS
then
if [ "$ANS" = "-1" ]; then
break # -1 is OK, so break.
else # Need to re-enter number.
${ECHO} "Invalid number: please enter -1 or positive number."
fi
else
break # Positive number
fi
done
}
#
# get_passwd(): Reads a password from the user and verify with second.
# $@ instruction/comment/description/question
#
get_passwd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_passwd()"
# Temporary PASSWD variables
_PASS1=""
_PASS2=""
/usr/bin/stty -echo # Turn echo OFF
# Endless loop that continues until passwd and re-entered passwd
# match.
while :
do
ANS="" # Set ANS to NULL.
# Don't allow NULL for first try.
while [ "$ANS" = "" ]
do
get_ans "$@"
[ "$ANS" = "" ] && ${ECHO} "" && ${ECHO} "NULL passwd not allowed!"
done
_PASS1=$ANS # Store first try.
# Get second try.
${ECHO} ""
get_ans "Re-enter passwd:"
_PASS2=$ANS
# Test if passwords are identical.
if [ "$_PASS1" = "$_PASS2" ]; then
break
fi
# Move cursor down to next line and print ERROR message.
${ECHO} ""
${ECHO} "ERROR: passwords don't match; try again."
done
/usr/bin/stty echo # Turn echo ON
${ECHO} ""
}
#
# get_passwd_nochk(): Reads a password from the user w/o check.
# $@ instruction/comment/description/question
#
get_passwd_nochk()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_passwd_nochk()"
/usr/bin/stty -echo # Turn echo OFF
get_ans "$@"
/usr/bin/stty echo # Turn echo ON
${ECHO} ""
}
#
# get_menu_choice(): Get a menu choice from user. Continue prompting
# till the choice is in required range.
# $1 .. Message text.
# $2 .. min value
# $3 .. max value
# $4 .. OPTIONAL: default value
#
# Return value:
# MN_CH will contain the value selected.
#
get_menu_choice()
{
# Check for req parameter.
if [ $# -lt 3 ]; then
${ECHO} "get_menu_choice(): Did not get required parameters."
return 1
fi
while :
do
get_ans "$1" "$4"
MN_CH=$ANS
is_negative $MN_CH
if [ $? -eq 1 ]; then
if [ $MN_CH -ge $2 ]; then
if [ $MN_CH -le $3 ]; then
return
fi
fi
fi
${ECHO} "Invalid choice: $MN_CH"
done
}
#
# get_confirm(): Get confirmation from the user. (Y/Yes or N/No)
# $1 - Message
# $2 - default value.
#
get_confirm()
{
_ANSWER=
while :
do
# Display Internal ERROR if $2 not set.
if [ -z "$2" ]
then
${ECHO} "INTERNAL ERROR: get_confirm requires 2 args, 3rd is optional."
exit 2
fi
# Display prompt.
${ECHO} "$1 [$2] \c"
# Get the ANSWER.
read _ANSWER
if [ "$_ANSWER" = "" ] && [ -n "$2" ] ; then
_ANSWER=$2
fi
case "$_ANSWER" in
[Yy] | yes | Yes | YES) return 1 ;;
[Nn] | no | No | NO) return 0 ;;
[Hh] | help | Help | \?) display_msg ${3:-sorry};;
* ) ${ECHO} "Please enter y or n." ;;
esac
done
}
#
# get_confirm_nodef(): Get confirmation from the user. (Y/Yes or N/No)
# No default value supported.
#
get_confirm_nodef()
{
_ANSWER=
while :
do
${ECHO} "$@ \c"
read _ANSWER
case "$_ANSWER" in
[Yy] | yes | Yes | YES) return 1 ;;
[Nn] | no | No | NO) return 0 ;;
* ) ${ECHO} "Please enter y or n." ;;
esac
done
}
#
# is_numeric(): Tells is a string is numeric.
# 0 = Numeric
# 1 = NOT Numeric
#
is_numeric()
{
# Check for parameter.
if [ $# -ne 1 ]; then
return 1
fi
# Determine if numeric.
expr "$1" + 1 > /dev/null 2>&1
if [ $? -ge 2 ]; then
return 1
fi
# Made it here, it's Numeric.
return 0
}
#
# not_numeric(): Reverses the return values of is_numeric. Useful
# for if and while statements that want to test for
# non-numeric data.
# 0 = NOT Numeric
# 1 = Numeric
#
not_numeric()
{
is_numeric $1
if [ $? -eq 0 ]; then
return 1
else
return 0
fi
}
#
# is_negative(): Tells is a Numeric value is less than zero.
# 0 = Negative Numeric
# 1 = Positive Numeric
# 2 = NOT Numeric
#
is_negative()
{
# Check for parameter.
if [ $# -ne 1 ]; then
return 1
fi
# Determine if numeric. Can't use expr because -0 is
# considered positive??
if is_numeric $1; then
case "$1" in
-*) return 0 ;; # Negative Numeric
*) return 1 ;; # Positive Numeric
esac
else
return 2
fi
}
#
# check_domainname(): check validity of a domain name. Currently we check
# that it has at least two components.
# $1 the domain name to be checked
#
check_domainname()
{
if [ ! -z "$1" ]
then
t=`expr "$1" : '[^.]\{1,\}[.][^.]\{1,\}'`
if [ "$t" = 0 ]
then
return 1
fi
fi
return 0
}
#
# check_baseDN(): check validity of the baseDN name.
# $1 the baseDN name to be checked
#
# NOTE: The check_baseDN function does not catch all invalid DN's.
# Its purpose is to reduce the number of invalid DN's to
# get past the input routine. The invalid DN's will be
# caught by the LDAP server when they are attempted to be
# created.
#
check_baseDN()
{
ck_DN=$1
${ECHO} " Checking LDAP Base DN ..."
if [ ! -z "$ck_DN" ]; then
[ $DEBUG -eq 1 ] && ${ECHO} "Checking baseDN: $ck_DN"
# Check for = (assignment operator)
${ECHO} "$ck_DN" | ${GREP} "=" > /dev/null 2>&1
if [ $? -ne 0 ]; then
[ $DEBUG -eq 1 ] && ${ECHO} "check_baseDN: No '=' in baseDN."
return 1
fi
# Check all keys.
while :
do
# Get first key.
dkey=`${ECHO} $ck_DN | cut -d'=' -f1`
# Check that the key string is valid
check_attrName $dkey
if [ $? -ne 0 ]; then
[ $DEBUG -eq 1 ] && ${ECHO} "check_baseDN: invalid key=${dkey}"
return 1
fi
[ $DEBUG -eq 1 ] && ${ECHO} "check_baseDN: valid key=${dkey}"
# Remove first key from DN
ck_DN=`${ECHO} $ck_DN | cut -s -d',' -f2-`
# Break loop if nothing left.
if [ "$ck_DN" = "" ]; then
break
fi
done
fi
return 0
}
#
# domain_2_dc(): Convert a domain name into dc string.
# $1 .. Domain name.
#
domain_2_dc()
{
_DOM=$1 # Domain parameter.
_DOM_2_DC="" # Return value from function.
_FIRST=1 # Flag for first time.
export _DOM_2_DC # Make visible for others.
# Convert "."'s to spaces for "for" loop.
domtmp="`${ECHO} ${_DOM} | tr '.' ' '`"
for i in $domtmp; do
if [ $_FIRST -eq 1 ]; then
_DOM_2_DC="dc=${i}"
_FIRST=0
else
_DOM_2_DC="${_DOM_2_DC},dc=${i}"
fi
done
}
#
# is_root_user(): Check to see if logged in as root user.
#
is_root_user()
{
case `id` in
uid=0\(root\)*) return 0 ;;
* ) return 1 ;;
esac
}
#
# parse_arg(): Parses the command line arguments and sets the
# appropriate variables.
#
parse_arg()
{
while getopts "dvhi:o:" ARG
do
case $ARG in
d) DEBUG=1;;
v) VERB="";;
i) INPUT_FILE=$OPTARG;;
o) OUTPUT_FILE=$OPTARG;;
\?) display_msg usage
exit 1;;
*) ${ECHO} "**ERROR: Supported option missing handler!"
display_msg usage
exit 1;;
esac
done
return `expr $OPTIND - 1`
}
#
# init(): initializes variables and options
#
init()
{
# General variables.
PROG=`basename $0` # Program name
PID=$$ # Program ID
VERB='> /dev/null 2>&1' # NULL or "> /dev/null"
ECHO="/bin/echo" # print message on screen
EVAL="eval" # eval or echo
EGREP="/usr/bin/egrep"
GREP="/usr/bin/grep"
DEBUG=0 # Set Debug OFF
BACKUP=no_ldap # backup suffix
HOST="" # NULL or <hostname>
DOM="" # Set to NULL
# If DNS domain (resolv.conf) exists use that, otherwise use domainname.
if [ -f /etc/resolv.conf ]; then
DOM=`/usr/xpg4/bin/grep -i -E '^domain|^search' /etc/resolv.conf \
| awk '{ print $2 }' | tail -1`
fi
# If for any reason the DOM did not get set (error'd resolv.conf) set
# DOM to the domainname command's output.
if [ "$DOM" = "" ]; then
DOM=`domainname` # domain from domainname command.
fi
STEP=1
INTERACTIVE=1 # 0 = on, 1 = off (For input file mode)
DEL_OLD_PROFILE=0 # 0 (default), 1 = delete old profile.
# idsconfig specific variables.
INPUT_FILE=""
OUTPUT_FILE=""
NEED_PROXY=0 # 0 = No Proxy, 1 = Create Proxy.
LDAP_PROXYAGENT=""
LDAP_SUFFIX=""
LDAP_DOMAIN=$DOM # domainname on Server (default value)
GEN_CMD=""
# LDAP COMMANDS
LDAPSEARCH="/bin/ldapsearch -r"
LDAPMODIFY=/bin/ldapmodify
LDAPADD=/bin/ldapadd
LDAPDELETE=/bin/ldapdelete
LDAP_GEN_PROFILE=/usr/sbin/ldap_gen_profile
# iDS specific information
IDS_SERVER=""
IDS_PORT=389
NEED_TIME=0
NEED_SIZE=0
NEED_SRVAUTH_PAM=0
NEED_SRVAUTH_KEY=0
NEED_SRVAUTH_CMD=0
IDS_TIMELIMIT=""
IDS_SIZELIMIT=""
# LDAP PROFILE related defaults
LDAP_ROOTDN="cn=Directory Manager" # Provide common default.
LDAP_ROOTPWD="" # NULL passwd as default (i.e. invalid)
LDAP_PROFILE_NAME="default"
LDAP_BASEDN=""
LDAP_SERVER_LIST=""
LDAP_AUTHMETHOD=""
LDAP_FOLLOWREF="FALSE"
NEED_CRYPT=""
LDAP_SEARCH_SCOPE="one"
LDAP_SRV_AUTHMETHOD_PAM=""
LDAP_SRV_AUTHMETHOD_KEY=""
LDAP_SRV_AUTHMETHOD_CMD=""
LDAP_SEARCH_TIME_LIMIT=30
LDAP_PREF_SRVLIST=""
LDAP_PROFILE_TTL=43200
LDAP_CRED_LEVEL="proxy"
LDAP_BIND_LIMIT=10
# Prevent new files from being read by group or others.
umask 077
# Service Search Descriptors
LDAP_SERV_SRCH_DES=""
# Set and create TMPDIR.
TMPDIR="/tmp/idsconfig.${PID}"
if mkdir -m 700 ${TMPDIR}
then
# Cleanup on exit.
trap 'rm -rf ${TMPDIR}; /usr/bin/stty echo; exit' 1 2 3 6 15
else
echo "ERROR: unable to create a safe temporary directory."
exit 1
fi
LDAP_ROOTPWF=${TMPDIR}/rootPWD
# Set the SSD file name after setting TMPDIR.
SSD_FILE=${TMPDIR}/ssd_list
export DEBUG VERB ECHO EVAL EGREP GREP STEP TMPDIR
export IDS_SERVER IDS_PORT LDAP_ROOTDN LDAP_ROOTPWD LDAP_SERVER_LIST
export LDAP_BASEDN LDAP_ROOTPWF
export LDAP_DOMAIN LDAP_SUFFIX LDAP_PROXYAGENT LDAP_PROXYAGENT_CRED
export NEED_PROXY
export LDAP_PROFILE_NAME LDAP_BASEDN LDAP_SERVER_LIST
export LDAP_AUTHMETHOD LDAP_FOLLOWREF LDAP_SEARCH_SCOPE LDAP_SEARCH_TIME_LIMIT
export LDAP_PREF_SRVLIST LDAP_PROFILE_TTL LDAP_CRED_LEVEL LDAP_BIND_LIMIT
export NEED_SRVAUTH_PAM NEED_SRVAUTH_KEY NEED_SRVAUTH_CMD
export LDAP_SRV_AUTHMETHOD_PAM LDAP_SRV_AUTHMETHOD_KEY LDAP_SRV_AUTHMETHOD_CMD
export LDAP_SERV_SRCH_DES SSD_FILE
export GEN_CMD
}
#
# disp_full_debug(): List of all debug variables usually interested in.
# Grouped to avoid MASSIVE code duplication.
#
disp_full_debug()
{
[ $DEBUG -eq 1 ] && ${ECHO} " IDS_SERVER = $IDS_SERVER"
[ $DEBUG -eq 1 ] && ${ECHO} " IDS_PORT = $IDS_PORT"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_ROOTDN = $LDAP_ROOTDN"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_ROOTPWD = $LDAP_ROOTPWD"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_DOMAIN = $LDAP_DOMAIN"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SUFFIX = $LDAP_SUFFIX"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_BASEDN = $LDAP_BASEDN"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_PROFILE_NAME = $LDAP_PROFILE_NAME"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SERVER_LIST = $LDAP_SERVER_LIST"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_PREF_SRVLIST = $LDAP_PREF_SRVLIST"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SEARCH_SCOPE = $LDAP_SEARCH_SCOPE"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_CRED_LEVEL = $LDAP_CRED_LEVEL"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_AUTHMETHOD = $LDAP_AUTHMETHOD"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_FOLLOWREF = $LDAP_FOLLOWREF"
[ $DEBUG -eq 1 ] && ${ECHO} " IDS_TIMELIMIT = $IDS_TIMELIMIT"
[ $DEBUG -eq 1 ] && ${ECHO} " IDS_SIZELIMIT = $IDS_SIZELIMIT"
[ $DEBUG -eq 1 ] && ${ECHO} " NEED_CRYPT = $NEED_CRYPT"
[ $DEBUG -eq 1 ] && ${ECHO} " NEED_SRVAUTH_PAM = $NEED_SRVAUTH_PAM"
[ $DEBUG -eq 1 ] && ${ECHO} " NEED_SRVAUTH_KEY = $NEED_SRVAUTH_KEY"
[ $DEBUG -eq 1 ] && ${ECHO} " NEED_SRVAUTH_CMD = $NEED_SRVAUTH_CMD"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SRV_AUTHMETHOD_PAM = $LDAP_SRV_AUTHMETHOD_PAM"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SRV_AUTHMETHOD_KEY = $LDAP_SRV_AUTHMETHOD_KEY"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SRV_AUTHMETHOD_CMD = $LDAP_SRV_AUTHMETHOD_CMD"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SEARCH_TIME_LIMIT = $LDAP_SEARCH_TIME_LIMIT"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_PROFILE_TTL = $LDAP_PROFILE_TTL"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_BIND_LIMIT = $LDAP_BIND_LIMIT"
# Only display proxy stuff if needed.
if [ $NEED_PROXY -eq 1 ]; then
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_PROXYAGENT = $LDAP_PROXYAGENT"
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_PROXYAGENT_CRED = $LDAP_PROXYAGENT_CRED"
[ $DEBUG -eq 1 ] && ${ECHO} " NEED_PROXY = $NEED_PROXY"
fi
# Service Search Descriptors are a special case.
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SERV_SRCH_DES = $LDAP_SERV_SRCH_DES"
}
#
# load_config_file(): Loads the config file.
#
load_config_file()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In load_config_file()"
# Remove SSD lines from input file before sourcing.
# The SSD lines must be removed because some forms of the
# data could cause SHELL errors.
${GREP} -v "LDAP_SERV_SRCH_DES=" ${INPUT_FILE} > ${TMPDIR}/inputfile.noSSD
# Source the input file.
. ${TMPDIR}/inputfile.noSSD
# If LDAP_SUFFIX is no set, try to utilize LDAP_TREETOP since older
# config files use LDAP_TREETOP
LDAP_SUFFIX="${LDAP_SUFFIX:-$LDAP_TREETOP}"
# Save password to temporary file.
save_password
# Create the SSD file.
create_ssd_file
# Display FULL debugging info.
disp_full_debug
}
#
# save_password(): Save password to temporary file.
#
save_password()
{
cat > ${LDAP_ROOTPWF} <<EOF
${LDAP_ROOTPWD}
EOF
}
######################################################################
# FUNCTIONS FOR prompt_config_info() START HERE.
######################################################################
#
# get_ids_server(): Prompt for iDS server name.
#
get_ids_server()
{
while :
do
# Prompt for server name.
get_ans "Enter the iPlanet Directory Server's (iDS) hostname to setup:" "$IDS_SERVER"
IDS_SERVER=$ANS
# Ping server to see if live. If valid break out of loop.
ping $IDS_SERVER > /dev/null 2>&1
if [ $? -eq 0 ]; then
break
fi
# Invalid server, enter a new name.
${ECHO} "ERROR: Server '${IDS_SERVER}' is invalid or unreachable."
IDS_SERVER=""
done
# Set SERVER_ARGS and LDAP_ARGS since values might of changed.
SERVER_ARGS="-h ${IDS_SERVER} -p ${IDS_PORT}"
LDAP_ARGS="${SERVER_ARGS} ${AUTH_ARGS}"
export SERVER_ARGS
}
#
# get_ids_port(): Prompt for iDS port number.
#
get_ids_port()
{
# Get a valid iDS port number.
while :
do
# Enter port number.
get_number "Enter the port number for iDS (h=help):" "$IDS_PORT" "port_help"
IDS_PORT=$ANS
# Do a simple search to check hostname and port number.
# If search returns SUCCESS, break out, host and port must
# be valid.
${LDAPSEARCH} -h ${IDS_SERVER} -p ${IDS_PORT} -b "" -s base "objectclass=*" > /dev/null 2>&1
if [ $? -eq 0 ]; then
break
fi
# Invalid host/port pair, Re-enter.
${ECHO} "ERROR: Invalid host or port: ${IDS_SERVER}:${IDS_PORT}, Please re-enter!"
get_ids_server
done
# Set SERVER_ARGS and LDAP_ARGS since values might of changed.
SERVER_ARGS="-h ${IDS_SERVER} -p ${IDS_PORT}"
LDAP_ARGS="${SERVER_ARGS} ${AUTH_ARGS}"
export SERVER_ARGS
}
#
# chk_ids_version(): Read the slapd config file and set variables
#
chk_ids_version()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In chk_ids_version()"
# check iDS version number.
eval "${LDAPSEARCH} ${SERVER_ARGS} -b cn=monitor -s base \"objectclass=*\" version | ${GREP} \"^version=\" | cut -f2 -d'/' | cut -f1 -d' ' > ${TMPDIR}/checkDSver 2>&1"
if [ $? -ne 0 ]; then
${ECHO} "ERROR: Can not determine the version number of iDS!"
exit 1
fi
IDS_VER=`cat ${TMPDIR}/checkDSver`
IDS_MAJVER=`${ECHO} ${IDS_VER} | cut -f1 -d.`
IDS_MINVER=`${ECHO} ${IDS_VER} | cut -f2 -d.`
if [ "${IDS_MAJVER}" != "5" ]; then
${ECHO} "ERROR: $PROG only works with iDS version 5.x, not ${IDS_VER}."
exit 1
fi
if [ $DEBUG -eq 1 ]; then
${ECHO} " IDS_MAJVER = $IDS_MAJVER"
${ECHO} " IDS_MINVER = $IDS_MINVER"
fi
}
#
# get_dirmgr_dn(): Get the directory manger DN.
#
get_dirmgr_dn()
{
get_ans "Enter the directory manager DN:" "$LDAP_ROOTDN"
LDAP_ROOTDN=$ANS
# Update ENV variables using DN.
AUTH_ARGS="-D \"${LDAP_ROOTDN}\" -j ${LDAP_ROOTPWF}"
LDAP_ARGS="${SERVER_ARGS} ${AUTH_ARGS}"
export AUTH_ARGS LDAP_ARGS
}
#
# get_dirmgr_pw(): Get the Root DN passwd. (Root DN found in slapd.conf)
#
get_dirmgr_pw()
{
while :
do
# Get passwd.
get_passwd_nochk "Enter passwd for ${LDAP_ROOTDN} :"
LDAP_ROOTPWD=$ANS
# Store password in file.
save_password
# Update ENV variables using DN's PW.
AUTH_ARGS="-D \"${LDAP_ROOTDN}\" -j ${LDAP_ROOTPWF}"
LDAP_ARGS="${SERVER_ARGS} ${AUTH_ARGS}"
export AUTH_ARGS LDAP_ARGS
# Verify that ROOTDN and ROOTPWD are valid.
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"\" -s base \"objectclass=*\" > ${TMPDIR}/checkDN 2>&1"
if [ $? -ne 0 ]; then
eval "${GREP} credential ${TMPDIR}/checkDN ${VERB}"
if [ $? -eq 0 ]; then
${ECHO} "ERROR: Root DN passwd is invalid."
else
${ECHO} "ERROR: Invalid Root DN <${LDAP_ROOTDN}>."
get_dirmgr_dn
fi
else
break # Both are valid.
fi
done
}
#
# get_domain(): Get the Domain that will be served by the LDAP server.
# $1 - Help argument.
#
get_domain()
{
# Use LDAP_DOMAIN as default.
get_ans "Enter the domainname to be served (h=help):" $LDAP_DOMAIN
# Check domainname, and have user re-enter if not valid.
check_domainname $ANS
while [ $? -ne 0 ]
do
case "$ANS" in
[Hh] | help | Help | \?) display_msg ${1:-sorry} ;;
* ) ${ECHO} "Invalid domainname: \"${ANS}\"."
;;
esac
get_ans "Enter domainname to be served (h=help):" $DOM
check_domainname $ANS
done
# Set the domainname to valid name.
LDAP_DOMAIN=$ANS
}
#
# get_basedn(): Query for the Base DN.
#
get_basedn()
{
# Set the $_DOM_2_DC and assign to LDAP_BASEDN as default.
# Then call get_basedn(). This method remakes the default
# each time just in case the domain changed.
domain_2_dc $LDAP_DOMAIN
LDAP_BASEDN=$_DOM_2_DC
# Get Base DN.
while :
do
get_ans_req "Enter LDAP Base DN (h=help):" "$LDAP_BASEDN"
check_baseDN "$ANS"
while [ $? -ne 0 ]
do
case "$ANS" in
[Hh] | help | Help | \?) display_msg basedn_help ;;
* ) ${ECHO} "Invalid base DN: \"${ANS}\"."
;;
esac
# Re-Enter the BaseDN
get_ans_req "Enter LDAP Base DN (h=help):" "$LDAP_BASEDN"
check_baseDN "$ANS"
done
# Set base DN.
LDAP_BASEDN=${ANS}
check_basedn_suffix
case $? in
0) break ;;
1) cleanup; exit 1 ;;
2) continue ;;
esac
done
}
#
# get_profile_name(): Enter the profile name.
#
get_profile_name()
{
# Reset Delete Old Profile since getting new profile name.
DEL_OLD_PROFILE=0
# Loop until valid profile name, or replace.
while :
do
# Prompt for profile name.
get_ans "Enter the profile name (h=help):" "$LDAP_PROFILE_NAME"
# Check for Help.
case "$ANS" in
[Hh] | help | Help | \?) display_msg profile_help
continue ;;
* ) ;;
esac
# Search to see if profile name already exists.
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=${ANS},ou=profile,${LDAP_BASEDN}\" -s base \"objectclass=*\" ${VERB}"
if [ $? -eq 0 ]; then
get_confirm_nodef "Are you sure you want to overwire profile cn=${ANS}?"
if [ $? -eq 1 ]; then
DEL_OLD_PROFILE=1
return 0 # Replace old profile name.
else
${ECHO} "Please re-enter a new profile name."
fi
else
break # Unique profile name.
fi
done
# Set Profile Name.
LDAP_PROFILE_NAME=$ANS
}
#
# get_srv_list(): Get the default server list.
#
get_srv_list()
{
# If LDAP_SERVER_LIST is NULL, then set, otherwise leave alone.
if [ -z "${LDAP_SERVER_LIST}" ]; then
LDAP_SERVER_LIST=`getent hosts ${IDS_SERVER} | awk '{print $1}'`
if [ ${IDS_PORT} -ne 389 ]; then
LDAP_SERVER_LIST="${LDAP_SERVER_LIST}:${IDS_PORT}"
fi
fi
# Prompt for new LDAP_SERVER_LIST.
while :
do
get_ans "Default server list (h=help):" $LDAP_SERVER_LIST
# If help continue, otherwise break.
case "$ANS" in
[Hh] | help | Help | \?) display_msg def_srvlist_help ;;
* ) break ;;
esac
done
LDAP_SERVER_LIST=$ANS
}
#
# get_pref_srv(): The preferred server list (Overrides the server list)
#
get_pref_srv()
{
while :
do
get_ans "Preferred server list (h=help):" $LDAP_PREF_SRVLIST
# If help continue, otherwise break.
case "$ANS" in
[Hh] | help | Help | \?) display_msg pref_srvlist_help ;;
* ) break ;;
esac
done
LDAP_PREF_SRVLIST=$ANS
}
#
# get_search_scope(): Get the search scope from the user.
#
get_search_scope()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_search_scope()"
_MENU_CHOICE=0
while :
do
get_ans "Choose desired search scope (one, sub, h=help): " "one"
_MENU_CHOICE=$ANS
case "$_MENU_CHOICE" in
one) LDAP_SEARCH_SCOPE="one"
return 1 ;;
sub) LDAP_SEARCH_SCOPE="sub"
return 2 ;;
h) display_msg srch_scope_help ;;
*) ${ECHO} "Please enter \"one\", \"sub\", or \"h\"." ;;
esac
done
}
#
# get_cred_level(): Function to display menu to user and get the
# credential level.
#
get_cred_level()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_cred_level()"
_MENU_CHOICE=0
display_msg cred_level_menu
while :
do
get_ans "Choose Credential level [h=help]:" "1"
_MENU_CHOICE=$ANS
case "$_MENU_CHOICE" in
1) LDAP_CRED_LEVEL="anonymous"
return 1 ;;
2) LDAP_CRED_LEVEL="proxy"
return 2 ;;
3) LDAP_CRED_LEVEL="proxy anonymous"
return 3 ;;
h) display_msg cred_lvl_help ;;
*) ${ECHO} "Please enter 1, 2 or 3." ;;
esac
done
}
#
# srvauth_menu_handler(): Enter the Service Authentication method.
#
srvauth_menu_handler()
{
# Display Auth menu
display_msg srvauth_method_menu
# Get a Valid choice.
while :
do
# Display appropriate prompt and get answer.
if [ $_FIRST -eq 1 ]; then
get_ans "Choose Service Authentication Method:" "1"
else
get_ans "Choose Service Authentication Method (0=reset):"
fi
# Determine choice.
_MENU_CHOICE=$ANS
case "$_MENU_CHOICE" in
1) _AUTHMETHOD="simple"
break ;;
2) _AUTHMETHOD="sasl/DIGEST-MD5"
break ;;
3) _AUTHMETHOD="tls:simple"
break ;;
4) _AUTHMETHOD="tls:sasl/DIGEST-MD5"
break ;;
0) _AUTHMETHOD=""
_FIRST=1
break ;;
*) ${ECHO} "Please enter 1-4 or 0 to reset." ;;
esac
done
}
#
# auth_menu_handler(): Enter the Authentication method.
#
auth_menu_handler()
{
# Display Auth menu
display_msg auth_method_menu
# Get a Valid choice.
while :
do
# Display appropriate prompt and get answer.
if [ $_FIRST -eq 1 ]; then
get_ans "Choose Authentication Method (h=help):" "1"
else
get_ans "Choose Authentication Method (0=reset, h=help):"
fi
# Determine choice.
_MENU_CHOICE=$ANS
case "$_MENU_CHOICE" in
1) _AUTHMETHOD="none"
break ;;
2) _AUTHMETHOD="simple"
break ;;
3) _AUTHMETHOD="sasl/DIGEST-MD5"
break ;;
4) _AUTHMETHOD="tls:simple"
break ;;
5) _AUTHMETHOD="tls:sasl/DIGEST-MD5"
break ;;
0) _AUTHMETHOD=""
_FIRST=1
break ;;
h) display_msg auth_help ;;
*) ${ECHO} "Please enter 1-5, 0=reset, or h=help." ;;
esac
done
}
#
# get_auth(): Enter the Authentication method.
#
get_auth()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_auth()"
_FIRST=1 # Flag for first time.
_MENU_CHOICE=0
_AUTHMETHOD="" # Tmp method.
while :
do
# Call Menu handler
auth_menu_handler
# Add Auth Method to list.
if [ $_FIRST -eq 1 ]; then
LDAP_AUTHMETHOD="${_AUTHMETHOD}"
_FIRST=0
else
LDAP_AUTHMETHOD="${LDAP_AUTHMETHOD};${_AUTHMETHOD}"
fi
# Display current Authentication Method.
${ECHO} ""
${ECHO} "Current authenticationMethod: ${LDAP_AUTHMETHOD}"
${ECHO} ""
# Prompt for another Auth Method, or break out.
get_confirm_nodef "Do you want to add another Authentication Method?"
if [ $? -eq 0 ]; then
break;
fi
done
}
#
# get_followref(): Whether or not to follow referrals.
#
get_followref()
{
get_confirm "Do you want the clients to follow referrals (y/n/h)?" "n" "referrals_help"
if [ $? -eq 1 ]; then
LDAP_FOLLOWREF="TRUE"
else
LDAP_FOLLOWREF="FALSE"
fi
}
#
# get_timelimit(): Set the time limit. -1 is max time.
#
get_timelimit()
{
# Get current timeout value from cn=config.
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=config\" -s base \"objectclass=*\" nsslapd-timelimit > ${TMPDIR}/chk_timeout 2>&1"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Could not reach LDAP server to check current timeout!"
cleanup
exit 1
fi
CURR_TIMELIMIT=`${GREP} timelimit ${TMPDIR}/chk_timeout | cut -f2 -d=`
get_negone_num "Enter the time limit for iDS (current=${CURR_TIMELIMIT}):" "-1"
IDS_TIMELIMIT=$NUM
}
#
# get_sizelimit(): Set the size limit. -1 is max size.
#
get_sizelimit()
{
# Get current sizelimit value from cn=config.
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=config\" -s base \"objectclass=*\" nsslapd-sizelimit > ${TMPDIR}/chk_sizelimit 2>&1"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Could not reach LDAP server to check current sizelimit!"
cleanup
exit 1
fi
CURR_SIZELIMIT=`${GREP} sizelimit ${TMPDIR}/chk_sizelimit | cut -f2 -d=`
get_negone_num "Enter the size limit for iDS (current=${CURR_SIZELIMIT}):" "-1"
IDS_SIZELIMIT=$NUM
}
#
# get_want_crypt(): Ask user if want to store passwords in crypt?
#
get_want_crypt()
{
get_confirm "Do you want to store passwords in \"crypt\" format (y/n/h)?" "n" "crypt_help"
if [ $? -eq 1 ]; then
NEED_CRYPT="TRUE"
else
NEED_CRYPT="FALSE"
fi
}
#
# get_srv_authMethod_pam(): Get the Service Auth Method for pam_ldap from user.
#
# NOTE: This function is base on get_auth().
#
get_srv_authMethod_pam()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_srv_authMethod_pam()"
_FIRST=1 # Flag for first time.
_MENU_CHOICE=0
_AUTHMETHOD="" # Tmp method.
while :
do
# Call Menu handler
srvauth_menu_handler
# Add Auth Method to list.
if [ $_FIRST -eq 1 ]; then
if [ "$_AUTHMETHOD" = "" ]; then
LDAP_SRV_AUTHMETHOD_PAM=""
else
LDAP_SRV_AUTHMETHOD_PAM="pam_ldap:${_AUTHMETHOD}"
fi
_FIRST=0
else
LDAP_SRV_AUTHMETHOD_PAM="${LDAP_SRV_AUTHMETHOD_PAM};${_AUTHMETHOD}"
fi
# Display current Authentication Method.
${ECHO} ""
${ECHO} "Current authenticationMethod: ${LDAP_SRV_AUTHMETHOD_PAM}"
${ECHO} ""
# Prompt for another Auth Method, or break out.
get_confirm_nodef "Do you want to add another Authentication Method?"
if [ $? -eq 0 ]; then
break;
fi
done
# Check in case user reset string and exited loop.
if [ "$LDAP_SRV_AUTHMETHOD_PAM" = "" ]; then
NEED_SRVAUTH_PAM=0
fi
}
#
# get_srv_authMethod_key(): Get the Service Auth Method for keyserv from user.
#
# NOTE: This function is base on get_auth().
#
get_srv_authMethod_key()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_srv_authMethod_key()"
_FIRST=1 # Flag for first time.
_MENU_CHOICE=0
_AUTHMETHOD="" # Tmp method.
while :
do
# Call Menu handler
srvauth_menu_handler
# Add Auth Method to list.
if [ $_FIRST -eq 1 ]; then
if [ "$_AUTHMETHOD" = "" ]; then
LDAP_SRV_AUTHMETHOD_KEY=""
else
LDAP_SRV_AUTHMETHOD_KEY="keyserv:${_AUTHMETHOD}"
fi
_FIRST=0
else
LDAP_SRV_AUTHMETHOD_KEY="${LDAP_SRV_AUTHMETHOD_KEY};${_AUTHMETHOD}"
fi
# Display current Authentication Method.
${ECHO} ""
${ECHO} "Current authenticationMethod: ${LDAP_SRV_AUTHMETHOD_KEY}"
${ECHO} ""
# Prompt for another Auth Method, or break out.
get_confirm_nodef "Do you want to add another Authentication Method?"
if [ $? -eq 0 ]; then
break;
fi
done
# Check in case user reset string and exited loop.
if [ "$LDAP_SRV_AUTHMETHOD_KEY" = "" ]; then
NEED_SRVAUTH_KEY=0
fi
}
#
# get_srv_authMethod_cmd(): Get the Service Auth Method for passwd-cmd from user.
#
# NOTE: This function is base on get_auth().
#
get_srv_authMethod_cmd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_srv_authMethod_cmd()"
_FIRST=1 # Flag for first time.
_MENU_CHOICE=0
_AUTHMETHOD="" # Tmp method.
while :
do
# Call Menu handler
srvauth_menu_handler
# Add Auth Method to list.
if [ $_FIRST -eq 1 ]; then
if [ "$_AUTHMETHOD" = "" ]; then
LDAP_SRV_AUTHMETHOD_CMD=""
else
LDAP_SRV_AUTHMETHOD_CMD="passwd-cmd:${_AUTHMETHOD}"
fi
_FIRST=0
else
LDAP_SRV_AUTHMETHOD_CMD="${LDAP_SRV_AUTHMETHOD_CMD};${_AUTHMETHOD}"
fi
# Display current Authentication Method.
${ECHO} ""
${ECHO} "Current authenticationMethod: ${LDAP_SRV_AUTHMETHOD_CMD}"
${ECHO} ""
# Prompt for another Auth Method, or break out.
get_confirm_nodef "Do you want to add another Authentication Method?"
if [ $? -eq 0 ]; then
break;
fi
done
# Check in case user reset string and exited loop.
if [ "$LDAP_SRV_AUTHMETHOD_CMD" = "" ]; then
NEED_SRVAUTH_CMD=0
fi
}
#
# get_srch_time(): Amount of time to search.
#
get_srch_time()
{
get_negone_num "Client search time limit in seconds (h=help):" "$LDAP_SEARCH_TIME_LIMIT" "srchtime_help"
LDAP_SEARCH_TIME_LIMIT=$NUM
}
#
# get_prof_ttl(): The profile time to live (TTL)
#
get_prof_ttl()
{
get_negone_num "Profile Time To Live in seconds (h=help):" "$LDAP_PROFILE_TTL" "profttl_help"
LDAP_PROFILE_TTL=$NUM
}
#
# get_bind_limit(): Bind time limit
#
get_bind_limit()
{
get_negone_num "Bind time limit in seconds (h=help):" "$LDAP_BIND_LIMIT" "bindlim_help"
LDAP_BIND_LIMIT=$NUM
}
######################################################################
# FUNCTIONS FOR Service Search Descriptor's START HERE.
######################################################################
#
# add_ssd(): Get SSD's from user and add to file.
#
add_ssd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In add_ssd()"
# Enter the service id. Loop til unique.
while :
do
get_ans "Enter the service id:"
_SERV_ID=$ANS
# Grep for name existing.
${GREP} -i "^$ANS:" ${SSD_FILE} > /dev/null 2>&1
if [ $? -eq 1 ]; then
break
fi
# Name exists, print message, let user decide.
${ECHO} "ERROR: Service id ${ANS} already exists."
done
get_ans "Enter the base:"
_BASE=$ANS
# Get the scope and verify that its one or sub.
while :
do
get_ans "Enter the scope:"
_SCOPE=$ANS
case `${ECHO} ${_SCOPE} | tr '[A-Z]' '[a-z]'` in
one) break ;;
sub) break ;;
*) ${ECHO} "${_SCOPE} is Not valid - Enter 'one' or 'sub'" ;;
esac
done
# Build SSD to add to file.
_SSD="${_SERV_ID}:${_BASE}?${_SCOPE}"
# Add the SSD to the file.
${ECHO} "${_SSD}" >> ${SSD_FILE}
}
#
# delete_ssd(): Delete a SSD from the list.
#
delete_ssd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In delete_ssd()"
# Get service id name from user for SSD to delete.
get_ans_req "Enter service id to delete:"
# Make sure service id exists.
${GREP} "$ANS" ${SSD_FILE} > /dev/null 2>&1
if [ $? -eq 1 ]; then
${ECHO} "Invalid service id: $ANS not present in list."
return
fi
# Create temporary back SSD file.
cp ${SSD_FILE} ${SSD_FILE}.bak
if [ $? -eq 1 ]; then
${ECHO} "ERROR: could not create file: ${SSD_FILE}.bak"
exit 1
fi
# Use ${GREP} to remove the SSD. Read from temp file
# and write to the orig file.
${GREP} -v "$ANS" ${SSD_FILE}.bak > ${SSD_FILE}
}
#
# modify_ssd(): Allow user to modify a SSD.
#
modify_ssd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In modify_ssd()"
# Prompt user for service id.
get_ans_req "Enter service id to modify:"
# Put into temp _LINE.
_LINE=`${GREP} "^$ANS:" ${SSD_FILE}`
if [ "$_LINE" = "" ]; then
${ECHO} "Invalid service id: $ANS"
return
fi
# Display current filter for user to see.
${ECHO} ""
${ECHO} "Current SSD: $_LINE"
${ECHO} ""
# Get the defaults.
_CURR_BASE=`${ECHO} $_LINE | cut -d: -f2 | cut -d'?' -f 1`
_CURR_SCOPE=`${ECHO} $_LINE | cut -d: -f2 | cut -d'?' -f 2`
# Create temporary back SSD file.
cp ${SSD_FILE} ${SSD_FILE}.bak
if [ $? -eq 1 ]; then
${ECHO} "ERROR: could not create file: ${SSD_FILE}.bak"
cleanup
exit 1
fi
# Removed the old line.
${GREP} -v "^$ANS:" ${SSD_FILE}.bak > ${SSD_FILE} 2>&1
# New Entry
_SERV_ID=$ANS
get_ans_req "Enter the base:" "$_CURR_BASE"
_BASE=$ANS
get_ans_req "Enter the scope:" "$_CURR_SCOPE"
_SCOPE=$ANS
# Build the new SSD.
_SSD="${_SERV_ID}:${_BASE}?${_SCOPE}"
# Add the SSD to the file.
${ECHO} "${_SSD}" >> ${SSD_FILE}
}
#
# display_ssd(): Display the current SSD list.
#
display_ssd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In display_ssd()"
${ECHO} ""
${ECHO} "Current Service Search Descriptors:"
${ECHO} "=================================="
cat ${SSD_FILE}
${ECHO} ""
${ECHO} "Hit return to continue."
read __A
}
#
# prompt_ssd(): Get SSD's from user.
#
prompt_ssd()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In prompt_ssd()"
# See if user wants SSD's?
get_confirm "Do you wish to setup Service Search Descriptors (y/n/h)?" "n" "ssd_help"
[ "$?" -eq 0 ] && return
# Display menu for SSD choices.
while :
do
display_msg prompt_ssd_menu
get_ans "Enter menu choice:" "Quit"
case "$ANS" in
[Aa] | add) add_ssd ;;
[Dd] | delete) delete_ssd ;;
[Mm] | modify) modify_ssd ;;
[Pp] | print | display) display_ssd ;;
[Xx] | reset | clear) reset_ssd_file ;;
[Hh] | Help | help) display_msg ssd_menu_help
${ECHO} " Press return to continue."
read __A ;;
[Qq] | Quit | quit) return ;;
*) ${ECHO} "Invalid choice: $ANS please re-enter from menu." ;;
esac
done
}
#
# reset_ssd_file(): Blank out current SSD file.
#
reset_ssd_file()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In reset_ssd_file()"
rm -f ${SSD_FILE}
touch ${SSD_FILE}
}
#
# create_ssd_file(): Create a temporary file for SSD's.
#
create_ssd_file()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In create_ssd_file()"
# Build a list of SSD's and store in temp file.
${GREP} "LDAP_SERV_SRCH_DES=" ${INPUT_FILE} | \
sed 's/LDAP_SERV_SRCH_DES=//' \
> ${SSD_FILE}
}
#
# ssd_2_config(): Append the SSD file to the output file.
#
ssd_2_config()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In ssd_2_config()"
# Convert to config file format using sed.
sed -e "s/^/LDAP_SERV_SRCH_DES=/" ${SSD_FILE} >> ${OUTPUT_FILE}
}
#
# ssd_2_profile(): Add SSD's to the GEN_CMD string.
#
ssd_2_profile()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In ssd_2_profile()"
GEN_TMPFILE=${TMPDIR}/ssd_tmpfile
touch ${GEN_TMPFILE}
# Add and convert each SSD to string.
while read SSD_LINE
do
${ECHO} " -a \"serviceSearchDescriptor=${SSD_LINE}\"\c" >> ${GEN_TMPFILE}
done <${SSD_FILE}
# Add SSD's to GEN_CMD.
GEN_CMD="${GEN_CMD} `cat ${GEN_TMPFILE}`"
}
#
# prompt_config_info(): This function prompts the user for the config
# info that is not specified in the input file.
#
prompt_config_info()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In prompt_config_info()"
# Prompt for iDS server name.
get_ids_server
# Prompt for iDS port number.
get_ids_port
# Check iDS version for compatibility.
chk_ids_version
# Check if the server supports the VLV.
chk_vlv_indexes
# Get the Directory manager DN and passwd.
get_dirmgr_dn
get_dirmgr_pw
#
# LDAP CLIENT PROFILE SPECIFIC INFORMATION.
# (i.e. The fields that show up in the profile.)
#
get_domain "domain_help"
get_basedn
get_profile_name
get_srv_list
get_pref_srv
get_search_scope
# If cred is "anonymous", make auth == "none"
get_cred_level
if [ "$LDAP_CRED_LEVEL" != "anonymous" ]; then
get_auth
fi
get_followref
# Query user about timelimt.
get_confirm "Do you want to modify the server timelimit value (y/n/h)?" "n" "tlim_help"
NEED_TIME=$?
[ $NEED_TIME -eq 1 ] && get_timelimit
# Query user about sizelimit.
get_confirm "Do you want to modify the server sizelimit value (y/n/h)?" "n" "slim_help"
NEED_SIZE=$?
[ $NEED_SIZE -eq 1 ] && get_sizelimit
# Does the user want to store passwords in crypt format?
get_want_crypt
# Prompt for any Service Authentication Methods?
get_confirm "Do you want to setup a Service Authentication Methods (y/n/h)?" "n" "srvauth_help"
if [ $? -eq 1 ]; then
# Does the user want to set Service Authentication Method for pam_ldap?
get_confirm "Do you want to setup a Service Auth. Method for \"pam_ldap\" (y/n/h)?" "n" "pam_ldap_help"
NEED_SRVAUTH_PAM=$?
[ $NEED_SRVAUTH_PAM -eq 1 ] && get_srv_authMethod_pam
# Does the user want to set Service Authentication Method for keyserv?
get_confirm "Do you want to setup a Service Auth. Method for \"keyserv\" (y/n/h)?" "n" "keyserv_help"
NEED_SRVAUTH_KEY=$?
[ $NEED_SRVAUTH_KEY -eq 1 ] && get_srv_authMethod_key
# Does the user want to set Service Authentication Method for passwd-cmd?
get_confirm "Do you want to setup a Service Auth. Method for \"passwd-cmd\" (y/n/h)?" "n" "passwd-cmd_help"
NEED_SRVAUTH_CMD=$?
[ $NEED_SRVAUTH_CMD -eq 1 ] && get_srv_authMethod_cmd
fi
# Get Timeouts
get_srch_time
get_prof_ttl
get_bind_limit
# Reset the sdd_file and prompt user for SSD. Will use menus
# to build an SSD File.
reset_ssd_file
prompt_ssd
# Display FULL debugging info.
disp_full_debug
# Extra blank line to separate prompt lines from steps.
${ECHO} " "
}
######################################################################
# FUNCTIONS FOR display_summary() START HERE.
######################################################################
#
# get_proxyagent(): Get the proxyagent DN.
#
get_proxyagent()
{
LDAP_PROXYAGENT="cn=proxyagent,ou=profile,${LDAP_BASEDN}" # default
get_ans "Enter DN for proxy agent:" "$LDAP_PROXYAGENT"
LDAP_PROXYAGENT=$ANS
}
#
# get_proxy_pw(): Get the proxyagent passwd.
#
get_proxy_pw()
{
get_passwd "Enter passwd for proxyagent:"
LDAP_PROXYAGENT_CRED=$ANS
}
#
# display_summary(): Display a summary of values entered and let the
# user modify values at will.
#
display_summary()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In display_summary()"
# Create lookup table for function names. First entry is dummy for
# shift.
TBL1="dummy"
TBL2="get_domain get_basedn get_profile_name"
TBL3="get_srv_list get_pref_srv get_search_scope get_cred_level"
TBL4="get_auth get_followref"
TBL5="get_timelimit get_sizelimit get_want_crypt"
TBL6="get_srv_authMethod_pam get_srv_authMethod_key get_srv_authMethod_cmd"
TBL7="get_srch_time get_prof_ttl get_bind_limit"
TBL8="prompt_ssd"
FUNC_TBL="$TBL1 $TBL2 $TBL3 $TBL4 $TBL5 $TBL6 $TBL7 $TBL8"
# Since menu prompt string is long, set here.
_MENU_PROMPT="Enter config value to change: (1-19 0=commit changes)"
# Infinite loop. Test for 0, and break in loop.
while :
do
# Display menu and get value in range.
display_msg summary_menu
get_menu_choice "${_MENU_PROMPT}" "0" "19" "0"
_CH=$MN_CH
# Make sure where not exiting.
if [ $_CH -eq 0 ]; then
break # Break out of loop if 0 selected.
fi
# Call appropriate function from function table.
set $FUNC_TBL
shift $_CH
$1 # Call the appropriate function.
done
# If cred level is still see if user wants a change?
if ${ECHO} "$LDAP_CRED_LEVEL" | ${GREP} "proxy" > /dev/null 2>&1
then
if [ "$LDAP_AUTHMETHOD" != "none" ]; then
NEED_PROXY=1 # I assume integer test is faster?
get_proxyagent
get_proxy_pw
else
${ECHO} "WARNING: Since Authentication method is 'none'."
${ECHO} " Credential level will be set to 'anonymous'."
LDAP_CRED_LEVEL="anonymous"
fi
fi
# Display FULL debugging info.
disp_full_debug
# Final confirmation message. (ARE YOU SURE!)
${ECHO} " "
get_confirm_nodef "WARNING: About to start committing changes. (y=continue, n=EXIT)"
if [ $? -eq 0 ]; then
${ECHO} "Terminating setup without making changes at users request."
exit 1
fi
# Print newline
${ECHO} " "
}
#
# create_config_file(): Write config data to config file specified.
#
create_config_file()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In create_config_file()"
# If output file exists, delete it.
[ -f $OUTPUT_FILE ] && rm $OUTPUT_FILE
# Create output file.
cat > $OUTPUT_FILE <<EOF
#!/bin/sh
# $OUTPUT_FILE - This file contains configuration information for
# Native LDAP. Use the idsconfig tool to load it.
#
# WARNING: This file was generated by idsconfig, and is intended to
# be loaded by idsconfig as is. DO NOT EDIT THIS FILE!
#
IDS_SERVER="$IDS_SERVER"
IDS_PORT=$IDS_PORT
IDS_TIMELIMIT=$IDS_TIMELIMIT
IDS_SIZELIMIT=$IDS_SIZELIMIT
LDAP_ROOTDN="$LDAP_ROOTDN"
LDAP_ROOTPWD=$LDAP_ROOTPWD
LDAP_DOMAIN="$LDAP_DOMAIN"
LDAP_SUFFIX="$LDAP_SUFFIX"
# Internal program variables that need to be set.
NEED_PROXY=$NEED_PROXY
NEED_TIME=$NEED_TIME
NEED_SIZE=$NEED_SIZE
NEED_CRYPT=$NEED_CRYPT
# LDAP PROFILE related defaults
LDAP_PROFILE_NAME="$LDAP_PROFILE_NAME"
DEL_OLD_PROFILE=1
LDAP_BASEDN="$LDAP_BASEDN"
LDAP_SERVER_LIST="$LDAP_SERVER_LIST"
LDAP_AUTHMETHOD="$LDAP_AUTHMETHOD"
LDAP_FOLLOWREF=$LDAP_FOLLOWREF
LDAP_SEARCH_SCOPE="$LDAP_SEARCH_SCOPE"
NEED_SRVAUTH_PAM=$NEED_SRVAUTH_PAM
NEED_SRVAUTH_KEY=$NEED_SRVAUTH_KEY
NEED_SRVAUTH_CMD=$NEED_SRVAUTH_CMD
LDAP_SRV_AUTHMETHOD_PAM="$LDAP_SRV_AUTHMETHOD_PAM"
LDAP_SRV_AUTHMETHOD_KEY="$LDAP_SRV_AUTHMETHOD_KEY"
LDAP_SRV_AUTHMETHOD_CMD="$LDAP_SRV_AUTHMETHOD_CMD"
LDAP_SEARCH_TIME_LIMIT=$LDAP_SEARCH_TIME_LIMIT
LDAP_PREF_SRVLIST="$LDAP_PREF_SRVLIST"
LDAP_PROFILE_TTL=$LDAP_PROFILE_TTL
LDAP_CRED_LEVEL="$LDAP_CRED_LEVEL"
LDAP_BIND_LIMIT=$LDAP_BIND_LIMIT
# Proxy Agent
LDAP_PROXYAGENT="$LDAP_PROXYAGENT"
LDAP_PROXYAGENT_CRED=$LDAP_PROXYAGENT_CRED
# Export all the variables (just in case)
export IDS_HOME IDS_PORT LDAP_ROOTDN LDAP_ROOTPWD LDAP_SERVER_LIST LDAP_BASEDN
export LDAP_DOMAIN LDAP_SUFFIX LDAP_PROXYAGENT LDAP_PROXYAGENT_CRED
export NEED_PROXY
export LDAP_PROFILE_NAME LDAP_BASEDN LDAP_SERVER_LIST
export LDAP_AUTHMETHOD LDAP_FOLLOWREF LDAP_SEARCH_SCOPE LDAP_SEARCH_TIME_LIMIT
export LDAP_PREF_SRVLIST LDAP_PROFILE_TTL LDAP_CRED_LEVEL LDAP_BIND_LIMIT
export NEED_SRVAUTH_PAM NEED_SRVAUTH_KEY NEED_SRVAUTH_CMD
export LDAP_SRV_AUTHMETHOD_PAM LDAP_SRV_AUTHMETHOD_KEY LDAP_SRV_AUTHMETHOD_CMD
export LDAP_SERV_SRCH_DES SSD_FILE
# Service Search Descriptors start here if present:
EOF
# Add service search descriptors.
ssd_2_config "${OUTPUT_FILE}"
# Add the end of FILE tag.
${ECHO} "" >> ${OUTPUT_FILE}
${ECHO} "# End of $OUTPUT_FILE" >> ${OUTPUT_FILE}
}
#
# chk_vlv_indexes(): Do ldapsearch to see if server supports VLV.
#
chk_vlv_indexes()
{
# Do ldapsearch to see if server supports VLV.
${LDAPSEARCH} ${SERVER_ARGS} -b "" -s base "objectclass=*" > ${TMPDIR}/checkVLV 2>&1
eval "${GREP} 2.16.840.1.113730.3.4.9 ${TMPDIR}/checkVLV ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} "ERROR: VLV is not supported on LDAP server!"
cleanup
exit 1
fi
[ $DEBUG -eq 1 ] && ${ECHO} " VLV controls found on LDAP server."
}
#
# get_backend(): this function gets the relevant backend
# (database) for LDAP_BASED.
# Description: set IDS_DATABASE; exit on failure.
# Prerequisite: LDAP_BASEDN and LDAP_SUFFIX are
# valid.
#
# backend is retrieved from suffixes and subsuffixes
# defined under "cn=mapping tree,cn=config". The
# nsslapd-state attribute of these suffixes entries
# is filled with either Backend, Disabled or referrals
# related values. We only want those that have a true
# backend database to select the relevant backend.
#
get_backend()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In get_backend()"
cur_suffix=${LDAP_BASEDN}
prev_suffix=
IDS_DATABASE=
while [ "${cur_suffix}" != "${prev_suffix}" ]
do
[ $DEBUG -eq 1 ] && ${ECHO} "testing LDAP suffix: ${cur_suffix}"
eval "${LDAPSEARCH} ${LDAP_ARGS} " \
"-b \"cn=\\\"${cur_suffix}\\\",cn=mapping tree,cn=config\" " \
"-s base nsslapd-state=Backend nsslapd-backend 2>&1 " \
"| ${GREP} 'nsslapd-backend=' " \
"> ${TMPDIR}/ids_database_name 2>&1"
NUM_DBS=`wc -l ${TMPDIR}/ids_database_name | awk '{print $1}'`
case ${NUM_DBS} in
0) # not a suffix, or suffix not activated; try next
prev_suffix=${cur_suffix}
cur_suffix=`${ECHO} ${cur_suffix} | cut -f2- -d','`
;;
1) # suffix found; get database name
IDS_DATABASE=`cat ${TMPDIR}/ids_database_name | cut -d= -f2`
;;
*) # can not handle more than one database per suffix
${ECHO} "ERROR: More than one database is configured "
${ECHO} " for $LDAP_SUFFIX!"
${ECHO} " $PROG can not configure suffixes where "
${ECHO} " more than one database is used for one suffix."
cleanup
exit 1
;;
esac
if [ -n "${IDS_DATABASE}" ]; then
break
fi
done
if [ -z "${IDS_DATABASE}" ]; then
# should not happen, since LDAP_BASEDN is supposed to be valid
${ECHO} "Could not find a valid backend for ${LDAP_BASEDN}."
${ECHO} "Exiting."
cleanup
exit 1
fi
[ $DEBUG -eq 1 ] && ${ECHO} "IDS_DATABASE: ${IDS_DATABASE}"
}
#
# validate_suffix(): This function validates ${LDAP_SUFFIX}
# THIS FUNCTION IS FOR THE LOAD CONFIG FILE OPTION.
#
validate_suffix()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In validate_suffix()"
# Check LDAP_SUFFIX is not null
if [ -z "${LDAP_SUFFIX}" ]; then
${ECHO} "Invalid suffix (null suffix)"
cleanup
exit 1
fi
# Check LDAP_SUFFIX does exist
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"${LDAP_SUFFIX}\" -s base \"objectclass=*\" > ${TMPDIR}/checkSuffix 2>&1"
if [ $? -ne 0 ]; then
${ECHO} "Invalid suffix ${LDAP_SUFFIX}"
cleanup
exit 1
fi
# Check LDAP_SUFFIX and LDAP_BASEDN are consistent
# Convert to lower case for basename.
format_string "${LDAP_BASEDN}"
LOWER_BASEDN="${FMT_STR}"
format_string "${LDAP_SUFFIX}"
LOWER_SUFFIX="${FMT_STR}"
[ $DEBUG -eq 1 ] && ${ECHO} "LOWER_BASEDN: ${LOWER_BASEDN}"
[ $DEBUG -eq 1 ] && ${ECHO} "LOWER_SUFFIX: ${LOWER_SUFFIX}"
if [ "${LOWER_BASEDN}" != "${LOWER_SUFFIX}" ]; then
sub_basedn=`basename "${LOWER_BASEDN}" "${LOWER_SUFFIX}"`
if [ "$sub_basedn" = "${LOWER_BASEDN}" ]; then
${ECHO} "Invalid suffix ${LOWER_SUFFIX}"
${ECHO} "for Base DN ${LOWER_BASEDN}"
cleanup
exit 1
fi
fi
}
#
# validate_info(): This function validates the basic info collected
# So that some problems are caught right away.
# THIS FUNCTION IS FOR THE LOAD CONFIG FILE OPTION.
#
validate_info()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In validate_info()"
# Set SERVER_ARGS, AUTH_ARGS, and LDAP_ARGS for the config file.
SERVER_ARGS="-h ${IDS_SERVER} -p ${IDS_PORT}"
AUTH_ARGS="-D \"${LDAP_ROOTDN}\" -j ${LDAP_ROOTPWF}"
LDAP_ARGS="${SERVER_ARGS} ${AUTH_ARGS}"
export SERVER_ARGS
# Check the Root DN and Root DN passwd.
# Use eval instead of $EVAL because not part of setup. (validate)
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"\" -s base \"objectclass=*\" > ${TMPDIR}/checkDN 2>&1"
if [ $? -ne 0 ]; then
eval "${GREP} credential ${TMPDIR}/checkDN ${VERB}"
if [ $? -eq 0 ]; then
${ECHO} "ERROR: Root DN passwd is invalid."
else
${ECHO} "ERROR2: Invalid Root DN <${LDAP_ROOTDN}>."
fi
cleanup
exit 1
fi
[ $DEBUG -eq 1 ] && ${ECHO} " RootDN ... OK"
[ $DEBUG -eq 1 ] && ${ECHO} " RootDN passwd ... OK"
# Check if the server supports the VLV.
chk_vlv_indexes
[ $DEBUG -eq 1 ] && ${ECHO} " VLV indexes ... OK"
# Check LDAP suffix
validate_suffix
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP suffix ... OK"
# Get backend
get_backend
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP backend ... OK"
}
#
# format_string(): take a string as argument and set FMT_STR
# to be the same string formatted as follow:
# - only lower case characters
# - no unnecessary spaces around , and =
#
format_string()
{
FMT_STR=`${ECHO} "$1" | tr '[A-Z]' '[a-z]' |
sed -e 's/[ ]*,[ ]*/,/g' -e 's/[ ]*=[ ]*/=/g'`
}
#
# check_basedn_suffix(): check that there is an existing
# valid suffix to hold current base DN
# return:
# 0: valid suffix found
# 1: no valid suffix found, or user gives up
# 2: give it another try
#
check_basedn_suffix()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In check_basedn_suffix()"
# find out existing suffixes
discover_serv_suffix
if [ $? -ne 0 ]; then
${ECHO} "No suffixes found. Exiting."
return 1
fi
${ECHO} " Validating LDAP Base DN and Suffix ..."
# check that LDAP Base DN might be added
cur_ldap_entry=${LDAP_BASEDN}
prev_ldap_entry=
while [ "${cur_ldap_entry}" != "${prev_ldap_entry}" ]
do
[ $DEBUG -eq 1 ] && ${ECHO} "testing LDAP entry: ${cur_ldap_entry}"
${LDAPSEARCH} ${SERVER_ARGS} -b "${cur_ldap_entry}" \
-s one "objectclass=*" > /dev/null 2>&1
if [ $? -eq 0 ]; then
break
else
prev_ldap_entry=${cur_ldap_entry}
cur_ldap_entry=`${ECHO} ${cur_ldap_entry} | cut -f2- -d','`
fi
done
if [ "${cur_ldap_entry}" = "${prev_ldap_entry}" ]; then
[ $DEBUG -eq 1 ] && ${ECHO} "No valid LDAP suffix found"
display_msg ldap_suffix_list
get_confirm "Do you want to continue (h=help):" \
"y" ldap_suffix_list_help
if [ $? -eq 0 ]; then
return 1 # users gives up
else
return 2 # continue
fi
else
[ $DEBUG -eq 1 ] && ${ECHO} "found valid LDAP entry: ${cur_ldap_entry}"
# Now looking for relevant suffix for this entry.
# LDAP_SUFFIX will then be used to add necessary
# base objects. See add_base_objects().
format_string "${cur_ldap_entry}"
lower_entry="${FMT_STR}"
[ $DEBUG -eq 1 ] && ${ECHO} "final suffix list: ${LDAP_SUFFIX_LIST}"
oIFS=$IFS
[ $DEBUG -eq 1 ] && ${ECHO} "setting IFS to new line"
IFS='
'
for suff in ${LDAP_SUFFIX_LIST}
do
[ $DEBUG -eq 1 ] && ${ECHO} "testing suffix: ${suff}"
format_string "${suff}"
lower_suff="${FMT_STR}"
if [ "${lower_entry}" = "${lower_suff}" ]; then
LDAP_SUFFIX="${suff}"
break
else
dcstmp=`basename "${lower_entry}" "${lower_suff}"`
if [ "${dcstmp}" = "${lower_entry}" ]; then
# invalid suffix, try next one
continue
else
# valid suffix found
LDAP_SUFFIX="${suff}"
break
fi
fi
done
[ $DEBUG -eq 1 ] && ${ECHO} "setting IFS to original value"
IFS=$oIFS
[ $DEBUG -eq 1 ] && ${ECHO} "LDAP_SUFFIX: ${LDAP_SUFFIX}"
if [ -z "${LDAP_SUFFIX}" ]; then
# should not happen, since we found the entry
${ECHO} "Could not find a valid suffix for ${LDAP_BASEDN}."
${ECHO} "Exiting."
return 1
fi
# Getting relevant database (backend)
# IDS_DATABASE will then be used to create indexes.
get_backend
return 0
fi
}
#
# discover_serv_suffix(): This function queries the server to find
# suffixes available
# return: 0: OK, suffix found
# 1: suffix not determined
discover_serv_suffix()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In discover_serv_suffix()"
# Search the server for the TOP of the TREE.
${LDAPSEARCH} ${SERVER_ARGS} -b "" -s base "objectclass=*" > ${TMPDIR}/checkTOP 2>&1
${GREP} -i namingcontexts ${TMPDIR}/checkTOP | \
${GREP} -i -v NetscapeRoot > ${TMPDIR}/treeTOP
NUM_TOP=`wc -l ${TMPDIR}/treeTOP | awk '{print $1}'`
case $NUM_TOP in
0)
${ECHO} "ERROR: No suffix found in LDAP tree"
return 1
;;
*) # build the list of suffixes; take out 'namingContexts=' in
# each line of ${TMPDIR}/treeTOP
LDAP_SUFFIX_LIST=`cat ${TMPDIR}/treeTOP |
awk '{ printf("%s\n",substr($0,16,length-15)) }'`
[ $DEBUG -eq 1 ] && ${ECHO} "final list: ${LDAP_SUFFIX_LIST}"
;;
esac
[ $DEBUG -eq 1 ] && ${ECHO} " LDAP_SUFFIX_LIST = $LDAP_SUFFIX_LIST"
return 0
}
#
# modify_cn(): Change the cn from MUST to MAY in ipNetwork.
#
modify_cn()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In modify_cn()"
( cat <<EOF
dn: cn=schema
changetype: modify
add: objectclasses
objectclasses: ( 1.3.6.1.1.1.2.7 NAME 'ipNetwork' DESC 'Standard LDAP objectclass' SUP top STRUCTURAL MUST ( ipNetworkNumber ) MAY ( ipNetmaskNumber $ manager $ cn $ l $ description ) X-ORIGIN 'RFC 2307' ))
EOF
) > ${TMPDIR}/ipNetwork_cn
# Modify the cn for ipNetwork.
${EVAL} "${LDAPMODIFY} ${LDAP_ARGS} -f ${TMPDIR}/ipNetwork_cn ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: update of cn for ipNetwork failed!"
cleanup
exit 1
fi
}
# modify_timelimit(): Modify timelimit to user value.
modify_timelimit()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In modify_timelimit()"
# Here doc to modify timelimit.
( cat <<EOF
dn: cn=config
changetype: modify
replace: nsslapd-timelimit
nsslapd-timelimit: ${IDS_TIMELIMIT}
EOF
) > ${TMPDIR}/ids_timelimit
# Add the entry.
${EVAL} "${LDAPMODIFY} ${LDAP_ARGS} -f ${TMPDIR}/ids_timelimit ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: update of nsslapd-timelimit failed!"
cleanup
exit 1
fi
# Display messages for modifications made in patch.
${ECHO} " ${STEP}. Changed timelimit to ${IDS_TIMELIMIT} in cn=config."
STEP=`expr $STEP + 1`
}
# modify_sizelimit(): Modify sizelimit to user value.
modify_sizelimit()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In modify_sizelimit()"
# Here doc to modify sizelimit.
( cat <<EOF
dn: cn=config
changetype: modify
replace: nsslapd-sizelimit
nsslapd-sizelimit: ${IDS_SIZELIMIT}
EOF
) > ${TMPDIR}/ids_sizelimit
# Add the entry.
${EVAL} "${LDAPMODIFY} ${LDAP_ARGS} -f ${TMPDIR}/ids_sizelimit ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: update of nsslapd-sizelimit failed!"
cleanup
exit 1
fi
# Display messages for modifications made in patch.
${ECHO} " ${STEP}. Changed sizelimit to ${IDS_SIZELIMIT} in cn=config."
STEP=`expr $STEP + 1`
}
# modify_pwd_crypt(): Modify the passwd storage scheme to support CRYPT.
modify_pwd_crypt()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In modify_pwd_crypt()"
# Here doc to modify passwordstoragescheme.
# IDS 5.2 moved passwordchangesceme off to a new data structure.
if [ $IDS_MAJVER -le 5 ] && [ $IDS_MINVER -le 1 ]; then
( cat <<EOF
dn: cn=config
changetype: modify
replace: passwordstoragescheme
passwordstoragescheme: crypt
EOF
) > ${TMPDIR}/ids_crypt
else
( cat <<EOF
dn: cn=Password Policy,cn=config
changetype: modify
replace: passwordstoragescheme
passwordstoragescheme: crypt
EOF
) > ${TMPDIR}/ids_crypt
fi
# Add the entry.
${EVAL} "${LDAPMODIFY} ${LDAP_ARGS} -f ${TMPDIR}/ids_crypt ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: update of passwordstoragescheme failed!"
cleanup
exit 1
fi
# Display messages for modifications made in patch.
${ECHO} " ${STEP}. Changed passwordstoragescheme to \"crypt\" in cn=config."
STEP=`expr $STEP + 1`
}
#
# add_eq_indexes(): Add indexes to improve search performance.
#
add_eq_indexes()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In add_eq_indexes()"
# Set eq indexes to add.
_INDEXES="uidNumber ipNetworkNumber gidnumber oncrpcnumber automountKey"
# Set _EXT to use as shortcut.
_EXT="cn=index,cn=${IDS_DATABASE},cn=ldbm database,cn=plugins,cn=config"
# Display message to id current step.
${ECHO} " ${STEP}. Processing eq,pres indexes:"
STEP=`expr $STEP + 1`
# For loop to create indexes.
for i in ${_INDEXES}; do
[ $DEBUG -eq 1 ] && ${ECHO} " Adding index for ${i}"
# Check if entry exists first, if so, skip to next.
${LDAPSEARCH} ${SERVER_ARGS} -b "cn=${i},${_EXT}" -s base "objectclass=*" > /dev/null 2>&1
if [ $? -eq 0 ]; then
# Display index skipped.
${ECHO} " ${i} (eq,pres) skipped already exists"
continue
fi
# Here doc to create LDIF.
( cat <<EOF
dn: cn=${i},${_EXT}
objectClass: top
objectClass: nsIndex
cn: ${i}
nsSystemIndex: false
nsIndexType: pres
nsIndexType: eq
EOF
) > ${TMPDIR}/index_${i}
# Add the index.
${EVAL} "${LDAPMODIFY} -a ${LDAP_ARGS} -f ${TMPDIR}/index_${i} ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Adding EQ,PRES index for ${i} failed!"
cleanup
exit 1
fi
# Build date for task name.
_YR=`date '+%y'`
_MN=`date '+%m'`
_DY=`date '+%d'`
_H=`date '+%H'`
_M=`date '+%M'`
_S=`date '+%S'`
# Build task name
TASKNAME="${i}_${_YR}_${_MN}_${_DY}_${_H}_${_M}_${_S}"
# Build the task entry to add.
( cat <<EOF
dn: cn=${TASKNAME}, cn=index, cn=tasks, cn=config
changetype: add
objectclass: top
objectclass: extensibleObject
cn: ${TASKNAME}
nsInstance: ${IDS_DATABASE}
nsIndexAttribute: ${i}
EOF
) > ${TMPDIR}/task_${i}
# Add the task.
${EVAL} "${LDAPMODIFY} -a ${LDAP_ARGS} -f ${TMPDIR}/task_${i} ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Adding task for ${i} failed!"
cleanup
exit 1
fi
# Wait for task to finish, display current status.
while :
do
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=index, cn=tasks, cn=config\" -s sub \"objectclass=*\" > ${TMPDIR}/istask_${i} 2>&1"
${GREP} ${TASKNAME} ${TMPDIR}/istask_${i} > /dev/null 2>&1
if [ $? -ne 0 ]; then
break
fi
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=index,cn=tasks,cn=config\" -s one \"objectclass=*\" nstaskstatus | ${GREP} -i nstaskstatus | cut -d\":\" -f2 > ${TMPDIR}/wait_task_${i}"
TASK_STATUS=`head -1 ${TMPDIR}/wait_task_${i}`
${ECHO} " ${i} (eq,pres) $TASK_STATUS \r\c"
${ECHO} "$TASK_STATUS" | ${GREP} "Finished" > /dev/null 2>&1
if [ $? -eq 0 ]; then
break
fi
sleep 2
done
# Print newline because of \c.
${ECHO} " "
done
}
#
# add_sub_indexes(): Add indexes to improve search performance.
#
add_sub_indexes()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In add_sub_indexes()"
# Set eq indexes to add.
_INDEXES="ipHostNumber membernisnetgroup nisnetgrouptriple"
# Set _EXT to use as shortcut.
_EXT="cn=index,cn=${IDS_DATABASE},cn=ldbm database,cn=plugins,cn=config"
# Display message to id current step.
${ECHO} " ${STEP}. Processing eq,pres,sub indexes:"
STEP=`expr $STEP + 1`
# For loop to create indexes.
for i in ${_INDEXES}; do
[ $DEBUG -eq 1 ] && ${ECHO} " Adding index for ${i}"
# Check if entry exists first, if so, skip to next.
${LDAPSEARCH} ${SERVER_ARGS} -b "cn=${i},${_EXT}" -s base "objectclass=*" > /dev/null 2>&1
if [ $? -eq 0 ]; then
# Display index skipped.
${ECHO} " ${i} (eq,pres,sub) skipped already exists"
continue
fi
# Here doc to create LDIF.
( cat <<EOF
dn: cn=${i},${_EXT}
objectClass: top
objectClass: nsIndex
cn: ${i}
nsSystemIndex: false
nsIndexType: pres
nsIndexType: eq
nsIndexType: sub
EOF
) > ${TMPDIR}/index_${i}
# Add the index.
${EVAL} "${LDAPMODIFY} -a ${LDAP_ARGS} -f ${TMPDIR}/index_${i} ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Adding EQ,PRES,SUB index for ${i} failed!"
cleanup
exit 1
fi
# Build date for task name.
_YR=`date '+%y'`
_MN=`date '+%m'`
_DY=`date '+%d'`
_H=`date '+%H'`
_M=`date '+%M'`
_S=`date '+%S'`
# Build task name
TASKNAME="${i}_${_YR}_${_MN}_${_DY}_${_H}_${_M}_${_S}"
# Build the task entry to add.
( cat <<EOF
dn: cn=${TASKNAME}, cn=index, cn=tasks, cn=config
changetype: add
objectclass: top
objectclass: extensibleObject
cn: ${TASKNAME}
nsInstance: ${IDS_DATABASE}
nsIndexAttribute: ${i}
EOF
) > ${TMPDIR}/task_${i}
# Add the task.
${EVAL} "${LDAPMODIFY} -a ${LDAP_ARGS} -f ${TMPDIR}/task_${i} ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Adding task for ${i} failed!"
cleanup
exit 1
fi
# Wait for task to finish, display current status.
while :
do
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=index, cn=tasks, cn=config\" -s sub \"objectclass=*\" > ${TMPDIR}/istask_${i} 2>&1"
${GREP} ${TASKNAME} ${TMPDIR}/istask_${i} > /dev/null 2>&1
if [ $? -ne 0 ]; then
break
fi
eval "${LDAPSEARCH} ${LDAP_ARGS} -b \"cn=index,cn=tasks,cn=config\" -s one \"objectclass=*\" nstaskstatus | ${GREP} -i nstaskstatus | cut -d\":\" -f2 > ${TMPDIR}/wait_task_${i}"
TASK_STATUS=`head -1 ${TMPDIR}/wait_task_${i}`
${ECHO} " ${i} (eq,pres,sub) $TASK_STATUS \r\c"
${ECHO} "$TASK_STATUS" | ${GREP} "Finished" > /dev/null 2>&1
if [ $? -eq 0 ]; then
break
fi
sleep 2
done
# Print newline because of \c.
${ECHO} " "
done
}
#
# add_vlv_indexes(): Add VLV indexes to improve search performance.
#
add_vlv_indexes()
{
[ $DEBUG -eq 1 ] && ${ECHO} "In add_vlv_indexes()"
# Set eq indexes to add.
# Note semi colon separators because some filters contain colons
_INDEX1="${LDAP_DOMAIN}.getgrent;${LDAP_DOMAIN}_group_vlv_index;ou=group;objectClass=posixGroup"
_INDEX2="${LDAP_DOMAIN}.gethostent;${LDAP_DOMAIN}_hosts_vlv_index;ou=hosts;objectClass=ipHost"
_INDEX3="${LDAP_DOMAIN}.getnetent;${LDAP_DOMAIN}_networks_vlv_index;ou=networks;objectClass=ipNetwork"
_INDEX4="${LDAP_DOMAIN}.getpwent;${LDAP_DOMAIN}_passwd_vlv_index;ou=people;objectClass=posixAccount"
_INDEX5="${LDAP_DOMAIN}.getrpcent;${LDAP_DOMAIN}_rpc_vlv_index;ou=rpc;objectClass=oncRpc"
_INDEX6="${LDAP_DOMAIN}.getspent;${LDAP_DOMAIN}_shadow_vlv_index;ou=people;objectClass=shadowAccount"
# Indexes added during NIS to LDAP transition
_INDEX7="${LDAP_DOMAIN}.getauhoent;${LDAP_DOMAIN}_auho_vlv_index;automountmapname=auto_home;objectClass=automount"
_INDEX8="${LDAP_DOMAIN}.getsoluent;${LDAP_DOMAIN}_solu_vlv_index;ou=people;objectClass=SolarisUserAttr"
_INDEX9="${LDAP_DOMAIN}.getauduent;${LDAP_DOMAIN}_audu_vlv_index;ou=people;objectClass=SolarisAuditUser"
_INDEX10="${LDAP_DOMAIN}.getauthent;${LDAP_DOMAIN}_auth_vlv_index;ou=SolarisAuthAttr;objectClass=SolarisAuthAttr"
_INDEX11="${LDAP_DOMAIN}.getexecent;${LDAP_DOMAIN}_exec_vlv_index;ou=SolarisProfAttr;&(objectClass=SolarisExecAttr)(SolarisKernelSecurityPolicy=*)"
_INDEX12="${LDAP_DOMAIN}.getprofent;${LDAP_DOMAIN}_prof_vlv_index;ou=SolarisProfAttr;&(objectClass=SolarisProfAttr)(SolarisAttrLongDesc=*)"
_INDEX13="${LDAP_DOMAIN}.getmailent;${LDAP_DOMAIN}_mail_vlv_index;ou=aliases;objectClass=mailGroup"
_INDEX14="${LDAP_DOMAIN}.getbootent;${LDAP_DOMAIN}__boot_vlv_index;ou=ethers;&(objectClass=bootableDevice)(bootParameter=*)"
_INDEX15="${LDAP_DOMAIN}.getethent;${LDAP_DOMAIN}_ethers_vlv_index;ou=ethers;&(objectClass=ieee802Device)(macAddress=*)"
_INDEX16="${LDAP_DOMAIN}.getngrpent;${LDAP_DOMAIN}_netgroup_vlv_index;ou=netgroup;objectClass=nisNetgroup"
_INDEX17="${LDAP_DOMAIN}.getipnent;${LDAP_DOMAIN}_ipn_vlv_index;ou=networks;&(objectClass=ipNetwork)(cn=*)"
_INDEX18="${LDAP_DOMAIN}.getmaskent;${LDAP_DOMAIN}_mask_vlv_index;ou=networks;&(objectClass=ipNetwork)(ipNetmaskNumber=*)"
_INDEX19="${LDAP_DOMAIN}.getprent;${LDAP_DOMAIN}_pr_vlv_index;ou=printers;objectClass=printerService"
_INDEX20="${LDAP_DOMAIN}.getip4ent;${LDAP_DOMAIN}_ip4_vlv_index;ou=hosts;&(objectClass=ipHost)(ipHostNumber=*.*)"
_INDEX21="${LDAP_DOMAIN}.getip6ent;${LDAP_DOMAIN}_ip6_vlv_index;ou=hosts;&(objectClass=ipHost)(ipHostNumber=*:*)"
_INDEXES="$_INDEX1 $_INDEX2 $_INDEX3 $_INDEX4 $_INDEX5 $_INDEX6 $_INDEX7 $_INDEX8 $_INDEX9 $_INDEX10 $_INDEX11 $_INDEX12 $_INDEX13 $_INDEX14 $_INDEX15 $_INDEX16 $_INDEX17 $_INDEX18 $_INDEX19 $_INDEX20 $_INDEX21 "
# Set _EXT to use as shortcut.
_EXT="cn=${IDS_DATABASE},cn=ldbm database,cn=plugins,cn=config"
# Display message to id current step.
${ECHO} " ${STEP}. Processing VLV indexes:"
STEP=`expr $STEP + 1`
# Reset temp file for vlvindex commands.
[ -f ${TMPDIR}/vlvindex_list ] && rm ${TMPDIR}/vlvindex_list
touch ${TMPDIR}/vlvindex_list
# Get the instance name from iDS server.
_INSTANCE="<server-instance>" # Default to old output.
eval "${LDAPSEARCH} -v ${LDAP_ARGS} -b \"cn=config\" -s base \"objectclass=*\" nsslapd-instancedir | ${GREP} 'nsslapd-instancedir=' | cut -d'=' -f2- > ${TMPDIR}/instance_name 2>&1"
${GREP} "slapd-" ${TMPDIR}/instance_name > /dev/null 2>&1 # Check if seems right?
if [ $? -eq 0 ]; then # If success, grab name after "slapd-".
_INST_DIR=`cat ${TMPDIR}/instance_name`
_INSTANCE=`basename "${_INST_DIR}" | cut -d'-' -f2-`
fi
# For loop to create indexes.
for p in ${_INDEXES}; do
[ $DEBUG -eq 1 ] && ${ECHO} " Adding index for ${i}"
# Break p (pair) into i and j parts.
i=`${ECHO} $p | cut -d';' -f1`
j=`${ECHO} $p | cut -d';' -f2`
k=`${ECHO} $p | cut -d';' -f3`
m=`${ECHO} $p | cut -d';' -f4`
# Set _jEXT to use as shortcut.
_jEXT="cn=${j},${_EXT}"
# Check if entry exists first, if so, skip to next.
${LDAPSEARCH} ${SERVER_ARGS} -b "cn=${i},${_jEXT}" -s base "objectclass=*" > /dev/null 2>&1
if [ $? -eq 0 ]; then
# Display index skipped.
${ECHO} " ${i} vlv_index skipped already exists"
continue
fi
# Compute the VLV Scope from the LDAP_SEARCH_SCOPE.
# NOTE: A value of "base (0)" does not make sense.
case "$LDAP_SEARCH_SCOPE" in
sub) VLV_SCOPE="2" ;;
*) VLV_SCOPE="1" ;;
esac
# Here doc to create LDIF.
( cat <<EOF
dn: ${_jEXT}
objectClass: top
objectClass: vlvSearch
cn: ${j}
vlvbase: ${k},${LDAP_BASEDN}
vlvscope: ${VLV_SCOPE}
vlvfilter: (${m})
aci: (target="ldap:///${_jEXT}")(targetattr="*")(version 3.0; acl "Config";allow(read,search,compare)userdn="ldap:///anyone";)
dn: cn=${i},${_jEXT}
cn: ${i}
vlvSort: cn uid
objectclass: top
objectclass: vlvIndex
EOF
) > ${TMPDIR}/vlv_index_${i}
# Add the index.
${EVAL} "${LDAPMODIFY} -a ${LDAP_ARGS} -f ${TMPDIR}/vlv_index_${i} ${VERB}"
if [ $? -ne 0 ]; then
${ECHO} " ERROR: Adding VLV index for ${i} failed!"
cleanup
exit 1
fi
# Print message that index was created.
${ECHO} " ${i} vlv_index Entry created"
# Add command to list of vlvindex commands to run.
${ECHO} " directoryserver -s ${_INSTANCE} vlvindex -n ${IDS_DATABASE} -T ${i}" >> ${TMPDIR}/vlvindex_list
done
}
#
# display_vlv_cmds(): Display VLV index commands to run on server.
#