blob: 80a136f78d2c7cef3e909f38b3b0e882cb4b0bd5 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyerd81a0272012-08-31 18:04:55 -05003# lib/keystone
4# Functions to control the configuration and operation of **Keystone**
5
6# Dependencies:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01007#
8# - ``functions`` file
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +10009# - ``tls`` file
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010010# - ``DEST``, ``STACK_USER``
Adam Gandelmanc4b06712014-09-03 11:44:31 -070011# - ``FILES``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010012# - ``BASE_SQL_CONN``
13# - ``SERVICE_HOST``, ``SERVICE_PROTOCOL``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010014# - ``S3_SERVICE_PORT`` (template backend only)
Dean Troyerd81a0272012-08-31 18:04:55 -050015
Dean Troyerd81a0272012-08-31 18:04:55 -050016# ``stack.sh`` calls the entry points in this order:
17#
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010018# - install_keystone
19# - configure_keystone
20# - _config_keystone_apache_wsgi
21# - init_keystone
22# - start_keystone
Steve Martinelli923be5f2015-12-20 00:24:19 -050023# - bootstrap_keystone
Adam Spiers6a5aa7c2013-10-24 11:27:02 +010024# - create_keystone_accounts
25# - stop_keystone
26# - cleanup_keystone
Dean Troyerd81a0272012-08-31 18:04:55 -050027
Dean Troyer7903b792012-09-13 17:16:12 -050028# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110029_XTRACE_KEYSTONE=$(set +o | grep xtrace)
Dean Troyer7903b792012-09-13 17:16:12 -050030set +o xtrace
Dean Troyerd81a0272012-08-31 18:04:55 -050031
Dean Troyerd81a0272012-08-31 18:04:55 -050032# Defaults
33# --------
34
Dean Troyerd81a0272012-08-31 18:04:55 -050035# Set up default directories
Jamie Lennox21a90772015-07-03 11:54:38 +100036GITDIR["keystoneauth"]=$DEST/keystoneauth
Sean Daguee08ab102014-11-13 17:09:28 -050037GITDIR["python-keystoneclient"]=$DEST/python-keystoneclient
Sean Dague658312c2014-11-14 11:35:56 -050038GITDIR["keystonemiddleware"]=$DEST/keystonemiddleware
Dean Troyerd81a0272012-08-31 18:04:55 -050039KEYSTONE_DIR=$DEST/keystone
Dean Troyerf8ae6472015-02-17 11:05:06 -060040
41# Keystone virtual environment
42if [[ ${USE_VENV} = True ]]; then
43 PROJECT_VENV["keystone"]=${KEYSTONE_DIR}.venv
44 KEYSTONE_BIN_DIR=${PROJECT_VENV["keystone"]}/bin
45else
46 KEYSTONE_BIN_DIR=$(get_python_exec_prefix)
47fi
48
Dean Troyerd81a0272012-08-31 18:04:55 -050049KEYSTONE_CONF_DIR=${KEYSTONE_CONF_DIR:-/etc/keystone}
50KEYSTONE_CONF=$KEYSTONE_CONF_DIR/keystone.conf
Sean Dague2f8c88e2017-04-13 09:08:39 -040051KEYSTONE_PUBLIC_UWSGI_CONF=$KEYSTONE_CONF_DIR/keystone-uwsgi-public.ini
Sean Dague2f8c88e2017-04-13 09:08:39 -040052KEYSTONE_PUBLIC_UWSGI=$KEYSTONE_BIN_DIR/keystone-wsgi-public
Dean Troyerd81a0272012-08-31 18:04:55 -050053
Brant Knudsona0305362016-01-25 13:38:27 -060054# KEYSTONE_DEPLOY defines how keystone is deployed, allowed values:
55# - mod_wsgi : Run keystone under Apache HTTPd mod_wsgi
Brant Knudsonedc11c22015-12-14 15:32:05 -060056# - uwsgi : Run keystone under uwsgi
Sean Dague6ed53152017-04-13 13:33:16 -040057if [[ "$WSGI_MODE" == "uwsgi" ]]; then
58 KEYSTONE_DEPLOY=uwsgi
59else
60 KEYSTONE_DEPLOY=mod_wsgi
Brant Knudsona0305362016-01-25 13:38:27 -060061fi
62
Brant Knudson331a64f2015-05-11 10:02:24 -050063# Select the Identity backend driver
Alex Rudenkocd770582013-09-01 16:26:03 +020064KEYSTONE_IDENTITY_BACKEND=${KEYSTONE_IDENTITY_BACKEND:-sql}
65
Brant Knudson331a64f2015-05-11 10:02:24 -050066# Select the Assignment backend driver
Alex Rudenkocd770582013-09-01 16:26:03 +020067KEYSTONE_ASSIGNMENT_BACKEND=${KEYSTONE_ASSIGNMENT_BACKEND:-sql}
68
Steve Martinelli35262762016-01-05 23:56:40 -050069# Select the Role backend driver
70KEYSTONE_ROLE_BACKEND=${KEYSTONE_ROLE_BACKEND:-sql}
71
72# Select the Resource backend driver
73KEYSTONE_RESOURCE_BACKEND=${KEYSTONE_RESOURCE_BACKEND:-sql}
74
Brant Knudson331a64f2015-05-11 10:02:24 -050075# Select Keystone's token provider (and format)
ghanshyam27428752018-07-10 09:21:46 +000076# Refer keystone doc for supported token provider:
77# https://docs.openstack.org/keystone/latest/admin/token-provider.html
Steve Martinellidc486bc2016-09-08 02:29:25 +000078KEYSTONE_TOKEN_FORMAT=${KEYSTONE_TOKEN_FORMAT:-fernet}
Brant Knudson1e1fce82014-06-19 16:55:45 -050079KEYSTONE_TOKEN_FORMAT=$(echo ${KEYSTONE_TOKEN_FORMAT} | tr '[:upper:]' '[:lower:]')
Dean Troyerbc071bc2012-10-01 14:06:44 -050080
Dean Troyerc83a7e12012-11-29 11:47:58 -060081# Public facing bits
Dean Troyerd81a0272012-08-31 18:04:55 -050082KEYSTONE_SERVICE_HOST=${KEYSTONE_SERVICE_HOST:-$SERVICE_HOST}
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +000083KEYSTONE_SERVICE_PORT=${KEYSTONE_SERVICE_PORT:-5000}
84KEYSTONE_SERVICE_PORT_INT=${KEYSTONE_SERVICE_PORT_INT:-5001}
Dean Troyerc83a7e12012-11-29 11:47:58 -060085KEYSTONE_SERVICE_PROTOCOL=${KEYSTONE_SERVICE_PROTOCOL:-$SERVICE_PROTOCOL}
Dean Troyerd81a0272012-08-31 18:04:55 -050086
Sean Dague0b1465b2016-04-04 10:15:47 -040087# Set the project for service accounts in Keystone
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -060088SERVICE_DOMAIN_NAME=${SERVICE_DOMAIN_NAME:-Default}
Sean Dague0b1465b2016-04-04 10:15:47 -040089SERVICE_PROJECT_NAME=${SERVICE_PROJECT_NAME:-service}
Ian Wienand982b9912016-04-14 07:48:24 +100090
91# Note 2016-03 : SERVICE_TENANT_NAME is kept for backwards
92# compatibility; we should be using SERVICE_PROJECT_NAME now
Sean Dague0b1465b2016-04-04 10:15:47 -040093SERVICE_TENANT_NAME=${SERVICE_PROJECT_NAME:-service}
Dean Troyerb7490da2013-03-18 16:07:56 -050094
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +100095# if we are running with SSL use https protocols
Sean Daguef3b2f4c2017-04-13 10:11:48 -040096if is_service_enabled tls-proxy; then
Jamie Lennoxbd24a8d2013-09-20 16:26:42 +100097 KEYSTONE_SERVICE_PROTOCOL="https"
98fi
99
Sean Dague6ed53152017-04-13 13:33:16 -0400100KEYSTONE_SERVICE_URI=${KEYSTONE_SERVICE_PROTOCOL}://${KEYSTONE_SERVICE_HOST}/identity
Sean Daguebb443112017-04-19 16:22:42 -0400101# for compat
102KEYSTONE_AUTH_URI=$KEYSTONE_SERVICE_URI
Jamie Lennox3561d7f2014-05-21 17:18:43 +1000103
Steve Martinellib74e01c2014-12-18 01:35:35 -0500104# V3 URIs
Jens Harbott32c00892019-04-10 10:33:39 +0000105KEYSTONE_AUTH_URI_V3=$KEYSTONE_SERVICE_URI/v3
Steve Martinellib74e01c2014-12-18 01:35:35 -0500106KEYSTONE_SERVICE_URI_V3=$KEYSTONE_SERVICE_URI/v3
107
Rodrigo Duarteb51a8862016-09-26 15:22:35 -0300108# Security compliance
109KEYSTONE_SECURITY_COMPLIANCE_ENABLED=${KEYSTONE_SECURITY_COMPLIANCE_ENABLED:-True}
110KEYSTONE_LOCKOUT_FAILURE_ATTEMPTS=${KEYSTONE_LOCKOUT_FAILURE_ATTEMPTS:-2}
Lance Bragstaddcd4b642017-06-12 14:41:42 +0000111KEYSTONE_LOCKOUT_DURATION=${KEYSTONE_LOCKOUT_DURATION:-10}
Rodrigo Duarteb51a8862016-09-26 15:22:35 -0300112KEYSTONE_UNIQUE_LAST_PASSWORD_COUNT=${KEYSTONE_UNIQUE_LAST_PASSWORD_COUNT:-2}
113
Boris Pavlovic2b6e9ac2017-06-12 17:08:33 -0700114# Number of bcrypt hashing rounds, increasing number exponentially increases required
115# resources to generate password hash. This is very effective way to protect from
116# bruteforce attacks. 4 is minimal value that can be specified for bcrypt and
117# it works way faster than default 12. Minimal value is great for CI and development
118# however may not be suitable for real production.
119KEYSTONE_PASSWORD_HASH_ROUNDS=${KEYSTONE_PASSWORD_HASH_ROUNDS:-4}
Dean Troyer5ce44cd2015-02-12 22:18:33 -0600120
Slawek Kaplonskid33cdd02019-08-01 14:58:37 +0200121# Cache settings
122KEYSTONE_ENABLE_CACHE=${KEYSTONE_ENABLE_CACHE:-True}
123
Jens Harbotteb376572021-02-24 10:04:31 +0100124# Whether to create a keystone admin endpoint for legacy applications
Jens Harbottb538b322021-02-24 10:24:03 +0100125KEYSTONE_ADMIN_ENDPOINT=$(trueorfalse False KEYSTONE_ADMIN_ENDPOINT)
Jens Harbotteb376572021-02-24 10:04:31 +0100126
Grzegorz Grasza5f5002a2021-10-26 10:50:37 +0200127# Flag to set the oslo_policy.enforce_scope. This is used to switch
128# the Identity API policies to start checking the scope of token. By Default,
129# this flag is False.
130# For more detail: https://docs.openstack.org/oslo.policy/latest/configuration/index.html#oslo_policy.enforce_scope
131KEYSTONE_ENFORCE_SCOPE=$(trueorfalse False KEYSTONE_ENFORCE_SCOPE)
132
Dean Troyercc6b4432013-04-08 15:38:03 -0500133# Functions
134# ---------
Dean Troyer5ce44cd2015-02-12 22:18:33 -0600135
136# Test if Keystone is enabled
137# is_keystone_enabled
138function is_keystone_enabled {
Clark Boylan902158b2017-05-30 14:11:09 -0700139 [[ ,${DISABLED_SERVICES} =~ ,"keystone" ]] && return 1
Dean Troyer5ce44cd2015-02-12 22:18:33 -0600140 [[ ,${ENABLED_SERVICES}, =~ ,"key", ]] && return 0
141 return 1
142}
143
Dean Troyerd81a0272012-08-31 18:04:55 -0500144# cleanup_keystone() - Remove residual data files, anything left over from previous
145# runs that a clean run would need to clean up
Ian Wienandaee18c72014-02-21 15:35:08 +1100146function cleanup_keystone {
Davanum Srinivasaa33c872017-08-16 22:51:07 -0400147 if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
148 # These files will be created if we are running WSGI_MODE="mod_wsgi"
149 disable_apache_site keystone
150 sudo rm -f $(apache_site_config_for keystone)
151 else
152 stop_process "keystone"
Davanum Srinivasaa33c872017-08-16 22:51:07 -0400153 remove_uwsgi_config "$KEYSTONE_PUBLIC_UWSGI_CONF" "$KEYSTONE_PUBLIC_UWSGI"
Davanum Srinivasaa33c872017-08-16 22:51:07 -0400154 sudo rm -f $(apache_site_config_for keystone-wsgi-public)
Davanum Srinivasaa33c872017-08-16 22:51:07 -0400155 fi
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000156}
157
158# _config_keystone_apache_wsgi() - Set WSGI config files of Keystone
Ian Wienandaee18c72014-02-21 15:35:08 +1100159function _config_keystone_apache_wsgi {
Ian Wienandada886d2015-10-07 14:06:26 +1100160 local keystone_apache_conf
161 keystone_apache_conf=$(apache_site_config_for keystone)
Rob Crittendena1e1f512016-07-20 18:12:09 -0400162 keystone_ssl_listen="#"
Rob Crittenden18d47782014-03-19 17:47:42 -0400163 local keystone_ssl=""
164 local keystone_certfile=""
165 local keystone_keyfile=""
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000166 local keystone_service_port=$KEYSTONE_SERVICE_PORT
Dean Troyerf8ae6472015-02-17 11:05:06 -0600167 local venv_path=""
Rob Crittenden18d47782014-03-19 17:47:42 -0400168
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000169 if is_service_enabled tls-proxy; then
170 keystone_service_port=$KEYSTONE_SERVICE_PORT_INT
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000171 fi
Dean Troyerf8ae6472015-02-17 11:05:06 -0600172 if [[ ${USE_VENV} = True ]]; then
Chris Dent3a2c86a2015-05-12 13:41:25 +0000173 venv_path="python-path=${PROJECT_VENV["keystone"]}/lib/$(python_version)/site-packages"
Dean Troyerf8ae6472015-02-17 11:05:06 -0600174 fi
Morgan Fainbergd074dc72014-06-24 21:33:39 -0700175
Morgan Fainberg970ee902014-06-09 12:07:29 -0700176 sudo cp $FILES/apache-keystone.template $keystone_apache_conf
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000177 sudo sed -e "
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000178 s|%PUBLICPORT%|$keystone_service_port|g;
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000179 s|%APACHE_NAME%|$APACHE_NAME|g;
Rob Crittendena1e1f512016-07-20 18:12:09 -0400180 s|%SSLLISTEN%|$keystone_ssl_listen|g;
Rob Crittenden18d47782014-03-19 17:47:42 -0400181 s|%SSLENGINE%|$keystone_ssl|g;
182 s|%SSLCERTFILE%|$keystone_certfile|g;
183 s|%SSLKEYFILE%|$keystone_keyfile|g;
Dean Troyerf8ae6472015-02-17 11:05:06 -0600184 s|%USER%|$STACK_USER|g;
185 s|%VIRTUALENV%|$venv_path|g
Brant Knudson2ad1a422015-06-23 10:53:50 -0500186 s|%KEYSTONE_BIN%|$KEYSTONE_BIN_DIR|g
Morgan Fainberg970ee902014-06-09 12:07:29 -0700187 " -i $keystone_apache_conf
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000188}
189
Dean Troyerd81a0272012-08-31 18:04:55 -0500190# configure_keystone() - Set config files, create data dirs, etc
Ian Wienandaee18c72014-02-21 15:35:08 +1100191function configure_keystone {
Dean Troyer8421c2b2015-03-16 13:52:19 -0500192 sudo install -d -o $STACK_USER $KEYSTONE_CONF_DIR
Dean Troyerd81a0272012-08-31 18:04:55 -0500193
194 if [[ "$KEYSTONE_CONF_DIR" != "$KEYSTONE_DIR/etc" ]]; then
Lance Bragstadfe628b92018-04-17 17:01:46 +0000195 install -m 600 /dev/null $KEYSTONE_CONF
Alan Pevece0bb4472013-03-12 11:10:52 +0100196 fi
Lance Bragstadfe628b92018-04-17 17:01:46 +0000197 # Populate ``keystone.conf``
Brad Topolf127e2f2013-01-22 10:17:50 -0600198 if is_service_enabled ldap; then
Leticia Wanderleycc363972017-06-26 23:52:52 -0300199 iniset $KEYSTONE_CONF identity domain_config_dir "$KEYSTONE_CONF_DIR/domains"
200 iniset $KEYSTONE_CONF identity domain_specific_drivers_enabled "True"
Brad Topolf127e2f2013-01-22 10:17:50 -0600201 fi
Brant Knudson331a64f2015-05-11 10:02:24 -0500202 iniset $KEYSTONE_CONF identity driver "$KEYSTONE_IDENTITY_BACKEND"
Boris Pavlovic2b6e9ac2017-06-12 17:08:33 -0700203 iniset $KEYSTONE_CONF identity password_hash_rounds $KEYSTONE_PASSWORD_HASH_ROUNDS
Brant Knudson331a64f2015-05-11 10:02:24 -0500204 iniset $KEYSTONE_CONF assignment driver "$KEYSTONE_ASSIGNMENT_BACKEND"
Steve Martinelli35262762016-01-05 23:56:40 -0500205 iniset $KEYSTONE_CONF role driver "$KEYSTONE_ROLE_BACKEND"
206 iniset $KEYSTONE_CONF resource driver "$KEYSTONE_RESOURCE_BACKEND"
Brad Topolf127e2f2013-01-22 10:17:50 -0600207
Morgan Fainberga8ffe8a2016-01-24 20:36:35 -0800208 # Enable caching
Slawek Kaplonskid33cdd02019-08-01 14:58:37 +0200209 iniset $KEYSTONE_CONF cache enabled $KEYSTONE_ENABLE_CACHE
210 iniset $KEYSTONE_CONF cache backend $CACHE_BACKEND
211 iniset $KEYSTONE_CONF cache memcache_servers $MEMCACHE_SERVERS
Morgan Fainberga8ffe8a2016-01-24 20:36:35 -0800212
Lance Bragstaded6e1d02018-08-01 18:03:44 +0000213 iniset_rpc_backend keystone $KEYSTONE_CONF oslo_messaging_notifications
Sergey Skripnick8464a4c2014-07-08 21:05:23 +0300214
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000215 local service_port=$KEYSTONE_SERVICE_PORT
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000216
217 if is_service_enabled tls-proxy; then
218 # Set the service ports for a proxy to take the originals
219 service_port=$KEYSTONE_SERVICE_PORT_INT
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000220 fi
221
Takashi Kajinami65a5db82021-05-03 00:08:15 +0900222 # Override the endpoints advertised by keystone so that clients use the correct
223 # endpoint. By default, the keystone server uses the public_port which isn't
224 # going to work when you want to use a different port (in the case of proxy),
225 # or you don't want the port (in the case of putting keystone on a path in apache).
Sean Dague6ed53152017-04-13 13:33:16 -0400226 iniset $KEYSTONE_CONF DEFAULT public_endpoint $KEYSTONE_SERVICE_URI
Dean Troyerc83a7e12012-11-29 11:47:58 -0600227
Brant Knudson1e1fce82014-06-19 16:55:45 -0500228 if [[ "$KEYSTONE_TOKEN_FORMAT" != "" ]]; then
Brant Knudson331a64f2015-05-11 10:02:24 -0500229 iniset $KEYSTONE_CONF token provider $KEYSTONE_TOKEN_FORMAT
Sudarshan Acharya37631412013-07-16 00:47:54 +0000230 fi
231
Brant Knudson16d3ad02014-02-13 18:59:50 -0600232 iniset $KEYSTONE_CONF database connection `database_connection_url keystone`
Dean Troyerd81a0272012-08-31 18:04:55 -0500233
Dean Troyerd81a0272012-08-31 18:04:55 -0500234 # Set up logging
Dean Troyerd81a0272012-08-31 18:04:55 -0500235 if [ "$SYSLOG" != "False" ]; then
Brant Knudson4968d1a2014-01-22 19:06:44 -0600236 iniset $KEYSTONE_CONF DEFAULT use_syslog "True"
Dean Troyerd81a0272012-08-31 18:04:55 -0500237 fi
Brant Knudson4968d1a2014-01-22 19:06:44 -0600238
239 # Format logging
Sean Dague27f66e92017-05-02 09:08:17 -0400240 setup_logging $KEYSTONE_CONF
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000241
Brant Knudson0fc336d2015-02-08 11:03:02 -0600242 iniset $KEYSTONE_CONF DEFAULT debug $ENABLE_DEBUG_LOG_LEVEL
243
Brant Knudsona0305362016-01-25 13:38:27 -0600244 if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
Morgan Fainbergda1cc572016-02-02 09:09:28 -0800245 iniset $KEYSTONE_CONF DEFAULT logging_exception_prefix "%(asctime)s.%(msecs)03d %(process)d TRACE %(name)s %(instance)s"
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000246 _config_keystone_apache_wsgi
Brant Knudson556eeb02016-03-24 14:01:57 -0500247 else # uwsgi
Sean Dague6ed53152017-04-13 13:33:16 -0400248 write_uwsgi_config "$KEYSTONE_PUBLIC_UWSGI_CONF" "$KEYSTONE_PUBLIC_UWSGI" "/identity"
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000249 fi
Bartosz Górski0abde392014-02-28 14:15:19 +0100250
251 iniset $KEYSTONE_CONF DEFAULT max_token_size 16384
Brant Knudson85a17ea2014-09-13 14:49:24 -0500252
Brant Knudsoncef5e402015-06-25 17:57:53 -0500253 iniset $KEYSTONE_CONF fernet_tokens key_repository "$KEYSTONE_CONF_DIR/fernet-keys/"
Attila Fazekas9ea49752016-03-22 15:22:03 +0100254
Lance Bragstad69d4a712016-08-27 01:01:37 +0000255 iniset $KEYSTONE_CONF credential key_repository "$KEYSTONE_CONF_DIR/credential-keys/"
256
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000257 # Configure the project created by the 'keystone-manage bootstrap' as the cloud-admin project.
258 # The users from this project are globally admin as before, but it also
259 # allows policy changes in order to clarify the adminess scope.
260 #iniset $KEYSTONE_CONF resource admin_project_domain_name Default
261 #iniset $KEYSTONE_CONF resource admin_project_name admin
262
Rodrigo Duarteb51a8862016-09-26 15:22:35 -0300263 if [[ "$KEYSTONE_SECURITY_COMPLIANCE_ENABLED" = True ]]; then
264 iniset $KEYSTONE_CONF security_compliance lockout_failure_attempts $KEYSTONE_LOCKOUT_FAILURE_ATTEMPTS
265 iniset $KEYSTONE_CONF security_compliance lockout_duration $KEYSTONE_LOCKOUT_DURATION
266 iniset $KEYSTONE_CONF security_compliance unique_last_password_count $KEYSTONE_UNIQUE_LAST_PASSWORD_COUNT
267 fi
Grzegorz Grasza86155632021-10-18 16:52:06 +0200268 if [[ "$KEYSTONE_ENFORCE_SCOPE" == True || "$ENFORCE_SCOPE" == True ]] ; then
Grzegorz Grasza5f5002a2021-10-26 10:50:37 +0200269 iniset $KEYSTONE_CONF oslo_policy enforce_scope true
270 iniset $KEYSTONE_CONF oslo_policy enforce_new_defaults true
271 iniset $KEYSTONE_CONF oslo_policy policy_file policy.yaml
272 fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500273}
274
Dean Troyerd835de82012-11-29 17:11:35 -0600275# create_keystone_accounts() - Sets up common required keystone accounts
276
Sean Dague0b1465b2016-04-04 10:15:47 -0400277# Project User Roles
Dean Troyerd835de82012-11-29 17:11:35 -0600278# ------------------------------------------------------------------
Dean Troyerd835de82012-11-29 17:11:35 -0600279# admin admin admin
Dean Troyer42a59c22014-03-03 14:31:29 -0600280# service -- --
281# -- -- service
282# -- -- ResellerAdmin
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000283# -- -- member
Dean Troyerd835de82012-11-29 17:11:35 -0600284# demo admin admin
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000285# demo demo member, anotherrole
Sean Daguec67d22e2016-02-02 05:51:14 -0500286# alt_demo admin admin
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000287# alt_demo alt_demo member, anotherrole
288# invisible_to_admin demo member
Dean Troyerd835de82012-11-29 17:11:35 -0600289
Sean Dague0b1465b2016-04-04 10:15:47 -0400290# Group Users Roles Project
Steve Martinelli4599fd12015-03-12 21:30:58 -0400291# ------------------------------------------------------------------
Dean Troyer50f75a92016-02-03 17:40:17 -0600292# admins admin admin admin
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000293# nonadmins demo, alt_demo member, anotherrole demo, alt_demo
Steve Martinelli4599fd12015-03-12 21:30:58 -0400294
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000295# System User Roles
296# ------------------------------------------------------------------
297# all admin admin
298# all system_reader reader
299# all system_member member
300
Steve Martinelli4599fd12015-03-12 21:30:58 -0400301
Dean Troyerd835de82012-11-29 17:11:35 -0600302# Migrated from keystone_data.sh
Ian Wienandaee18c72014-02-21 15:35:08 +1100303function create_keystone_accounts {
Dean Troyerd835de82012-11-29 17:11:35 -0600304
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000305 # The keystone bootstrapping process (performed via keystone-manage
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000306 # bootstrap) creates an admin user and an admin
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000307 # project. As a sanity check we exercise the CLI to retrieve the IDs for
308 # these values.
Sean Dague0b1465b2016-04-04 10:15:47 -0400309 local admin_project
310 admin_project=$(openstack project show "admin" -f value -c id)
Ian Wienandada886d2015-10-07 14:06:26 +1100311 local admin_user
Steve Martinelli923be5f2015-12-20 00:24:19 -0500312 admin_user=$(openstack user show "admin" -f value -c id)
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000313 # These roles are also created during bootstrap but we don't need their IDs
Sean Dagueee37d202017-02-08 11:24:31 -0500314 local admin_role="admin"
Lance Bragstada7d0c6f2018-06-18 15:06:48 +0000315 local member_role="member"
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000316 local reader_role="reader"
Steve Martinelli923be5f2015-12-20 00:24:19 -0500317
Dan Smith30d9bf92021-01-19 12:10:52 -0800318 async_run ks-domain-role get_or_add_user_domain_role $admin_role $admin_user default
Dean Troyerd835de82012-11-29 17:11:35 -0600319
Dean Troyer42a59c22014-03-03 14:31:29 -0600320 # Create service project/role
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600321 get_or_create_domain "$SERVICE_DOMAIN_NAME"
Dan Smith30d9bf92021-01-19 12:10:52 -0800322 async_run ks-project get_or_create_project "$SERVICE_PROJECT_NAME" "$SERVICE_DOMAIN_NAME"
Dean Troyer42a59c22014-03-03 14:31:29 -0600323
324 # Service role, so service users do not have to be admins
Dan Smith30d9bf92021-01-19 12:10:52 -0800325 async_run ks-service get_or_create_role service
Dean Troyer42a59c22014-03-03 14:31:29 -0600326
327 # The ResellerAdmin role is used by Nova and Ceilometer so we need to keep it.
Sean Dague0b1465b2016-04-04 10:15:47 -0400328 # The admin role in swift allows a user to act as an admin for their project,
329 # but ResellerAdmin is needed for a user to act as any project. The name of this
Dean Troyer42a59c22014-03-03 14:31:29 -0600330 # role is also configurable in swift-proxy.conf
Dan Smith30d9bf92021-01-19 12:10:52 -0800331 async_run ks-reseller get_or_create_role ResellerAdmin
Dean Troyerd835de82012-11-29 17:11:35 -0600332
Masayuki Igawad3654052014-09-01 17:30:05 +0900333 # another_role demonstrates that an arbitrary role may be created and used
Dean Troyerd835de82012-11-29 17:11:35 -0600334 # TODO(sleepsonthefloor): show how this can be used for rbac in the future!
Sean Dagueee37d202017-02-08 11:24:31 -0500335 local another_role="anotherrole"
Dan Smith30d9bf92021-01-19 12:10:52 -0800336 async_run ks-anotherrole get_or_create_role $another_role
Dean Troyerd835de82012-11-29 17:11:35 -0600337
Sean Dague0b1465b2016-04-04 10:15:47 -0400338 # invisible project - admin can't see this one
339 local invis_project
340 invis_project=$(get_or_create_project "invisible_to_admin" default)
Dean Troyerd835de82012-11-29 17:11:35 -0600341
342 # demo
Sean Dague0b1465b2016-04-04 10:15:47 -0400343 local demo_project
344 demo_project=$(get_or_create_project "demo" default)
Ian Wienandada886d2015-10-07 14:06:26 +1100345 local demo_user
346 demo_user=$(get_or_create_user "demo" \
Jamie Lennox9d7e7762015-05-29 01:08:53 +0000347 "$ADMIN_PASSWORD" "default" "demo@example.com")
Steve Martinelli19685422014-01-24 13:02:26 -0600348
Dan Smith30d9bf92021-01-19 12:10:52 -0800349 async_wait ks-{domain-role,domain,project,service,reseller,anotherrole}
350
351 async_run ks-demo-member get_or_add_user_project_role $member_role $demo_user $demo_project
Lance Bragstad1d8888d2021-03-11 16:36:28 +0000352
Dan Smith30d9bf92021-01-19 12:10:52 -0800353 async_run ks-demo-admin get_or_add_user_project_role $admin_role $admin_user $demo_project
354 async_run ks-demo-another get_or_add_user_project_role $another_role $demo_user $demo_project
355 async_run ks-demo-invis get_or_add_user_project_role $member_role $demo_user $invis_project
Dean Troyerd835de82012-11-29 17:11:35 -0600356
Lance Bragstad9c813212021-03-11 16:29:31 +0000357 # Create a user to act as a reader on project demo
358 local demo_reader
359 demo_reader=$(get_or_create_user "demo_reader" \
360 "$ADMIN_PASSWORD" "default" "demo_reader@example.com")
361
362 async_run ks-demo-reader get_or_add_user_project_role $reader_role $demo_reader $demo_project
363
364 # Create a different project called alt_demo
Sean Dague0b1465b2016-04-04 10:15:47 -0400365 local alt_demo_project
366 alt_demo_project=$(get_or_create_project "alt_demo" default)
Lance Bragstad9c813212021-03-11 16:29:31 +0000367 # Create a user to act as member, admin and anotherrole on project alt_demo
Sean Daguec67d22e2016-02-02 05:51:14 -0500368 local alt_demo_user
369 alt_demo_user=$(get_or_create_user "alt_demo" \
370 "$ADMIN_PASSWORD" "default" "alt_demo@example.com")
371
Lance Bragstad9c813212021-03-11 16:29:31 +0000372 async_run ks-alt-admin get_or_add_user_project_role $admin_role $alt_demo_user $alt_demo_project
Dan Smith30d9bf92021-01-19 12:10:52 -0800373 async_run ks-alt-another get_or_add_user_project_role $another_role $alt_demo_user $alt_demo_project
Sean Daguec67d22e2016-02-02 05:51:14 -0500374
Lance Bragstad9c813212021-03-11 16:29:31 +0000375 # Create another user to act as a member on project alt_demo
376 local alt_demo_member
377 alt_demo_member=$(get_or_create_user "alt_demo_member" \
378 "$ADMIN_PASSWORD" "default" "alt_demo_member@example.com")
379 async_run ks-alt-member-user get_or_add_user_project_role $member_role $alt_demo_member $alt_demo_project
380
381 # Create another user to act as a reader on project alt_demo
382 local alt_demo_reader
383 alt_demo_reader=$(get_or_create_user "alt_demo_reader" \
384 "$ADMIN_PASSWORD" "default" "alt_demo_reader@example.com")
385 async_run ks-alt-reader-user get_or_add_user_project_role $reader_role $alt_demo_reader $alt_demo_project
386
387 # Create two users, give one the member role on the system and the other the
388 # reader role on the system. These two users model system-member and
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000389 # system-reader personas. The admin user already has the admin role on the
390 # system and we can re-use this user as a system-admin.
391 system_member_user=$(get_or_create_user "system_member" \
392 "$ADMIN_PASSWORD" "default" "system_member@example.com")
393 async_run ks-system-member get_or_add_user_system_role $member_role $system_member_user "all"
394
395 system_reader_user=$(get_or_create_user "system_reader" \
396 "$ADMIN_PASSWORD" "default" "system_reader@example.com")
397 async_run ks-system-reader get_or_add_user_system_role $reader_role $system_reader_user "all"
398
Sean Daguec67d22e2016-02-02 05:51:14 -0500399 # groups
Ian Wienandada886d2015-10-07 14:06:26 +1100400 local admin_group
401 admin_group=$(get_or_create_group "admins" \
Steve Martinelli4599fd12015-03-12 21:30:58 -0400402 "default" "openstack admin group")
Ian Wienandada886d2015-10-07 14:06:26 +1100403 local non_admin_group
404 non_admin_group=$(get_or_create_group "nonadmins" \
Steve Martinelli4599fd12015-03-12 21:30:58 -0400405 "default" "non-admin group")
406
Dan Smith30d9bf92021-01-19 12:10:52 -0800407 async_run ks-group-memberdemo get_or_add_group_project_role $member_role $non_admin_group $demo_project
408 async_run ks-group-anotherdemo get_or_add_group_project_role $another_role $non_admin_group $demo_project
409 async_run ks-group-memberalt get_or_add_group_project_role $member_role $non_admin_group $alt_demo_project
410 async_run ks-group-anotheralt get_or_add_group_project_role $another_role $non_admin_group $alt_demo_project
411 async_run ks-group-admin get_or_add_group_project_role $admin_role $admin_group $admin_project
412
Lance Bragstad9c813212021-03-11 16:29:31 +0000413 async_wait ks-demo-{member,admin,another,invis,reader}
Lance Bragstad1d8888d2021-03-11 16:36:28 +0000414 async_wait ks-alt-{admin,another,member-user,reader-user}
Lance Bragstad021ae0b2021-03-11 15:47:50 +0000415 async_wait ks-system-{member,reader}
Dan Smith30d9bf92021-01-19 12:10:52 -0800416 async_wait ks-group-{memberdemo,anotherdemo,memberalt,anotheralt,admin}
Leticia Wanderleycc363972017-06-26 23:52:52 -0300417
418 if is_service_enabled ldap; then
419 create_ldap_domain
420 fi
Dean Troyerd835de82012-11-29 17:11:35 -0600421}
422
Jamie Lennox85ff5322015-01-28 14:28:01 +1000423# Create a user that is capable of verifying keystone tokens for use with auth_token middleware.
424#
425# create_service_user <name> [role]
426#
Jamie Lennox7f685482016-12-13 15:47:11 +1100427# We always add the service role, other roles are also allowed to be added as historically
Jamie Lennox85ff5322015-01-28 14:28:01 +1000428# a lot of projects have configured themselves with the admin or other role here if they are
429# using this user for other purposes beyond simply auth_token middleware.
430function create_service_user {
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600431 get_or_create_user "$1" "$SERVICE_PASSWORD" "$SERVICE_DOMAIN_NAME"
Jamie Lennox7f685482016-12-13 15:47:11 +1100432 get_or_add_user_project_role service "$1" "$SERVICE_PROJECT_NAME" "$SERVICE_DOMAIN_NAME" "$SERVICE_DOMAIN_NAME"
433
434 if [[ -n "$2" ]]; then
435 get_or_add_user_project_role "$2" "$1" "$SERVICE_PROJECT_NAME" "$SERVICE_DOMAIN_NAME" "$SERVICE_DOMAIN_NAME"
436 fi
Jamie Lennox85ff5322015-01-28 14:28:01 +1000437}
438
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100439# Configure a service to use the auth token middleware.
Brant Knudson05952372014-09-19 17:22:22 -0500440#
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100441# configure_keystone_authtoken_middleware conf_file admin_user IGNORED [section]
Brant Knudson05952372014-09-19 17:22:22 -0500442#
443# section defaults to keystone_authtoken, which is where auth_token looks in
444# the .conf file. If the paste config file is used (api-paste.ini) then
445# provide the section name for the auth_token filter.
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100446function configure_keystone_authtoken_middleware {
Brant Knudson05952372014-09-19 17:22:22 -0500447 local conf_file=$1
448 local admin_user=$2
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100449 local section=${3:-keystone_authtoken}
Brant Knudson05952372014-09-19 17:22:22 -0500450
Hua Wangf7dc06c2015-12-23 12:15:59 +0800451 iniset $conf_file $section auth_type password
Jens Harbott32c00892019-04-10 10:33:39 +0000452 iniset $conf_file $section interface public
Sean Dague38d47822017-04-19 16:12:00 -0400453 iniset $conf_file $section auth_url $KEYSTONE_SERVICE_URI
Jamie Lennox78b77262014-12-19 12:56:01 +1000454 iniset $conf_file $section username $admin_user
455 iniset $conf_file $section password $SERVICE_PASSWORD
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600456 iniset $conf_file $section user_domain_name "$SERVICE_DOMAIN_NAME"
Sean Dague7580a0c2016-02-17 06:23:36 -0500457 iniset $conf_file $section project_name $SERVICE_PROJECT_NAME
Jamie Lennoxcbcbd8f2016-01-21 16:08:14 -0600458 iniset $conf_file $section project_domain_name "$SERVICE_DOMAIN_NAME"
Jamie Lennox78b77262014-12-19 12:56:01 +1000459
Rob Crittenden18d47782014-03-19 17:47:42 -0400460 iniset $conf_file $section cafile $SSL_BUNDLE_FILE
Mohammed Naser7db34f62020-03-18 15:35:27 -0400461 iniset $conf_file $section memcached_servers $MEMCACHE_SERVERS
Vincent Hou21fe4e72013-11-21 03:10:27 -0500462}
463
Dirk Mueller8ab64b32017-11-17 19:52:29 +0100464# configure_auth_token_middleware conf_file admin_user IGNORED [section]
465# TODO(frickler): old function for backwards compatibility, remove in U cycle
466function configure_auth_token_middleware {
467 echo "WARNING: configure_auth_token_middleware is deprecated, use configure_keystone_authtoken_middleware instead"
468 configure_keystone_authtoken_middleware $1 $2 $4
469}
470
Dean Troyerd81a0272012-08-31 18:04:55 -0500471# init_keystone() - Initialize databases, etc.
Ian Wienandaee18c72014-02-21 15:35:08 +1100472function init_keystone {
Dean Troyerb9e25132013-10-01 14:45:04 -0500473 if is_service_enabled ldap; then
474 init_ldap
475 fi
476
Julia Varlamovaea3e87d2016-12-16 14:39:31 +0400477 if [[ "$RECREATE_KEYSTONE_DB" == True ]]; then
478 # (Re)create keystone database
479 recreate_database keystone
480 fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500481
Clark Boylan633dbc32017-06-14 12:09:21 -0700482 time_start "dbsync"
Dean Troyerd81a0272012-08-31 18:04:55 -0500483 # Initialize keystone database
Einst Crazy4f55c2d2016-05-04 08:14:01 +0000484 $KEYSTONE_BIN_DIR/keystone-manage --config-file $KEYSTONE_CONF db_sync
Clark Boylan633dbc32017-06-14 12:09:21 -0700485 time_stop "dbsync"
Dean Troyerd81a0272012-08-31 18:04:55 -0500486
Brant Knudsoncef5e402015-06-25 17:57:53 -0500487 if [[ "$KEYSTONE_TOKEN_FORMAT" == "fernet" ]]; then
488 rm -rf "$KEYSTONE_CONF_DIR/fernet-keys/"
Einst Crazy4f55c2d2016-05-04 08:14:01 +0000489 $KEYSTONE_BIN_DIR/keystone-manage --config-file $KEYSTONE_CONF fernet_setup
Brant Knudsoncef5e402015-06-25 17:57:53 -0500490 fi
Lance Bragstad69d4a712016-08-27 01:01:37 +0000491 rm -rf "$KEYSTONE_CONF_DIR/credential-keys/"
492 $KEYSTONE_BIN_DIR/keystone-manage --config-file $KEYSTONE_CONF credential_setup
493
Dean Troyerd81a0272012-08-31 18:04:55 -0500494}
495
Jamie Lennox21a90772015-07-03 11:54:38 +1000496# install_keystoneauth() - Collect source and prepare
497function install_keystoneauth {
498 if use_library_from_git "keystoneauth"; then
499 git_clone_by_name "keystoneauth"
500 setup_dev_lib "keystoneauth"
501 fi
502}
503
Dean Troyerd81a0272012-08-31 18:04:55 -0500504# install_keystoneclient() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100505function install_keystoneclient {
Sean Daguee08ab102014-11-13 17:09:28 -0500506 if use_library_from_git "python-keystoneclient"; then
507 git_clone_by_name "python-keystoneclient"
508 setup_dev_lib "python-keystoneclient"
Sean Dague5cb19062014-11-01 01:37:45 +0100509 fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500510}
511
Morgan Fainberg58936fd2014-06-24 12:26:07 -0700512# install_keystonemiddleware() - Collect source and prepare
513function install_keystonemiddleware {
Dean Troyerf8ae6472015-02-17 11:05:06 -0600514 # install_keystonemiddleware() is called when keystonemiddleware is needed
515 # to provide an opportunity to install it from the source repo
Sean Dague658312c2014-11-14 11:35:56 -0500516 if use_library_from_git "keystonemiddleware"; then
517 git_clone_by_name "keystonemiddleware"
518 setup_dev_lib "keystonemiddleware"
Dean Troyerf8ae6472015-02-17 11:05:06 -0600519 else
520 # When not installing from repo, keystonemiddleware is still needed...
Sean Dague60996b12015-04-08 09:06:49 -0400521 pip_install_gr keystonemiddleware
Sean Dague658312c2014-11-14 11:35:56 -0500522 fi
Morgan Fainberg5997ce32016-01-20 12:43:22 -0800523 # Install the memcache library so keystonemiddleware can cache tokens in a
524 # shared location.
525 pip_install_gr python-memcached
Morgan Fainberg58936fd2014-06-24 12:26:07 -0700526}
527
Dean Troyerd81a0272012-08-31 18:04:55 -0500528# install_keystone() - Collect source and prepare
Ian Wienandaee18c72014-02-21 15:35:08 +1100529function install_keystone {
Brad Topolf127e2f2013-01-22 10:17:50 -0600530 # only install ldap if the service has been enabled
531 if is_service_enabled ldap; then
532 install_ldap
533 fi
Morgan Fainberg5997ce32016-01-20 12:43:22 -0800534
Dean Troyerd81a0272012-08-31 18:04:55 -0500535 git_clone $KEYSTONE_REPO $KEYSTONE_DIR $KEYSTONE_BRANCH
Sean Dague1b4b4be2013-04-01 16:44:31 -0400536 setup_develop $KEYSTONE_DIR
Brant Knudson6a4d3eb2015-08-01 09:19:18 -0500537
538 if is_service_enabled ldap; then
539 setup_develop $KEYSTONE_DIR ldap
540 fi
541
Brant Knudsona0305362016-01-25 13:38:27 -0600542 if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000543 install_apache_wsgi
544 fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500545}
546
Sean Dague0eebeb42017-08-30 14:16:58 -0400547# start_keystone() - Start running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100548function start_keystone {
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000549 # Get right service port for testing
550 local service_port=$KEYSTONE_SERVICE_PORT
Jens Harbottc2491ba2020-06-14 18:06:23 +0200551 local auth_protocol=$KEYSTONE_SERVICE_PROTOCOL
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000552 if is_service_enabled tls-proxy; then
553 service_port=$KEYSTONE_SERVICE_PORT_INT
554 auth_protocol="http"
555 fi
556
Brant Knudsona0305362016-01-25 13:38:27 -0600557 if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
Adam Gandelmanc4b06712014-09-03 11:44:31 -0700558 enable_apache_site keystone
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000559 restart_apache_server
Brant Knudson556eeb02016-03-24 14:01:57 -0500560 else # uwsgi
Ian Wienand312517d2018-06-22 22:23:29 +1000561 run_process keystone "$(which uwsgi) --procname-prefix keystone --ini $KEYSTONE_PUBLIC_UWSGI_CONF" ""
Jamie Lennoxa00e5f82013-09-17 12:47:03 +1000562 fi
563
Dean Troyerd835de82012-11-29 17:11:35 -0600564 echo "Waiting for keystone to start..."
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000565 # Check that the keystone service is running. Even if the tls tunnel
566 # should be enabled, make sure the internal port is checked using
567 # unencryted traffic at this point.
568 # If running in Apache, use the path rather than port.
569
Dr. Jens Harbott95555ba2021-11-10 06:22:52 +0100570 local service_uri=$auth_protocol://$KEYSTONE_SERVICE_HOST/identity/v3/
Brant Knudson841fdaf2015-06-21 10:08:22 -0500571
572 if ! wait_for_service $SERVICE_TIMEOUT $service_uri; then
Sean Dague101b4242013-10-22 08:47:11 -0400573 die $LINENO "keystone did not start"
Dean Troyerd835de82012-11-29 17:11:35 -0600574 fi
Dean Troyerc83a7e12012-11-29 11:47:58 -0600575
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000576 # Start proxies if enabled
577 if is_service_enabled tls-proxy; then
578 start_tls_proxy keystone-service '*' $KEYSTONE_SERVICE_PORT $KEYSTONE_SERVICE_HOST $KEYSTONE_SERVICE_PORT_INT
Abhishek Kekanef8dbfd32020-07-06 18:42:30 +0000579 fi
580
Morgan Fainberg5997ce32016-01-20 12:43:22 -0800581 # (re)start memcached to make sure we have a clean memcache.
582 restart_service memcached
Dean Troyerd81a0272012-08-31 18:04:55 -0500583}
584
585# stop_keystone() - Stop running processes
Ian Wienandaee18c72014-02-21 15:35:08 +1100586function stop_keystone {
Brant Knudsona0305362016-01-25 13:38:27 -0600587 if [ "$KEYSTONE_DEPLOY" == "mod_wsgi" ]; then
Adam Gandelmanc4b06712014-09-03 11:44:31 -0700588 disable_apache_site keystone
589 restart_apache_server
Matthew Treinish9c5ffd82017-03-29 16:47:57 -0400590 else
Sean Daguebb443112017-04-19 16:22:42 -0400591 stop_process keystone
Adam Gandelmanc4b06712014-09-03 11:44:31 -0700592 fi
Dean Troyerd81a0272012-08-31 18:04:55 -0500593}
Dean Troyer7903b792012-09-13 17:16:12 -0500594
Steve Martinelli923be5f2015-12-20 00:24:19 -0500595# bootstrap_keystone() - Initialize user, role and project
596# This function uses the following GLOBAL variables:
597# - ``KEYSTONE_BIN_DIR``
598# - ``ADMIN_PASSWORD``
Steve Martinelli923be5f2015-12-20 00:24:19 -0500599# - ``REGION_NAME``
Jens Harbottc2491ba2020-06-14 18:06:23 +0200600# - ``KEYSTONE_SERVICE_URI``
Steve Martinelli923be5f2015-12-20 00:24:19 -0500601function bootstrap_keystone {
Jamie Lennox32bf2c42016-03-08 12:24:52 +1100602 $KEYSTONE_BIN_DIR/keystone-manage bootstrap \
603 --bootstrap-username admin \
604 --bootstrap-password "$ADMIN_PASSWORD" \
605 --bootstrap-project-name admin \
606 --bootstrap-role-name admin \
607 --bootstrap-service-name keystone \
608 --bootstrap-region-id "$REGION_NAME" \
Sean Daguebfff93e2017-02-13 16:18:08 -0500609 --bootstrap-public-url "$KEYSTONE_SERVICE_URI"
Jens Harbotteb376572021-02-24 10:04:31 +0100610 if [ "$KEYSTONE_ADMIN_ENDPOINT" == "True" ]; then
611 openstack endpoint create --region "$REGION_NAME" \
612 --os-username admin \
613 --os-user-domain-id default \
614 --os-password "$ADMIN_PASSWORD" \
615 --os-project-name admin \
616 --os-project-domain-id default \
617 keystone admin "$KEYSTONE_SERVICE_URI"
618 fi
Steve Martinelli923be5f2015-12-20 00:24:19 -0500619}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500620
Leticia Wanderleycc363972017-06-26 23:52:52 -0300621# create_ldap_domain() - Create domain file and initialize domain with a user
622function create_ldap_domain {
623 # Creates domain Users
624 openstack --os-identity-api-version=3 domain create --description "LDAP domain" Users
625
626 # Create domain file inside etc/keystone/domains
627 KEYSTONE_LDAP_DOMAIN_FILE=$KEYSTONE_CONF_DIR/domains/keystone.Users.conf
628 mkdir -p "$KEYSTONE_CONF_DIR/domains"
629 touch "$KEYSTONE_LDAP_DOMAIN_FILE"
630
631 # Set identity driver 'ldap'
632 iniset $KEYSTONE_LDAP_DOMAIN_FILE identity driver "ldap"
633
634 # LDAP settings for Users domain
Leticia Wanderleycc363972017-06-26 23:52:52 -0300635 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user_tree_dn "ou=Users,$LDAP_BASE_DN"
636 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user_objectclass "inetOrgPerson"
637 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user_name_attribute "cn"
638 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user_mail_attribute "mail"
639 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user_id_attribute "uid"
640 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap user "cn=Manager,dc=openstack,dc=org"
641 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap url "ldap://localhost"
642 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap suffix $LDAP_BASE_DN
643 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap password $LDAP_PASSWORD
644 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap group_tree_dn "ou=Groups,$LDAP_BASE_DN"
645 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap group_objectclass "groupOfNames"
646 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap group_name_attribute "cn"
647 iniset $KEYSTONE_LDAP_DOMAIN_FILE ldap group_id_attribute "cn"
648
649 # Restart apache and identity services to associate domain and conf file
650 sudo service apache2 reload
651 sudo systemctl restart devstack@keystone
652
653 # Create LDAP user.ldif and add user to LDAP backend
654 local tmp_ldap_dir
655 tmp_ldap_dir=$(mktemp -d -t ldap.$$.XXXXXXXXXX)
656
657 _ldap_varsubst $FILES/ldap/user.ldif.in $slappass >$tmp_ldap_dir/user.ldif
658 sudo ldapadd -x -w $LDAP_PASSWORD -D "$LDAP_MANAGER_DN" -H $LDAP_URL -c -f $tmp_ldap_dir/user.ldif
659 rm -rf $tmp_ldap_dir
660
661 local admin_project
662 admin_project=$(get_or_create_project "admin" default)
663 local ldap_user
664 ldap_user=$(openstack user show --domain=Users demo -f value -c id)
665 local admin_role="admin"
666 get_or_create_role $admin_role
667
668 # Grant demo LDAP user access to project and role
669 get_or_add_user_project_role $admin_role $ldap_user $admin_project
670}
671
Dean Troyer7903b792012-09-13 17:16:12 -0500672# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100673$_XTRACE_KEYSTONE
Sean Dague584d90e2013-03-29 14:34:53 -0400674
Adam Spiers6a5aa7c2013-10-24 11:27:02 +0100675# Tell emacs to use shell-script-mode
676## Local variables:
677## mode: shell-script
678## End: