blob: d69d3f84a57b1231db1e32c0bbbaadeff7256d93 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Brad Topolf127e2f2013-01-22 10:17:50 -06003# lib/ldap
4# Functions to control the installation and configuration of **ldap**
5
Dean Troyercc6b4432013-04-08 15:38:03 -05006# ``lib/keystone`` calls the entry points in this order:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - install_ldap()
Brad Topolf127e2f2013-01-22 10:17:50 -06009
10# Save trace setting
11XTRACE=$(set +o | grep xtrace)
12set +o xtrace
13
Dean Troyerb9e25132013-10-01 14:45:04 -050014
15LDAP_DOMAIN=${LDAP_DOMAIN:-openstack.org}
16# Make an array of domain components
17DC=(${LDAP_DOMAIN/./ })
18
19# Leftmost domain component used in top-level entry
20LDAP_BASE_DC=${DC[0]}
21
22# Build the base DN
23dn=""
24for dc in ${DC[*]}; do
25 dn="$dn,dc=$dc"
26done
27LDAP_BASE_DN=${dn#,}
28
29LDAP_MANAGER_DN="${LDAP_MANAGER_DN:-cn=Manager,${LDAP_BASE_DN}}"
30LDAP_URL=${LDAP_URL:-ldap://localhost}
31
Ralf Haferkamp704106a2013-09-12 14:24:47 +020032LDAP_SERVICE_NAME=slapd
Dean Troyercc6b4432013-04-08 15:38:03 -050033
Dean Troyerb9e25132013-10-01 14:45:04 -050034if is_ubuntu; then
35 LDAP_OLCDB_NUMBER=1
36 LDAP_ROOTPW_COMMAND=replace
37elif is_fedora; then
38 LDAP_OLCDB_NUMBER=2
39 LDAP_ROOTPW_COMMAND=add
40elif is_suse; then
41 # SUSE has slappasswd in /usr/sbin/
42 PATH=$PATH:/usr/sbin/
43 LDAP_OLCDB_NUMBER=1
44 LDAP_ROOTPW_COMMAND=add
45 LDAP_SERVICE_NAME=ldap
46fi
47
48
Dean Troyercc6b4432013-04-08 15:38:03 -050049# Functions
50# ---------
51
Dean Troyerb9e25132013-10-01 14:45:04 -050052# Perform common variable substitutions on the data files
53# _ldap_varsubst file
Ian Wienandaee18c72014-02-21 15:35:08 +110054function _ldap_varsubst {
Dean Troyerb9e25132013-10-01 14:45:04 -050055 local infile=$1
Julie Pichona3d60c82014-11-21 14:57:16 +000056 local slappass=$2
Dean Troyerb9e25132013-10-01 14:45:04 -050057 sed -e "
58 s|\${LDAP_OLCDB_NUMBER}|$LDAP_OLCDB_NUMBER|
Julie Pichona3d60c82014-11-21 14:57:16 +000059 s|\${SLAPPASS}|$slappass|
Dean Troyerb9e25132013-10-01 14:45:04 -050060 s|\${LDAP_ROOTPW_COMMAND}|$LDAP_ROOTPW_COMMAND|
61 s|\${BASE_DC}|$LDAP_BASE_DC|
62 s|\${BASE_DN}|$LDAP_BASE_DN|
63 s|\${MANAGER_DN}|$LDAP_MANAGER_DN|
64 " $infile
65}
66
67# clean_ldap() - Remove ldap server
Ian Wienandaee18c72014-02-21 15:35:08 +110068function cleanup_ldap {
Dean Troyerb9e25132013-10-01 14:45:04 -050069 uninstall_package $(get_packages ldap)
70 if is_ubuntu; then
71 uninstall_package slapd ldap-utils libslp1
72 sudo rm -rf /etc/ldap/ldap.conf /var/lib/ldap
73 elif is_fedora; then
74 sudo rm -rf /etc/openldap /var/lib/ldap
75 elif is_suse; then
76 sudo rm -rf /var/lib/ldap
77 fi
78}
79
80# init_ldap
81# init_ldap() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +110082function init_ldap {
Dean Troyerb9e25132013-10-01 14:45:04 -050083 local keystone_ldif
84
Dean Troyeref66a772014-07-25 14:45:34 -050085 local tmp_ldap_dir=$(mktemp -d -t ldap.$$.XXXXXXXXXX)
Dean Troyerb9e25132013-10-01 14:45:04 -050086
87 # Remove data but not schemas
88 clear_ldap_state
89
90 # Add our top level ldap nodes
91 if ldapsearch -x -w $LDAP_PASSWORD -D "$LDAP_MANAGER_DN" -H $LDAP_URL -b "$LDAP_BASE_DN" | grep -q "Success"; then
92 printf "LDAP already configured for $LDAP_BASE_DC\n"
93 else
94 printf "Configuring LDAP for $LDAP_BASE_DC\n"
95 # If BASE_DN is changed, the user may override the default file
96 if [[ -r $FILES/ldap/${LDAP_BASE_DC}.ldif.in ]]; then
Dean Troyeref66a772014-07-25 14:45:34 -050097 local keystone_ldif=${LDAP_BASE_DC}.ldif
Dean Troyerb9e25132013-10-01 14:45:04 -050098 else
Dean Troyeref66a772014-07-25 14:45:34 -050099 local keystone_ldif=keystone.ldif
Dean Troyerb9e25132013-10-01 14:45:04 -0500100 fi
Dean Troyeref66a772014-07-25 14:45:34 -0500101 _ldap_varsubst $FILES/ldap/${keystone_ldif}.in >$tmp_ldap_dir/${keystone_ldif}
102 if [[ -r $tmp_ldap_dir/${keystone_ldif} ]]; then
103 ldapadd -x -w $LDAP_PASSWORD -D "$LDAP_MANAGER_DN" -H $LDAP_URL -c -f $tmp_ldap_dir/${keystone_ldif}
Dean Troyerb9e25132013-10-01 14:45:04 -0500104 fi
105 fi
106
Dean Troyeref66a772014-07-25 14:45:34 -0500107 rm -rf $tmp_ldap_dir
Dean Troyerb9e25132013-10-01 14:45:04 -0500108}
109
Brad Topolf127e2f2013-01-22 10:17:50 -0600110# install_ldap
111# install_ldap() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100112function install_ldap {
Brad Topolf127e2f2013-01-22 10:17:50 -0600113 echo "Installing LDAP inside function"
Brad Topolf127e2f2013-01-22 10:17:50 -0600114 echo "os_VENDOR is $os_VENDOR"
Dean Troyerb9e25132013-10-01 14:45:04 -0500115
Dean Troyeref66a772014-07-25 14:45:34 -0500116 local tmp_ldap_dir=$(mktemp -d -t ldap.$$.XXXXXXXXXX)
Dean Troyerb9e25132013-10-01 14:45:04 -0500117
118 printf "installing OpenLDAP"
Brad Topolf127e2f2013-01-22 10:17:50 -0600119 if is_ubuntu; then
Dean Troyerb9e25132013-10-01 14:45:04 -0500120 # Ubuntu automatically starts LDAP so no need to call start_ldap()
121 :
Ralf Haferkamp704106a2013-09-12 14:24:47 +0200122 elif is_fedora; then
Brad Topolf127e2f2013-01-22 10:17:50 -0600123 start_ldap
Ralf Haferkamp704106a2013-09-12 14:24:47 +0200124 elif is_suse; then
Dean Troyeref66a772014-07-25 14:45:34 -0500125 _ldap_varsubst $FILES/ldap/suse-base-config.ldif.in >$tmp_ldap_dir/suse-base-config.ldif
126 sudo slapadd -F /etc/openldap/slapd.d/ -bcn=config -l $tmp_ldap_dir/suse-base-config.ldif
Ralf Haferkamp704106a2013-09-12 14:24:47 +0200127 sudo sed -i '/^OPENLDAP_START_LDAPI=/s/"no"/"yes"/g' /etc/sysconfig/openldap
128 start_ldap
Brad Topolf127e2f2013-01-22 10:17:50 -0600129 fi
130
Dean Troyerb9e25132013-10-01 14:45:04 -0500131 echo "LDAP_PASSWORD is $LDAP_PASSWORD"
Dean Troyeref66a772014-07-25 14:45:34 -0500132 local slappass=$(slappasswd -s $LDAP_PASSWORD)
133 printf "LDAP secret is $slappass\n"
Brad Topolf127e2f2013-01-22 10:17:50 -0600134
Dean Troyerb9e25132013-10-01 14:45:04 -0500135 # Create manager.ldif and add to olcdb
Julie Pichona3d60c82014-11-21 14:57:16 +0000136 _ldap_varsubst $FILES/ldap/manager.ldif.in $slappass >$tmp_ldap_dir/manager.ldif
Dean Troyeref66a772014-07-25 14:45:34 -0500137 sudo ldapmodify -Y EXTERNAL -H ldapi:/// -f $tmp_ldap_dir/manager.ldif
Brad Topolf127e2f2013-01-22 10:17:50 -0600138
Brad Topol0c2c3fc2013-03-19 03:01:30 -0500139 # On fedora we need to manually add cosine and inetorgperson schemas
Dean Troyerb9e25132013-10-01 14:45:04 -0500140 if is_fedora; then
Brad Topol0c2c3fc2013-03-19 03:01:30 -0500141 sudo ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/cosine.ldif
142 sudo ldapadd -Y EXTERNAL -H ldapi:/// -f /etc/openldap/schema/inetorgperson.ldif
143 fi
144
Julie Pichonac937bc2014-09-29 04:55:21 +0100145 pip_install ldappool
146
Dean Troyeref66a772014-07-25 14:45:34 -0500147 rm -rf $tmp_ldap_dir
Brad Topolf127e2f2013-01-22 10:17:50 -0600148}
149
150# start_ldap() - Start LDAP
Ian Wienandaee18c72014-02-21 15:35:08 +1100151function start_ldap {
Ralf Haferkamp704106a2013-09-12 14:24:47 +0200152 sudo service $LDAP_SERVICE_NAME restart
Brad Topolf127e2f2013-01-22 10:17:50 -0600153}
154
Brad Topolf127e2f2013-01-22 10:17:50 -0600155# stop_ldap() - Stop LDAP
Ian Wienandaee18c72014-02-21 15:35:08 +1100156function stop_ldap {
Ralf Haferkamp704106a2013-09-12 14:24:47 +0200157 sudo service $LDAP_SERVICE_NAME stop
Brad Topolf127e2f2013-01-22 10:17:50 -0600158}
159
160# clear_ldap_state() - Clear LDAP State
Ian Wienandaee18c72014-02-21 15:35:08 +1100161function clear_ldap_state {
Dean Troyerb44a8ef2014-03-06 11:25:04 -0600162 ldapdelete -x -w $LDAP_PASSWORD -D "$LDAP_MANAGER_DN" -H $LDAP_URL -r "$LDAP_BASE_DN" || :
Brad Topolf127e2f2013-01-22 10:17:50 -0600163}
164
165# Restore xtrace
166$XTRACE
Sean Dague584d90e2013-03-29 14:34:53 -0400167
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100168# Tell emacs to use shell-script-mode
169## Local variables:
170## mode: shell-script
171## End: