blob: d00d4a7c6fae6ab11fb46587edce4ac1168b5024 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyerdff49a22014-01-30 15:37:40 -06003# functions-common - Common functions used by DevStack components
4#
5# The canonical copy of this file is maintained in the DevStack repo.
6# All modifications should be made there and then sync'ed to other repos
7# as required.
8#
9# This file is sorted alphabetically within the function groups.
10#
11# - Config Functions
12# - Control Functions
13# - Distro Functions
14# - Git Functions
15# - OpenStack Functions
16# - Package Functions
17# - Process Functions
Dean Troyerdff49a22014-01-30 15:37:40 -060018# - Service Functions
Masayuki Igawaf6368d32014-02-20 13:31:26 +090019# - System Functions
Dean Troyerdff49a22014-01-30 15:37:40 -060020#
21# The following variables are assumed to be defined by certain functions:
22#
23# - ``ENABLED_SERVICES``
24# - ``ERROR_ON_CLONE``
25# - ``FILES``
26# - ``OFFLINE``
Dean Troyerdff49a22014-01-30 15:37:40 -060027# - ``RECLONE``
Masayuki Igawad20f6322014-02-28 09:22:37 +090028# - ``REQUIREMENTS_DIR``
29# - ``STACK_USER``
Dean Troyerdff49a22014-01-30 15:37:40 -060030# - ``TRACK_DEPENDS``
Masayuki Igawad20f6322014-02-28 09:22:37 +090031# - ``UNDO_REQUIREMENTS``
Dean Troyerdff49a22014-01-30 15:37:40 -060032# - ``http_proxy``, ``https_proxy``, ``no_proxy``
Dean Troyer3324f192014-09-18 09:26:39 -050033#
Dean Troyerdff49a22014-01-30 15:37:40 -060034
35# Save trace setting
36XTRACE=$(set +o | grep xtrace)
37set +o xtrace
38
Sean Daguecc524062014-10-01 09:06:43 -040039# Global Config Variables
40declare -A GITREPO
41declare -A GITBRANCH
42declare -A GITDIR
43
Sean Dague53753292014-12-04 19:38:15 -050044TRACK_DEPENDS=${TRACK_DEPENDS:-False}
45
Dean Troyerdff49a22014-01-30 15:37:40 -060046
47# Normalize config values to True or False
48# Accepts as False: 0 no No NO false False FALSE
49# Accepts as True: 1 yes Yes YES true True TRUE
50# VAR=$(trueorfalse default-value test-value)
Ian Wienandaee18c72014-02-21 15:35:08 +110051function trueorfalse {
Sean Dague45917cc2014-02-24 16:09:14 -050052 local xtrace=$(set +o | grep xtrace)
53 set +o xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -060054 local default=$1
Sean Dague53753292014-12-04 19:38:15 -050055 local literal=$2
Dean Troyera1b82cc2015-01-30 13:54:40 -060056 local testval=${!literal:-}
Dean Troyerdff49a22014-01-30 15:37:40 -060057
58 [[ -z "$testval" ]] && { echo "$default"; return; }
59 [[ "0 no No NO false False FALSE" =~ "$testval" ]] && { echo "False"; return; }
60 [[ "1 yes Yes YES true True TRUE" =~ "$testval" ]] && { echo "True"; return; }
61 echo "$default"
Sean Dague45917cc2014-02-24 16:09:14 -050062 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -060063}
64
65
66# Control Functions
67# =================
68
69# Prints backtrace info
70# filename:lineno:function
71# backtrace level
72function backtrace {
73 local level=$1
74 local deep=$((${#BASH_SOURCE[@]} - 1))
75 echo "[Call Trace]"
76 while [ $level -le $deep ]; do
77 echo "${BASH_SOURCE[$deep]}:${BASH_LINENO[$deep-1]}:${FUNCNAME[$deep-1]}"
78 deep=$((deep - 1))
79 done
80}
81
82# Prints line number and "message" then exits
83# die $LINENO "message"
Ian Wienandaee18c72014-02-21 15:35:08 +110084function die {
Dean Troyerdff49a22014-01-30 15:37:40 -060085 local exitcode=$?
86 set +o xtrace
87 local line=$1; shift
88 if [ $exitcode == 0 ]; then
89 exitcode=1
90 fi
91 backtrace 2
92 err $line "$*"
Dean Troyera25a6f62014-02-24 16:03:41 -060093 # Give buffers a second to flush
94 sleep 1
Dean Troyerdff49a22014-01-30 15:37:40 -060095 exit $exitcode
96}
97
98# Checks an environment variable is not set or has length 0 OR if the
99# exit code is non-zero and prints "message" and exits
100# NOTE: env-var is the variable name without a '$'
101# die_if_not_set $LINENO env-var "message"
Ian Wienandaee18c72014-02-21 15:35:08 +1100102function die_if_not_set {
Dean Troyerdff49a22014-01-30 15:37:40 -0600103 local exitcode=$?
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500104 local xtrace=$(set +o | grep xtrace)
Dean Troyerdff49a22014-01-30 15:37:40 -0600105 set +o xtrace
106 local line=$1; shift
107 local evar=$1; shift
108 if ! is_set $evar || [ $exitcode != 0 ]; then
109 die $line "$*"
110 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500111 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -0600112}
113
114# Prints line number and "message" in error format
115# err $LINENO "message"
Ian Wienandaee18c72014-02-21 15:35:08 +1100116function err {
Dean Troyerdff49a22014-01-30 15:37:40 -0600117 local exitcode=$?
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500118 local xtrace=$(set +o | grep xtrace)
Dean Troyerdff49a22014-01-30 15:37:40 -0600119 set +o xtrace
120 local msg="[ERROR] ${BASH_SOURCE[2]}:$1 $2"
121 echo $msg 1>&2;
Dean Troyerdde41d02014-12-09 17:47:57 -0600122 if [[ -n ${LOGDIR} ]]; then
123 echo $msg >> "${LOGDIR}/error.log"
Dean Troyerdff49a22014-01-30 15:37:40 -0600124 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500125 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -0600126 return $exitcode
127}
128
129# Checks an environment variable is not set or has length 0 OR if the
130# exit code is non-zero and prints "message"
131# NOTE: env-var is the variable name without a '$'
132# err_if_not_set $LINENO env-var "message"
Ian Wienandaee18c72014-02-21 15:35:08 +1100133function err_if_not_set {
Dean Troyerdff49a22014-01-30 15:37:40 -0600134 local exitcode=$?
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500135 local xtrace=$(set +o | grep xtrace)
Dean Troyerdff49a22014-01-30 15:37:40 -0600136 set +o xtrace
137 local line=$1; shift
138 local evar=$1; shift
139 if ! is_set $evar || [ $exitcode != 0 ]; then
140 err $line "$*"
141 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500142 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -0600143 return $exitcode
144}
145
146# Exit after outputting a message about the distribution not being supported.
147# exit_distro_not_supported [optional-string-telling-what-is-missing]
148function exit_distro_not_supported {
149 if [[ -z "$DISTRO" ]]; then
150 GetDistro
151 fi
152
153 if [ $# -gt 0 ]; then
154 die $LINENO "Support for $DISTRO is incomplete: no support for $@"
155 else
156 die $LINENO "Support for $DISTRO is incomplete."
157 fi
158}
159
160# Test if the named environment variable is set and not zero length
161# is_set env-var
Ian Wienandaee18c72014-02-21 15:35:08 +1100162function is_set {
Dean Troyerdff49a22014-01-30 15:37:40 -0600163 local var=\$"$1"
164 eval "[ -n \"$var\" ]" # For ex.: sh -c "[ -n \"$var\" ]" would be better, but several exercises depends on this
165}
166
167# Prints line number and "message" in warning format
168# warn $LINENO "message"
Ian Wienandaee18c72014-02-21 15:35:08 +1100169function warn {
Dean Troyerdff49a22014-01-30 15:37:40 -0600170 local exitcode=$?
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500171 local xtrace=$(set +o | grep xtrace)
Dean Troyerdff49a22014-01-30 15:37:40 -0600172 set +o xtrace
173 local msg="[WARNING] ${BASH_SOURCE[2]}:$1 $2"
174 echo $msg 1>&2;
Dean Troyerdde41d02014-12-09 17:47:57 -0600175 if [[ -n ${LOGDIR} ]]; then
176 echo $msg >> "${LOGDIR}/error.log"
Dean Troyerdff49a22014-01-30 15:37:40 -0600177 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500178 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -0600179 return $exitcode
180}
181
182
183# Distro Functions
184# ================
185
186# Determine OS Vendor, Release and Update
187# Tested with OS/X, Ubuntu, RedHat, CentOS, Fedora
188# Returns results in global variables:
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500189# ``os_VENDOR`` - vendor name: ``Ubuntu``, ``Fedora``, etc
190# ``os_RELEASE`` - major release: ``14.04`` (Ubuntu), ``20`` (Fedora)
191# ``os_UPDATE`` - update: ex. the ``5`` in ``RHEL6.5``
192# ``os_PACKAGE`` - package type: ``deb`` or ``rpm``
193# ``os_CODENAME`` - vendor's codename for release: ``snow leopard``, ``trusty``
Sean Dague53753292014-12-04 19:38:15 -0500194os_VENDOR=""
195os_RELEASE=""
196os_UPDATE=""
197os_PACKAGE=""
198os_CODENAME=""
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500199
Dean Troyerdff49a22014-01-30 15:37:40 -0600200# GetOSVersion
Ian Wienandaee18c72014-02-21 15:35:08 +1100201function GetOSVersion {
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500202
Dean Troyerdff49a22014-01-30 15:37:40 -0600203 # Figure out which vendor we are
204 if [[ -x "`which sw_vers 2>/dev/null`" ]]; then
205 # OS/X
206 os_VENDOR=`sw_vers -productName`
207 os_RELEASE=`sw_vers -productVersion`
208 os_UPDATE=${os_RELEASE##*.}
209 os_RELEASE=${os_RELEASE%.*}
210 os_PACKAGE=""
211 if [[ "$os_RELEASE" =~ "10.7" ]]; then
212 os_CODENAME="lion"
213 elif [[ "$os_RELEASE" =~ "10.6" ]]; then
214 os_CODENAME="snow leopard"
215 elif [[ "$os_RELEASE" =~ "10.5" ]]; then
216 os_CODENAME="leopard"
217 elif [[ "$os_RELEASE" =~ "10.4" ]]; then
218 os_CODENAME="tiger"
219 elif [[ "$os_RELEASE" =~ "10.3" ]]; then
220 os_CODENAME="panther"
221 else
222 os_CODENAME=""
223 fi
224 elif [[ -x $(which lsb_release 2>/dev/null) ]]; then
225 os_VENDOR=$(lsb_release -i -s)
226 os_RELEASE=$(lsb_release -r -s)
227 os_UPDATE=""
228 os_PACKAGE="rpm"
229 if [[ "Debian,Ubuntu,LinuxMint" =~ $os_VENDOR ]]; then
230 os_PACKAGE="deb"
231 elif [[ "SUSE LINUX" =~ $os_VENDOR ]]; then
232 lsb_release -d -s | grep -q openSUSE
233 if [[ $? -eq 0 ]]; then
234 os_VENDOR="openSUSE"
235 fi
236 elif [[ $os_VENDOR == "openSUSE project" ]]; then
237 os_VENDOR="openSUSE"
238 elif [[ $os_VENDOR =~ Red.*Hat ]]; then
239 os_VENDOR="Red Hat"
240 fi
241 os_CODENAME=$(lsb_release -c -s)
242 elif [[ -r /etc/redhat-release ]]; then
243 # Red Hat Enterprise Linux Server release 5.5 (Tikanga)
244 # Red Hat Enterprise Linux Server release 7.0 Beta (Maipo)
245 # CentOS release 5.5 (Final)
246 # CentOS Linux release 6.0 (Final)
247 # Fedora release 16 (Verne)
248 # XenServer release 6.2.0-70446c (xenenterprise)
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700249 # Oracle Linux release 7
Dean Troyerdff49a22014-01-30 15:37:40 -0600250 os_CODENAME=""
251 for r in "Red Hat" CentOS Fedora XenServer; do
252 os_VENDOR=$r
253 if [[ -n "`grep \"$r\" /etc/redhat-release`" ]]; then
254 ver=`sed -e 's/^.* \([0-9].*\) (\(.*\)).*$/\1\|\2/' /etc/redhat-release`
255 os_CODENAME=${ver#*|}
256 os_RELEASE=${ver%|*}
257 os_UPDATE=${os_RELEASE##*.}
258 os_RELEASE=${os_RELEASE%.*}
259 break
260 fi
261 os_VENDOR=""
262 done
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700263 if [ "$os_VENDOR" = "Red Hat" ] && [[ -r /etc/oracle-release ]]; then
264 os_VENDOR=OracleLinux
265 fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600266 os_PACKAGE="rpm"
267 elif [[ -r /etc/SuSE-release ]]; then
268 for r in openSUSE "SUSE Linux"; do
269 if [[ "$r" = "SUSE Linux" ]]; then
270 os_VENDOR="SUSE LINUX"
271 else
272 os_VENDOR=$r
273 fi
274
275 if [[ -n "`grep \"$r\" /etc/SuSE-release`" ]]; then
276 os_CODENAME=`grep "CODENAME = " /etc/SuSE-release | sed 's:.* = ::g'`
277 os_RELEASE=`grep "VERSION = " /etc/SuSE-release | sed 's:.* = ::g'`
278 os_UPDATE=`grep "PATCHLEVEL = " /etc/SuSE-release | sed 's:.* = ::g'`
279 break
280 fi
281 os_VENDOR=""
282 done
283 os_PACKAGE="rpm"
284 # If lsb_release is not installed, we should be able to detect Debian OS
285 elif [[ -f /etc/debian_version ]] && [[ $(cat /proc/version) =~ "Debian" ]]; then
286 os_VENDOR="Debian"
287 os_PACKAGE="deb"
288 os_CODENAME=$(awk '/VERSION=/' /etc/os-release | sed 's/VERSION=//' | sed -r 's/\"|\(|\)//g' | awk '{print $2}')
289 os_RELEASE=$(awk '/VERSION_ID=/' /etc/os-release | sed 's/VERSION_ID=//' | sed 's/\"//g')
290 fi
291 export os_VENDOR os_RELEASE os_UPDATE os_PACKAGE os_CODENAME
292}
293
294# Translate the OS version values into common nomenclature
295# Sets global ``DISTRO`` from the ``os_*`` values
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500296declare DISTRO
297
Ian Wienandaee18c72014-02-21 15:35:08 +1100298function GetDistro {
Dean Troyerdff49a22014-01-30 15:37:40 -0600299 GetOSVersion
300 if [[ "$os_VENDOR" =~ (Ubuntu) || "$os_VENDOR" =~ (Debian) ]]; then
301 # 'Everyone' refers to Ubuntu / Debian releases by the code name adjective
302 DISTRO=$os_CODENAME
303 elif [[ "$os_VENDOR" =~ (Fedora) ]]; then
304 # For Fedora, just use 'f' and the release
305 DISTRO="f$os_RELEASE"
306 elif [[ "$os_VENDOR" =~ (openSUSE) ]]; then
307 DISTRO="opensuse-$os_RELEASE"
308 elif [[ "$os_VENDOR" =~ (SUSE LINUX) ]]; then
309 # For SLE, also use the service pack
310 if [[ -z "$os_UPDATE" ]]; then
311 DISTRO="sle${os_RELEASE}"
312 else
313 DISTRO="sle${os_RELEASE}sp${os_UPDATE}"
314 fi
anju Tiwari6c639c92014-07-15 18:11:54 +0530315 elif [[ "$os_VENDOR" =~ (Red Hat) || \
316 "$os_VENDOR" =~ (CentOS) || \
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700317 "$os_VENDOR" =~ (OracleLinux) ]]; then
Dean Troyerdff49a22014-01-30 15:37:40 -0600318 # Drop the . release as we assume it's compatible
319 DISTRO="rhel${os_RELEASE::1}"
320 elif [[ "$os_VENDOR" =~ (XenServer) ]]; then
321 DISTRO="xs$os_RELEASE"
322 else
323 # Catch-all for now is Vendor + Release + Update
324 DISTRO="$os_VENDOR-$os_RELEASE.$os_UPDATE"
325 fi
326 export DISTRO
327}
328
329# Utility function for checking machine architecture
330# is_arch arch-type
331function is_arch {
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500332 [[ "$(uname -m)" == "$1" ]]
Dean Troyerdff49a22014-01-30 15:37:40 -0600333}
334
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700335# Determine if current distribution is an Oracle distribution
336# is_oraclelinux
337function is_oraclelinux {
338 if [[ -z "$os_VENDOR" ]]; then
339 GetOSVersion
340 fi
341
342 [ "$os_VENDOR" = "OracleLinux" ]
343}
344
345
Dean Troyerdff49a22014-01-30 15:37:40 -0600346# Determine if current distribution is a Fedora-based distribution
347# (Fedora, RHEL, CentOS, etc).
348# is_fedora
349function is_fedora {
350 if [[ -z "$os_VENDOR" ]]; then
351 GetOSVersion
352 fi
353
anju Tiwari6c639c92014-07-15 18:11:54 +0530354 [ "$os_VENDOR" = "Fedora" ] || [ "$os_VENDOR" = "Red Hat" ] || \
Wiekus Beukesec47bc12015-03-19 08:20:38 -0700355 [ "$os_VENDOR" = "CentOS" ] || [ "$os_VENDOR" = "OracleLinux" ]
Dean Troyerdff49a22014-01-30 15:37:40 -0600356}
357
358
359# Determine if current distribution is a SUSE-based distribution
360# (openSUSE, SLE).
361# is_suse
362function is_suse {
363 if [[ -z "$os_VENDOR" ]]; then
364 GetOSVersion
365 fi
366
367 [ "$os_VENDOR" = "openSUSE" ] || [ "$os_VENDOR" = "SUSE LINUX" ]
368}
369
370
371# Determine if current distribution is an Ubuntu-based distribution
372# It will also detect non-Ubuntu but Debian-based distros
373# is_ubuntu
374function is_ubuntu {
375 if [[ -z "$os_PACKAGE" ]]; then
376 GetOSVersion
377 fi
378 [ "$os_PACKAGE" = "deb" ]
379}
380
381
382# Git Functions
383# =============
384
Dean Troyerabc7b1d2014-02-12 12:09:22 -0600385# Returns openstack release name for a given branch name
386# ``get_release_name_from_branch branch-name``
Ian Wienandaee18c72014-02-21 15:35:08 +1100387function get_release_name_from_branch {
Dean Troyerabc7b1d2014-02-12 12:09:22 -0600388 local branch=$1
Adam Gandelman8f385722014-10-14 15:50:18 -0700389 if [[ $branch =~ "stable/" || $branch =~ "proposed/" ]]; then
Dean Troyerabc7b1d2014-02-12 12:09:22 -0600390 echo ${branch#*/}
391 else
392 echo "master"
393 fi
394}
395
Dean Troyerdff49a22014-01-30 15:37:40 -0600396# git clone only if directory doesn't exist already. Since ``DEST`` might not
397# be owned by the installation user, we create the directory and change the
398# ownership to the proper user.
Dean Troyer50cda692014-07-25 11:57:20 -0500399# Set global ``RECLONE=yes`` to simulate a clone when dest-dir exists
400# Set global ``ERROR_ON_CLONE=True`` to abort execution with an error if the git repo
Dean Troyerdff49a22014-01-30 15:37:40 -0600401# does not exist (default is False, meaning the repo will be cloned).
Sean Dague53753292014-12-04 19:38:15 -0500402# Uses globals ``ERROR_ON_CLONE``, ``OFFLINE``, ``RECLONE``
Dean Troyerdff49a22014-01-30 15:37:40 -0600403# git_clone remote dest-dir branch
404function git_clone {
Dean Troyer50cda692014-07-25 11:57:20 -0500405 local git_remote=$1
406 local git_dest=$2
407 local git_ref=$3
408 local orig_dir=$(pwd)
Jamie Lennox51f0de52014-10-20 16:32:34 +0200409 local git_clone_flags=""
Dean Troyer50cda692014-07-25 11:57:20 -0500410
Sean Dague53753292014-12-04 19:38:15 -0500411 RECLONE=$(trueorfalse False RECLONE)
Kevin Benton59d52f32015-01-17 11:29:12 -0800412 if [[ "${GIT_DEPTH}" -gt 0 ]]; then
Jamie Lennox51f0de52014-10-20 16:32:34 +0200413 git_clone_flags="$git_clone_flags --depth $GIT_DEPTH"
414 fi
415
Dean Troyerdff49a22014-01-30 15:37:40 -0600416 if [[ "$OFFLINE" = "True" ]]; then
417 echo "Running in offline mode, clones already exist"
418 # print out the results so we know what change was used in the logs
Dean Troyer50cda692014-07-25 11:57:20 -0500419 cd $git_dest
Dean Troyerdff49a22014-01-30 15:37:40 -0600420 git show --oneline | head -1
Sean Dague64bd0162014-03-12 13:04:22 -0400421 cd $orig_dir
Dean Troyerdff49a22014-01-30 15:37:40 -0600422 return
423 fi
424
Dean Troyer50cda692014-07-25 11:57:20 -0500425 if echo $git_ref | egrep -q "^refs"; then
Dean Troyerdff49a22014-01-30 15:37:40 -0600426 # If our branch name is a gerrit style refs/changes/...
Dean Troyer50cda692014-07-25 11:57:20 -0500427 if [[ ! -d $git_dest ]]; then
Dean Troyerdff49a22014-01-30 15:37:40 -0600428 [[ "$ERROR_ON_CLONE" = "True" ]] && \
429 die $LINENO "Cloning not allowed in this configuration"
Jamie Lennox51f0de52014-10-20 16:32:34 +0200430 git_timed clone $git_clone_flags $git_remote $git_dest
Dean Troyerdff49a22014-01-30 15:37:40 -0600431 fi
Dean Troyer50cda692014-07-25 11:57:20 -0500432 cd $git_dest
433 git_timed fetch $git_remote $git_ref && git checkout FETCH_HEAD
Dean Troyerdff49a22014-01-30 15:37:40 -0600434 else
435 # do a full clone only if the directory doesn't exist
Dean Troyer50cda692014-07-25 11:57:20 -0500436 if [[ ! -d $git_dest ]]; then
Dean Troyerdff49a22014-01-30 15:37:40 -0600437 [[ "$ERROR_ON_CLONE" = "True" ]] && \
438 die $LINENO "Cloning not allowed in this configuration"
Jamie Lennox51f0de52014-10-20 16:32:34 +0200439 git_timed clone $git_clone_flags $git_remote $git_dest
Dean Troyer50cda692014-07-25 11:57:20 -0500440 cd $git_dest
Dean Troyerdff49a22014-01-30 15:37:40 -0600441 # This checkout syntax works for both branches and tags
Dean Troyer50cda692014-07-25 11:57:20 -0500442 git checkout $git_ref
Dean Troyerdff49a22014-01-30 15:37:40 -0600443 elif [[ "$RECLONE" = "True" ]]; then
444 # if it does exist then simulate what clone does if asked to RECLONE
Dean Troyer50cda692014-07-25 11:57:20 -0500445 cd $git_dest
Dean Troyerdff49a22014-01-30 15:37:40 -0600446 # set the url to pull from and fetch
Dean Troyer50cda692014-07-25 11:57:20 -0500447 git remote set-url origin $git_remote
Ian Wienandd53ad0b2014-02-20 13:55:13 +1100448 git_timed fetch origin
Dean Troyerdff49a22014-01-30 15:37:40 -0600449 # remove the existing ignored files (like pyc) as they cause breakage
450 # (due to the py files having older timestamps than our pyc, so python
451 # thinks the pyc files are correct using them)
Dean Troyer50cda692014-07-25 11:57:20 -0500452 find $git_dest -name '*.pyc' -delete
Dean Troyerdff49a22014-01-30 15:37:40 -0600453
Dean Troyer50cda692014-07-25 11:57:20 -0500454 # handle git_ref accordingly to type (tag, branch)
455 if [[ -n "`git show-ref refs/tags/$git_ref`" ]]; then
456 git_update_tag $git_ref
457 elif [[ -n "`git show-ref refs/heads/$git_ref`" ]]; then
458 git_update_branch $git_ref
459 elif [[ -n "`git show-ref refs/remotes/origin/$git_ref`" ]]; then
460 git_update_remote_branch $git_ref
Dean Troyerdff49a22014-01-30 15:37:40 -0600461 else
Dean Troyer50cda692014-07-25 11:57:20 -0500462 die $LINENO "$git_ref is neither branch nor tag"
Dean Troyerdff49a22014-01-30 15:37:40 -0600463 fi
464
465 fi
466 fi
467
468 # print out the results so we know what change was used in the logs
Dean Troyer50cda692014-07-25 11:57:20 -0500469 cd $git_dest
Dean Troyerdff49a22014-01-30 15:37:40 -0600470 git show --oneline | head -1
Sean Dague64bd0162014-03-12 13:04:22 -0400471 cd $orig_dir
Dean Troyerdff49a22014-01-30 15:37:40 -0600472}
473
Sean Daguecc524062014-10-01 09:06:43 -0400474# A variation on git clone that lets us specify a project by it's
475# actual name, like oslo.config. This is exceptionally useful in the
476# library installation case
477function git_clone_by_name {
478 local name=$1
479 local repo=${GITREPO[$name]}
480 local dir=${GITDIR[$name]}
481 local branch=${GITBRANCH[$name]}
482 git_clone $repo $dir $branch
483}
484
485
Ian Wienandd53ad0b2014-02-20 13:55:13 +1100486# git can sometimes get itself infinitely stuck with transient network
487# errors or other issues with the remote end. This wraps git in a
488# timeout/retry loop and is intended to watch over non-local git
489# processes that might hang. GIT_TIMEOUT, if set, is passed directly
490# to timeout(1); otherwise the default value of 0 maintains the status
491# quo of waiting forever.
492# usage: git_timed <git-command>
Ian Wienandaee18c72014-02-21 15:35:08 +1100493function git_timed {
Ian Wienandd53ad0b2014-02-20 13:55:13 +1100494 local count=0
495 local timeout=0
496
497 if [[ -n "${GIT_TIMEOUT}" ]]; then
498 timeout=${GIT_TIMEOUT}
499 fi
500
501 until timeout -s SIGINT ${timeout} git "$@"; do
502 # 124 is timeout(1)'s special return code when it reached the
503 # timeout; otherwise assume fatal failure
504 if [[ $? -ne 124 ]]; then
505 die $LINENO "git call failed: [git $@]"
506 fi
507
508 count=$(($count + 1))
509 warn "timeout ${count} for git call: [git $@]"
510 if [ $count -eq 3 ]; then
511 die $LINENO "Maximum of 3 git retries reached"
512 fi
513 sleep 5
514 done
515}
516
Dean Troyerdff49a22014-01-30 15:37:40 -0600517# git update using reference as a branch.
518# git_update_branch ref
Ian Wienandaee18c72014-02-21 15:35:08 +1100519function git_update_branch {
Dean Troyer50cda692014-07-25 11:57:20 -0500520 local git_branch=$1
Dean Troyerdff49a22014-01-30 15:37:40 -0600521
Dean Troyer50cda692014-07-25 11:57:20 -0500522 git checkout -f origin/$git_branch
Dean Troyerdff49a22014-01-30 15:37:40 -0600523 # a local branch might not exist
Dean Troyer50cda692014-07-25 11:57:20 -0500524 git branch -D $git_branch || true
525 git checkout -b $git_branch
Dean Troyerdff49a22014-01-30 15:37:40 -0600526}
527
528# git update using reference as a branch.
529# git_update_remote_branch ref
Ian Wienandaee18c72014-02-21 15:35:08 +1100530function git_update_remote_branch {
Dean Troyer50cda692014-07-25 11:57:20 -0500531 local git_branch=$1
Dean Troyerdff49a22014-01-30 15:37:40 -0600532
Dean Troyer50cda692014-07-25 11:57:20 -0500533 git checkout -b $git_branch -t origin/$git_branch
Dean Troyerdff49a22014-01-30 15:37:40 -0600534}
535
536# git update using reference as a tag. Be careful editing source at that repo
537# as working copy will be in a detached mode
538# git_update_tag ref
Ian Wienandaee18c72014-02-21 15:35:08 +1100539function git_update_tag {
Dean Troyer50cda692014-07-25 11:57:20 -0500540 local git_tag=$1
Dean Troyerdff49a22014-01-30 15:37:40 -0600541
Dean Troyer50cda692014-07-25 11:57:20 -0500542 git tag -d $git_tag
Dean Troyerdff49a22014-01-30 15:37:40 -0600543 # fetching given tag only
Dean Troyer50cda692014-07-25 11:57:20 -0500544 git_timed fetch origin tag $git_tag
545 git checkout -f $git_tag
Dean Troyerdff49a22014-01-30 15:37:40 -0600546}
547
548
549# OpenStack Functions
550# ===================
551
552# Get the default value for HOST_IP
553# get_default_host_ip fixed_range floating_range host_ip_iface host_ip
Ian Wienandaee18c72014-02-21 15:35:08 +1100554function get_default_host_ip {
Dean Troyerdff49a22014-01-30 15:37:40 -0600555 local fixed_range=$1
556 local floating_range=$2
557 local host_ip_iface=$3
558 local host_ip=$4
559
Dean Troyerdff49a22014-01-30 15:37:40 -0600560 # Search for an IP unless an explicit is set by ``HOST_IP`` environment variable
561 if [ -z "$host_ip" -o "$host_ip" == "dhcp" ]; then
562 host_ip=""
Andreas Scheuringa3430272015-03-09 16:55:32 +0100563 # Find the interface used for the default route
564 host_ip_iface=${host_ip_iface:-$(ip route | awk '/default/ {print $5}' | head -1)}
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500565 local host_ips=$(LC_ALL=C ip -f inet addr show ${host_ip_iface} | awk '/inet/ {split($2,parts,"/"); print parts[1]}')
566 local ip
567 for ip in $host_ips; do
Dean Troyerdff49a22014-01-30 15:37:40 -0600568 # Attempt to filter out IP addresses that are part of the fixed and
569 # floating range. Note that this method only works if the ``netaddr``
570 # python library is installed. If it is not installed, an error
571 # will be printed and the first IP from the interface will be used.
572 # If that is not correct set ``HOST_IP`` in ``localrc`` to the correct
573 # address.
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500574 if ! (address_in_net $ip $fixed_range || address_in_net $ip $floating_range); then
575 host_ip=$ip
Dean Troyerdff49a22014-01-30 15:37:40 -0600576 break;
577 fi
578 done
579 fi
580 echo $host_ip
581}
582
Attila Fazekasf71b5002014-05-28 09:52:22 +0200583# Generates hex string from ``size`` byte of pseudo random data
584# generate_hex_string size
585function generate_hex_string {
586 local size=$1
587 hexdump -n "$size" -v -e '/1 "%02x"' /dev/urandom
588}
589
Dean Troyerdff49a22014-01-30 15:37:40 -0600590# Grab a numbered field from python prettytable output
591# Fields are numbered starting with 1
592# Reverse syntax is supported: -1 is the last field, -2 is second to last, etc.
593# get_field field-number
Ian Wienandaee18c72014-02-21 15:35:08 +1100594function get_field {
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500595 local data field
Dean Troyerdff49a22014-01-30 15:37:40 -0600596 while read data; do
597 if [ "$1" -lt 0 ]; then
598 field="(\$(NF$1))"
599 else
600 field="\$$(($1 + 1))"
601 fi
602 echo "$data" | awk -F'[ \t]*\\|[ \t]*' "{print $field}"
603 done
604}
605
606# Add a policy to a policy.json file
607# Do nothing if the policy already exists
608# ``policy_add policy_file policy_name policy_permissions``
Ian Wienandaee18c72014-02-21 15:35:08 +1100609function policy_add {
Dean Troyerdff49a22014-01-30 15:37:40 -0600610 local policy_file=$1
611 local policy_name=$2
612 local policy_perm=$3
613
614 if grep -q ${policy_name} ${policy_file}; then
615 echo "Policy ${policy_name} already exists in ${policy_file}"
616 return
617 fi
618
619 # Add a terminating comma to policy lines without one
620 # Remove the closing '}' and all lines following to the end-of-file
621 local tmpfile=$(mktemp)
622 uniq ${policy_file} | sed -e '
623 s/]$/],/
624 /^[}]/,$d
625 ' > ${tmpfile}
626
627 # Append policy and closing brace
628 echo " \"${policy_name}\": ${policy_perm}" >>${tmpfile}
629 echo "}" >>${tmpfile}
630
631 mv ${tmpfile} ${policy_file}
632}
633
Alistair Coles24779f62014-10-15 18:57:59 +0100634# Gets or creates a domain
635# Usage: get_or_create_domain <name> <description>
636function get_or_create_domain {
Steve Martinellib74e01c2014-12-18 01:35:35 -0500637 local os_url="$KEYSTONE_SERVICE_URI_V3"
Alistair Coles24779f62014-10-15 18:57:59 +0100638 # Gets domain id
639 local domain_id=$(
640 # Gets domain id
641 openstack --os-token=$OS_TOKEN --os-url=$os_url \
642 --os-identity-api-version=3 domain show $1 \
643 -f value -c id 2>/dev/null ||
644 # Creates new domain
645 openstack --os-token=$OS_TOKEN --os-url=$os_url \
646 --os-identity-api-version=3 domain create $1 \
647 --description "$2" \
648 -f value -c id
649 )
650 echo $domain_id
651}
652
Steve Martinellib74e01c2014-12-18 01:35:35 -0500653# Gets or creates group
654# Usage: get_or_create_group <groupname> [<domain> <description>]
655function get_or_create_group {
656 local domain=${2:+--domain ${2}}
657 local desc="${3:-}"
658 local os_url="$KEYSTONE_SERVICE_URI_V3"
659 # Gets group id
660 local group_id=$(
661 # Creates new group with --or-show
662 openstack --os-token=$OS_TOKEN --os-url=$os_url \
663 --os-identity-api-version=3 group create $1 \
664 $domain --description "$desc" --or-show \
665 -f value -c id
666 )
667 echo $group_id
668}
669
Bartosz Górski0abde392014-02-28 14:15:19 +0100670# Gets or creates user
Jamie Lennox18f39bf2015-01-28 13:38:32 +1000671# Usage: get_or_create_user <username> <password> [<email> [<domain>]]
Bartosz Górski0abde392014-02-28 14:15:19 +0100672function get_or_create_user {
Jamie Lennox18f39bf2015-01-28 13:38:32 +1000673 if [[ ! -z "$3" ]]; then
674 local email="--email=$3"
Gael Chamoulaud6dd8a8b2014-07-22 01:12:12 +0200675 else
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500676 local email=""
Gael Chamoulaud6dd8a8b2014-07-22 01:12:12 +0200677 fi
Alistair Coles24779f62014-10-15 18:57:59 +0100678 local os_cmd="openstack"
679 local domain=""
Jamie Lennox18f39bf2015-01-28 13:38:32 +1000680 if [[ ! -z "$4" ]]; then
681 domain="--domain=$4"
Steve Martinellib74e01c2014-12-18 01:35:35 -0500682 os_cmd="$os_cmd --os-url=$KEYSTONE_SERVICE_URI_V3 --os-identity-api-version=3"
Alistair Coles24779f62014-10-15 18:57:59 +0100683 fi
Bartosz Górski0abde392014-02-28 14:15:19 +0100684 # Gets user id
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500685 local user_id=$(
Steve Martinelli245daa22014-11-14 02:17:22 -0500686 # Creates new user with --or-show
Alistair Coles24779f62014-10-15 18:57:59 +0100687 $os_cmd user create \
Bartosz Górski0abde392014-02-28 14:15:19 +0100688 $1 \
689 --password "$2" \
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500690 $email \
Alistair Coles24779f62014-10-15 18:57:59 +0100691 $domain \
Steve Martinelli245daa22014-11-14 02:17:22 -0500692 --or-show \
Bartosz Górski0abde392014-02-28 14:15:19 +0100693 -f value -c id
694 )
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500695 echo $user_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100696}
697
698# Gets or creates project
Alistair Coles24779f62014-10-15 18:57:59 +0100699# Usage: get_or_create_project <name> [<domain>]
Bartosz Górski0abde392014-02-28 14:15:19 +0100700function get_or_create_project {
701 # Gets project id
Alistair Coles24779f62014-10-15 18:57:59 +0100702 local os_cmd="openstack"
703 local domain=""
704 if [[ ! -z "$2" ]]; then
705 domain="--domain=$2"
Steve Martinellib74e01c2014-12-18 01:35:35 -0500706 os_cmd="$os_cmd --os-url=$KEYSTONE_SERVICE_URI_V3 --os-identity-api-version=3"
Alistair Coles24779f62014-10-15 18:57:59 +0100707 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500708 local project_id=$(
Steve Martinelli245daa22014-11-14 02:17:22 -0500709 # Creates new project with --or-show
710 $os_cmd project create $1 $domain --or-show -f value -c id
Bartosz Górski0abde392014-02-28 14:15:19 +0100711 )
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500712 echo $project_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100713}
714
715# Gets or creates role
716# Usage: get_or_create_role <name>
717function get_or_create_role {
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500718 local role_id=$(
Steve Martinelli245daa22014-11-14 02:17:22 -0500719 # Creates role with --or-show
720 openstack role create $1 --or-show -f value -c id
Bartosz Górski0abde392014-02-28 14:15:19 +0100721 )
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500722 echo $role_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100723}
724
Jamie Lennox9b215db2015-02-10 18:19:57 +1100725# Gets or adds user role to project
726# Usage: get_or_add_user_project_role <role> <user> <project>
727function get_or_add_user_project_role {
Bartosz Górski0abde392014-02-28 14:15:19 +0100728 # Gets user role id
Steve Martinelli5541a612015-01-19 15:58:49 -0500729 local user_role_id=$(openstack role list \
730 --user $2 \
Bartosz Górski0abde392014-02-28 14:15:19 +0100731 --project $3 \
732 --column "ID" \
733 --column "Name" \
734 | grep " $1 " | get_field 1)
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500735 if [[ -z "$user_role_id" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100736 # Adds role to user
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500737 user_role_id=$(openstack role add \
Bartosz Górski0abde392014-02-28 14:15:19 +0100738 $1 \
739 --user $2 \
740 --project $3 \
741 | grep " id " | get_field 2)
742 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500743 echo $user_role_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100744}
745
746# Gets or creates service
747# Usage: get_or_create_service <name> <type> <description>
748function get_or_create_service {
749 # Gets service id
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500750 local service_id=$(
Bartosz Górski0abde392014-02-28 14:15:19 +0100751 # Gets service id
752 openstack service show $1 -f value -c id 2>/dev/null ||
753 # Creates new service if not exists
754 openstack service create \
Steve Martinelli789af5c2015-01-19 16:11:44 -0500755 $2 \
756 --name $1 \
Bartosz Górski0abde392014-02-28 14:15:19 +0100757 --description="$3" \
758 -f value -c id
759 )
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500760 echo $service_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100761}
762
763# Gets or creates endpoint
764# Usage: get_or_create_endpoint <service> <region> <publicurl> <adminurl> <internalurl>
765function get_or_create_endpoint {
766 # Gets endpoint id
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500767 local endpoint_id=$(openstack endpoint list \
Bartosz Górski0abde392014-02-28 14:15:19 +0100768 --column "ID" \
769 --column "Region" \
770 --column "Service Name" \
771 | grep " $2 " \
772 | grep " $1 " | get_field 1)
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500773 if [[ -z "$endpoint_id" ]]; then
Bartosz Górski0abde392014-02-28 14:15:19 +0100774 # Creates new endpoint
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500775 endpoint_id=$(openstack endpoint create \
Bartosz Górski0abde392014-02-28 14:15:19 +0100776 $1 \
777 --region $2 \
778 --publicurl $3 \
779 --adminurl $4 \
780 --internalurl $5 \
781 | grep " id " | get_field 2)
782 fi
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500783 echo $endpoint_id
Bartosz Górski0abde392014-02-28 14:15:19 +0100784}
Dean Troyerdff49a22014-01-30 15:37:40 -0600785
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500786
Dean Troyerdff49a22014-01-30 15:37:40 -0600787# Package Functions
788# =================
789
790# _get_package_dir
Ian Wienandaee18c72014-02-21 15:35:08 +1100791function _get_package_dir {
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800792 local base_dir=$1
Dean Troyerdff49a22014-01-30 15:37:40 -0600793 local pkg_dir
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800794
795 if [[ -z "$base_dir" ]]; then
796 base_dir=$FILES
797 fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600798 if is_ubuntu; then
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800799 pkg_dir=$base_dir/debs
Dean Troyerdff49a22014-01-30 15:37:40 -0600800 elif is_fedora; then
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800801 pkg_dir=$base_dir/rpms
Dean Troyerdff49a22014-01-30 15:37:40 -0600802 elif is_suse; then
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800803 pkg_dir=$base_dir/rpms-suse
Dean Troyerdff49a22014-01-30 15:37:40 -0600804 else
805 exit_distro_not_supported "list of packages"
806 fi
807 echo "$pkg_dir"
808}
809
810# Wrapper for ``apt-get`` to set cache and proxy environment variables
811# Uses globals ``OFFLINE``, ``*_proxy``
812# apt_get operation package [package ...]
Ian Wienandaee18c72014-02-21 15:35:08 +1100813function apt_get {
Sean Dague45917cc2014-02-24 16:09:14 -0500814 local xtrace=$(set +o | grep xtrace)
815 set +o xtrace
816
Dean Troyerdff49a22014-01-30 15:37:40 -0600817 [[ "$OFFLINE" = "True" || -z "$@" ]] && return
818 local sudo="sudo"
819 [[ "$(id -u)" = "0" ]] && sudo="env"
Sean Dague45917cc2014-02-24 16:09:14 -0500820
821 $xtrace
Sean Dague53753292014-12-04 19:38:15 -0500822
Dean Troyerdff49a22014-01-30 15:37:40 -0600823 $sudo DEBIAN_FRONTEND=noninteractive \
Sean Dague53753292014-12-04 19:38:15 -0500824 http_proxy=${http_proxy:-} https_proxy=${https_proxy:-} \
825 no_proxy=${no_proxy:-} \
Dean Troyerdff49a22014-01-30 15:37:40 -0600826 apt-get --option "Dpkg::Options::=--force-confold" --assume-yes "$@"
827}
828
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800829function _parse_package_files {
830 local files_to_parse=$@
Dean Troyerdff49a22014-01-30 15:37:40 -0600831
Dean Troyerdff49a22014-01-30 15:37:40 -0600832 if [[ -z "$DISTRO" ]]; then
833 GetDistro
834 fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600835
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800836 for fname in ${files_to_parse}; do
Dean Troyerdff49a22014-01-30 15:37:40 -0600837 local OIFS line package distros distro
838 [[ -e $fname ]] || continue
839
840 OIFS=$IFS
841 IFS=$'\n'
842 for line in $(<${fname}); do
843 if [[ $line =~ "NOPRIME" ]]; then
844 continue
845 fi
846
847 # Assume we want this package
848 package=${line%#*}
849 inst_pkg=1
850
851 # Look for # dist:xxx in comment
852 if [[ $line =~ (.*)#.*dist:([^ ]*) ]]; then
853 # We are using BASH regexp matching feature.
854 package=${BASH_REMATCH[1]}
855 distros=${BASH_REMATCH[2]}
856 # In bash ${VAR,,} will lowecase VAR
857 # Look for a match in the distro list
858 if [[ ! ${distros,,} =~ ${DISTRO,,} ]]; then
859 # If no match then skip this package
860 inst_pkg=0
861 fi
862 fi
863
864 # Look for # testonly in comment
865 if [[ $line =~ (.*)#.*testonly.* ]]; then
866 package=${BASH_REMATCH[1]}
867 # Are we installing test packages? (test for the default value)
868 if [[ $INSTALL_TESTONLY_PACKAGES = "False" ]]; then
869 # If not installing test packages the skip this package
870 inst_pkg=0
871 fi
872 fi
873
874 if [[ $inst_pkg = 1 ]]; then
875 echo $package
876 fi
877 done
878 IFS=$OIFS
879 done
Adam Gandelman7ca90cd2015-03-04 17:25:07 -0800880}
881
882# get_packages() collects a list of package names of any type from the
883# prerequisite files in ``files/{debs|rpms}``. The list is intended
884# to be passed to a package installer such as apt or yum.
885#
886# Only packages required for the services in 1st argument will be
887# included. Two bits of metadata are recognized in the prerequisite files:
888#
889# - ``# NOPRIME`` defers installation to be performed later in `stack.sh`
890# - ``# dist:DISTRO`` or ``dist:DISTRO1,DISTRO2`` limits the selection
891# of the package to the distros listed. The distro names are case insensitive.
892function get_packages {
893 local xtrace=$(set +o | grep xtrace)
894 set +o xtrace
895 local services=$@
896 local package_dir=$(_get_package_dir)
897 local file_to_parse=""
898 local service=""
899
900 INSTALL_TESTONLY_PACKAGES=$(trueorfalse False INSTALL_TESTONLY_PACKAGES)
901
902 if [[ -z "$package_dir" ]]; then
903 echo "No package directory supplied"
904 return 1
905 fi
906 for service in ${services//,/ }; do
907 # Allow individual services to specify dependencies
908 if [[ -e ${package_dir}/${service} ]]; then
909 file_to_parse="${file_to_parse} ${package_dir}/${service}"
910 fi
911 # NOTE(sdague) n-api needs glance for now because that's where
912 # glance client is
913 if [[ $service == n-api ]]; then
914 if [[ ! $file_to_parse =~ nova ]]; then
915 file_to_parse="${file_to_parse} ${package_dir}/nova"
916 fi
917 if [[ ! $file_to_parse =~ glance ]]; then
918 file_to_parse="${file_to_parse} ${package_dir}/glance"
919 fi
920 elif [[ $service == c-* ]]; then
921 if [[ ! $file_to_parse =~ cinder ]]; then
922 file_to_parse="${file_to_parse} ${package_dir}/cinder"
923 fi
924 elif [[ $service == ceilometer-* ]]; then
925 if [[ ! $file_to_parse =~ ceilometer ]]; then
926 file_to_parse="${file_to_parse} ${package_dir}/ceilometer"
927 fi
928 elif [[ $service == s-* ]]; then
929 if [[ ! $file_to_parse =~ swift ]]; then
930 file_to_parse="${file_to_parse} ${package_dir}/swift"
931 fi
932 elif [[ $service == n-* ]]; then
933 if [[ ! $file_to_parse =~ nova ]]; then
934 file_to_parse="${file_to_parse} ${package_dir}/nova"
935 fi
936 elif [[ $service == g-* ]]; then
937 if [[ ! $file_to_parse =~ glance ]]; then
938 file_to_parse="${file_to_parse} ${package_dir}/glance"
939 fi
940 elif [[ $service == key* ]]; then
941 if [[ ! $file_to_parse =~ keystone ]]; then
942 file_to_parse="${file_to_parse} ${package_dir}/keystone"
943 fi
944 elif [[ $service == q-* ]]; then
945 if [[ ! $file_to_parse =~ neutron ]]; then
946 file_to_parse="${file_to_parse} ${package_dir}/neutron"
947 fi
948 elif [[ $service == ir-* ]]; then
949 if [[ ! $file_to_parse =~ ironic ]]; then
950 file_to_parse="${file_to_parse} ${package_dir}/ironic"
951 fi
952 fi
953 done
954 echo "$(_parse_package_files $file_to_parse)"
955 $xtrace
956}
957
958# get_plugin_packages() collects a list of package names of any type from a
959# plugin's prerequisite files in ``$PLUGIN/devstack/files/{debs|rpms}``. The
960# list is intended to be passed to a package installer such as apt or yum.
961#
962# Only packages required for enabled and collected plugins will included.
963#
964# The same metadata used in the main devstack prerequisite files may be used
965# in these prerequisite files, see get_packages() for more info.
966function get_plugin_packages {
967 local xtrace=$(set +o | grep xtrace)
968 set +o xtrace
969 local files_to_parse=""
970 local package_dir=""
971 for plugin in ${DEVSTACK_PLUGINS//,/ }; do
972 local package_dir="$(_get_package_dir ${GITDIR[$plugin]}/devstack/files)"
973 files_to_parse+="$package_dir/$plugin"
974 done
975 echo "$(_parse_package_files $files_to_parse)"
Sean Dague45917cc2014-02-24 16:09:14 -0500976 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -0600977}
978
979# Distro-agnostic package installer
Dean Troyerd5dfa4c2014-07-25 11:13:11 -0500980# Uses globals ``NO_UPDATE_REPOS``, ``REPOS_UPDATED``, ``RETRY_UPDATE``
Dean Troyerdff49a22014-01-30 15:37:40 -0600981# install_package package [package ...]
Monty Taylor5cc6d2c2014-06-06 08:45:16 -0400982function update_package_repo {
Sean Dague53753292014-12-04 19:38:15 -0500983 NO_UPDATE_REPOS=${NO_UPDATE_REPOS:-False}
984 REPOS_UPDATED=${REPOS_UPDATED:-False}
985 RETRY_UPDATE=${RETRY_UPDATE:-False}
986
Paul Linchpiner9e179742014-07-13 22:23:00 -0700987 if [[ "$NO_UPDATE_REPOS" = "True" ]]; then
Monty Taylor5cc6d2c2014-06-06 08:45:16 -0400988 return 0
989 fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600990
Monty Taylor5cc6d2c2014-06-06 08:45:16 -0400991 if is_ubuntu; then
992 local xtrace=$(set +o | grep xtrace)
993 set +o xtrace
994 if [[ "$REPOS_UPDATED" != "True" || "$RETRY_UPDATE" = "True" ]]; then
995 # if there are transient errors pulling the updates, that's fine.
996 # It may be secondary repositories that we don't really care about.
997 apt_get update || /bin/true
998 REPOS_UPDATED=True
999 fi
Sean Dague45917cc2014-02-24 16:09:14 -05001000 $xtrace
Monty Taylor5cc6d2c2014-06-06 08:45:16 -04001001 fi
1002}
1003
1004function real_install_package {
1005 if is_ubuntu; then
Dean Troyerdff49a22014-01-30 15:37:40 -06001006 apt_get install "$@"
1007 elif is_fedora; then
1008 yum_install "$@"
1009 elif is_suse; then
1010 zypper_install "$@"
1011 else
1012 exit_distro_not_supported "installing packages"
1013 fi
1014}
1015
Monty Taylor5cc6d2c2014-06-06 08:45:16 -04001016# Distro-agnostic package installer
1017# install_package package [package ...]
1018function install_package {
1019 update_package_repo
1020 real_install_package $@ || RETRY_UPDATE=True update_package_repo && real_install_package $@
1021}
1022
Dean Troyerdff49a22014-01-30 15:37:40 -06001023# Distro-agnostic function to tell if a package is installed
1024# is_package_installed package [package ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001025function is_package_installed {
Dean Troyerdff49a22014-01-30 15:37:40 -06001026 if [[ -z "$@" ]]; then
1027 return 1
1028 fi
1029
1030 if [[ -z "$os_PACKAGE" ]]; then
1031 GetOSVersion
1032 fi
1033
1034 if [[ "$os_PACKAGE" = "deb" ]]; then
1035 dpkg -s "$@" > /dev/null 2> /dev/null
1036 elif [[ "$os_PACKAGE" = "rpm" ]]; then
1037 rpm --quiet -q "$@"
1038 else
1039 exit_distro_not_supported "finding if a package is installed"
1040 fi
1041}
1042
1043# Distro-agnostic package uninstaller
1044# uninstall_package package [package ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001045function uninstall_package {
Dean Troyerdff49a22014-01-30 15:37:40 -06001046 if is_ubuntu; then
1047 apt_get purge "$@"
1048 elif is_fedora; then
Ian Wienand36298ee2015-02-04 10:29:31 +11001049 sudo ${YUM:-yum} remove -y "$@" ||:
Dean Troyerdff49a22014-01-30 15:37:40 -06001050 elif is_suse; then
1051 sudo zypper rm "$@"
1052 else
1053 exit_distro_not_supported "uninstalling packages"
1054 fi
1055}
1056
1057# Wrapper for ``yum`` to set proxy environment variables
Daniel P. Berrange63d25d92014-12-09 15:21:22 +00001058# Uses globals ``OFFLINE``, ``*_proxy``, ``YUM``
Dean Troyerdff49a22014-01-30 15:37:40 -06001059# yum_install package [package ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001060function yum_install {
Dean Troyerdff49a22014-01-30 15:37:40 -06001061 [[ "$OFFLINE" = "True" ]] && return
1062 local sudo="sudo"
1063 [[ "$(id -u)" = "0" ]] && sudo="env"
Ian Wienandb27f16d2014-02-28 14:29:02 +11001064
1065 # The manual check for missing packages is because yum -y assumes
1066 # missing packages are OK. See
1067 # https://bugzilla.redhat.com/show_bug.cgi?id=965567
Dean Troyerdff49a22014-01-30 15:37:40 -06001068 $sudo http_proxy=$http_proxy https_proxy=$https_proxy \
1069 no_proxy=$no_proxy \
Ian Wienand36298ee2015-02-04 10:29:31 +11001070 ${YUM:-yum} install -y "$@" 2>&1 | \
Ian Wienandb27f16d2014-02-28 14:29:02 +11001071 awk '
1072 BEGIN { fail=0 }
1073 /No package/ { fail=1 }
1074 { print }
1075 END { exit fail }' || \
1076 die $LINENO "Missing packages detected"
1077
1078 # also ensure we catch a yum failure
1079 if [[ ${PIPESTATUS[0]} != 0 ]]; then
Ian Wienand36298ee2015-02-04 10:29:31 +11001080 die $LINENO "${YUM:-yum} install failure"
Ian Wienandb27f16d2014-02-28 14:29:02 +11001081 fi
Dean Troyerdff49a22014-01-30 15:37:40 -06001082}
1083
1084# zypper wrapper to set arguments correctly
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001085# Uses globals ``OFFLINE``, ``*_proxy``
Dean Troyerdff49a22014-01-30 15:37:40 -06001086# zypper_install package [package ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001087function zypper_install {
Dean Troyerdff49a22014-01-30 15:37:40 -06001088 [[ "$OFFLINE" = "True" ]] && return
1089 local sudo="sudo"
1090 [[ "$(id -u)" = "0" ]] && sudo="env"
1091 $sudo http_proxy=$http_proxy https_proxy=$https_proxy \
1092 zypper --non-interactive install --auto-agree-with-licenses "$@"
1093}
1094
1095
1096# Process Functions
1097# =================
1098
1099# _run_process() is designed to be backgrounded by run_process() to simulate a
1100# fork. It includes the dirty work of closing extra filehandles and preparing log
1101# files to produce the same logs as screen_it(). The log filename is derived
Dean Troyerdde41d02014-12-09 17:47:57 -06001102# from the service name.
1103# Uses globals ``CURRENT_LOG_TIME``, ``LOGDIR``, ``SCREEN_LOGDIR``, ``SCREEN_NAME``, ``SERVICE_DIR``
Chris Dent2f27a0e2014-09-09 13:46:02 +01001104# If an optional group is provided sg will be used to set the group of
1105# the command.
1106# _run_process service "command-line" [group]
Ian Wienandaee18c72014-02-21 15:35:08 +11001107function _run_process {
Dean Troyerdff49a22014-01-30 15:37:40 -06001108 local service=$1
1109 local command="$2"
Chris Dent2f27a0e2014-09-09 13:46:02 +01001110 local group=$3
Dean Troyerdff49a22014-01-30 15:37:40 -06001111
1112 # Undo logging redirections and close the extra descriptors
1113 exec 1>&3
1114 exec 2>&3
1115 exec 3>&-
1116 exec 6>&-
1117
Dean Troyerdde41d02014-12-09 17:47:57 -06001118 local real_logfile="${LOGDIR}/${service}.log.${CURRENT_LOG_TIME}"
1119 if [[ -n ${LOGDIR} ]]; then
1120 exec 1>&"$real_logfile" 2>&1
1121 ln -sf "$real_logfile" ${LOGDIR}/${service}.log
1122 if [[ -n ${SCREEN_LOGDIR} ]]; then
1123 # Drop the backward-compat symlink
1124 ln -sf "$real_logfile" ${SCREEN_LOGDIR}/screen-${service}.log
1125 fi
Dean Troyerdff49a22014-01-30 15:37:40 -06001126
1127 # TODO(dtroyer): Hack to get stdout from the Python interpreter for the logs.
1128 export PYTHONUNBUFFERED=1
1129 fi
1130
Dean Troyer3159a822014-08-27 14:13:58 -05001131 # Run under ``setsid`` to force the process to become a session and group leader.
1132 # The pid saved can be used with pkill -g to get the entire process group.
Chris Dent2f27a0e2014-09-09 13:46:02 +01001133 if [[ -n "$group" ]]; then
1134 setsid sg $group "$command" & echo $! >$SERVICE_DIR/$SCREEN_NAME/$service.pid
1135 else
1136 setsid $command & echo $! >$SERVICE_DIR/$SCREEN_NAME/$service.pid
1137 fi
Dean Troyer3159a822014-08-27 14:13:58 -05001138
1139 # Just silently exit this process
1140 exit 0
Dean Troyerdff49a22014-01-30 15:37:40 -06001141}
1142
1143# Helper to remove the ``*.failure`` files under ``$SERVICE_DIR/$SCREEN_NAME``.
1144# This is used for ``service_check`` when all the ``screen_it`` are called finished
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001145# Uses globals ``SCREEN_NAME``, ``SERVICE_DIR``
Dean Troyerdff49a22014-01-30 15:37:40 -06001146# init_service_check
Ian Wienandaee18c72014-02-21 15:35:08 +11001147function init_service_check {
Dean Troyerdff49a22014-01-30 15:37:40 -06001148 SCREEN_NAME=${SCREEN_NAME:-stack}
1149 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
1150
1151 if [[ ! -d "$SERVICE_DIR/$SCREEN_NAME" ]]; then
1152 mkdir -p "$SERVICE_DIR/$SCREEN_NAME"
1153 fi
1154
1155 rm -f "$SERVICE_DIR/$SCREEN_NAME"/*.failure
1156}
1157
1158# Find out if a process exists by partial name.
1159# is_running name
Ian Wienandaee18c72014-02-21 15:35:08 +11001160function is_running {
Dean Troyerdff49a22014-01-30 15:37:40 -06001161 local name=$1
1162 ps auxw | grep -v grep | grep ${name} > /dev/null
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001163 local exitcode=$?
Dean Troyerdff49a22014-01-30 15:37:40 -06001164 # some times I really hate bash reverse binary logic
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001165 return $exitcode
Dean Troyerdff49a22014-01-30 15:37:40 -06001166}
1167
Dean Troyer3159a822014-08-27 14:13:58 -05001168# Run a single service under screen or directly
1169# If the command includes shell metachatacters (;<>*) it must be run using a shell
Chris Dent2f27a0e2014-09-09 13:46:02 +01001170# If an optional group is provided sg will be used to run the
1171# command as that group.
1172# run_process service "command-line" [group]
Ian Wienandaee18c72014-02-21 15:35:08 +11001173function run_process {
Dean Troyerdff49a22014-01-30 15:37:40 -06001174 local service=$1
1175 local command="$2"
Chris Dent2f27a0e2014-09-09 13:46:02 +01001176 local group=$3
Dean Troyerdff49a22014-01-30 15:37:40 -06001177
Dean Troyer3159a822014-08-27 14:13:58 -05001178 if is_service_enabled $service; then
1179 if [[ "$USE_SCREEN" = "True" ]]; then
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001180 screen_process "$service" "$command" "$group"
Dean Troyer3159a822014-08-27 14:13:58 -05001181 else
1182 # Spawn directly without screen
Chris Dent2f27a0e2014-09-09 13:46:02 +01001183 _run_process "$service" "$command" "$group" &
Dean Troyer3159a822014-08-27 14:13:58 -05001184 fi
1185 fi
Dean Troyerdff49a22014-01-30 15:37:40 -06001186}
1187
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001188# Helper to launch a process in a named screen
Dean Troyerdde41d02014-12-09 17:47:57 -06001189# Uses globals ``CURRENT_LOG_TIME``, ```LOGDIR``, ``SCREEN_LOGDIR``, `SCREEN_NAME``,
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001190# ``SERVICE_DIR``, ``USE_SCREEN``
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001191# screen_process name "command-line" [group]
Chris Dent2f27a0e2014-09-09 13:46:02 +01001192# Run a command in a shell in a screen window, if an optional group
1193# is provided, use sg to set the group of the command.
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001194function screen_process {
1195 local name=$1
Dean Troyer3159a822014-08-27 14:13:58 -05001196 local command="$2"
Chris Dent2f27a0e2014-09-09 13:46:02 +01001197 local group=$3
Dean Troyer3159a822014-08-27 14:13:58 -05001198
Sean Dagueea22a4f2014-06-27 15:21:41 -04001199 SCREEN_NAME=${SCREEN_NAME:-stack}
1200 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
Sean Dague53753292014-12-04 19:38:15 -05001201 USE_SCREEN=$(trueorfalse True USE_SCREEN)
Dean Troyerdff49a22014-01-30 15:37:40 -06001202
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001203 # Append the process to the screen rc file
1204 screen_rc "$name" "$command"
Dean Troyerdff49a22014-01-30 15:37:40 -06001205
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001206 screen -S $SCREEN_NAME -X screen -t $name
Dean Troyerdff49a22014-01-30 15:37:40 -06001207
Dean Troyerdde41d02014-12-09 17:47:57 -06001208 local real_logfile="${LOGDIR}/${name}.log.${CURRENT_LOG_TIME}"
1209 echo "LOGDIR: $LOGDIR"
1210 echo "SCREEN_LOGDIR: $SCREEN_LOGDIR"
1211 echo "log: $real_logfile"
1212 if [[ -n ${LOGDIR} ]]; then
1213 screen -S $SCREEN_NAME -p $name -X logfile "$real_logfile"
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001214 screen -S $SCREEN_NAME -p $name -X log on
Dean Troyerdde41d02014-12-09 17:47:57 -06001215 ln -sf "$real_logfile" ${LOGDIR}/${name}.log
1216 if [[ -n ${SCREEN_LOGDIR} ]]; then
1217 # Drop the backward-compat symlink
1218 ln -sf "$real_logfile" ${SCREEN_LOGDIR}/screen-${1}.log
1219 fi
Dean Troyerdff49a22014-01-30 15:37:40 -06001220 fi
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001221
1222 # sleep to allow bash to be ready to be send the command - we are
1223 # creating a new window in screen and then sends characters, so if
1224 # bash isn't running by the time we send the command, nothing happens
1225 sleep 3
1226
1227 NL=`echo -ne '\015'`
1228 # This fun command does the following:
1229 # - the passed server command is backgrounded
1230 # - the pid of the background process is saved in the usual place
1231 # - the server process is brought back to the foreground
1232 # - if the server process exits prematurely the fg command errors
1233 # and a message is written to stdout and the process failure file
1234 #
1235 # The pid saved can be used in stop_process() as a process group
1236 # id to kill off all child processes
1237 if [[ -n "$group" ]]; then
1238 command="sg $group '$command'"
1239 fi
1240 screen -S $SCREEN_NAME -p $name -X stuff "$command & echo \$! >$SERVICE_DIR/$SCREEN_NAME/${name}.pid; fg || echo \"$name failed to start\" | tee \"$SERVICE_DIR/$SCREEN_NAME/${name}.failure\"$NL"
Dean Troyerdff49a22014-01-30 15:37:40 -06001241}
1242
1243# Screen rc file builder
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001244# Uses globals ``SCREEN_NAME``, ``SCREENRC``
Dean Troyerdff49a22014-01-30 15:37:40 -06001245# screen_rc service "command-line"
1246function screen_rc {
1247 SCREEN_NAME=${SCREEN_NAME:-stack}
1248 SCREENRC=$TOP_DIR/$SCREEN_NAME-screenrc
1249 if [[ ! -e $SCREENRC ]]; then
1250 # Name the screen session
1251 echo "sessionname $SCREEN_NAME" > $SCREENRC
1252 # Set a reasonable statusbar
1253 echo "hardstatus alwayslastline '$SCREEN_HARDSTATUS'" >> $SCREENRC
1254 # Some distributions override PROMPT_COMMAND for the screen terminal type - turn that off
1255 echo "setenv PROMPT_COMMAND /bin/true" >> $SCREENRC
1256 echo "screen -t shell bash" >> $SCREENRC
1257 fi
1258 # If this service doesn't already exist in the screenrc file
1259 if ! grep $1 $SCREENRC 2>&1 > /dev/null; then
1260 NL=`echo -ne '\015'`
1261 echo "screen -t $1 bash" >> $SCREENRC
1262 echo "stuff \"$2$NL\"" >> $SCREENRC
1263
Dean Troyerdde41d02014-12-09 17:47:57 -06001264 if [[ -n ${LOGDIR} ]]; then
1265 echo "logfile ${LOGDIR}/${1}.log.${CURRENT_LOG_TIME}" >>$SCREENRC
Dean Troyerdff49a22014-01-30 15:37:40 -06001266 echo "log on" >>$SCREENRC
1267 fi
1268 fi
1269}
1270
1271# Stop a service in screen
1272# If a PID is available use it, kill the whole process group via TERM
1273# If screen is being used kill the screen window; this will catch processes
1274# that did not leave a PID behind
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001275# Uses globals ``SCREEN_NAME``, ``SERVICE_DIR``, ``USE_SCREEN``
Chris Dent2f27a0e2014-09-09 13:46:02 +01001276# screen_stop_service service
Dean Troyer3159a822014-08-27 14:13:58 -05001277function screen_stop_service {
1278 local service=$1
1279
Dean Troyerdff49a22014-01-30 15:37:40 -06001280 SCREEN_NAME=${SCREEN_NAME:-stack}
1281 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
Sean Dague53753292014-12-04 19:38:15 -05001282 USE_SCREEN=$(trueorfalse True USE_SCREEN)
Dean Troyerdff49a22014-01-30 15:37:40 -06001283
Dean Troyer3159a822014-08-27 14:13:58 -05001284 if is_service_enabled $service; then
1285 # Clean up the screen window
1286 screen -S $SCREEN_NAME -p $service -X kill
1287 fi
1288}
1289
1290# Stop a service process
1291# If a PID is available use it, kill the whole process group via TERM
1292# If screen is being used kill the screen window; this will catch processes
1293# that did not leave a PID behind
1294# Uses globals ``SERVICE_DIR``, ``USE_SCREEN``
1295# stop_process service
1296function stop_process {
1297 local service=$1
1298
1299 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
Sean Dague53753292014-12-04 19:38:15 -05001300 USE_SCREEN=$(trueorfalse True USE_SCREEN)
Dean Troyer3159a822014-08-27 14:13:58 -05001301
1302 if is_service_enabled $service; then
Dean Troyerdff49a22014-01-30 15:37:40 -06001303 # Kill via pid if we have one available
Dean Troyer3159a822014-08-27 14:13:58 -05001304 if [[ -r $SERVICE_DIR/$SCREEN_NAME/$service.pid ]]; then
1305 pkill -g $(cat $SERVICE_DIR/$SCREEN_NAME/$service.pid)
1306 rm $SERVICE_DIR/$SCREEN_NAME/$service.pid
Dean Troyerdff49a22014-01-30 15:37:40 -06001307 fi
1308 if [[ "$USE_SCREEN" = "True" ]]; then
1309 # Clean up the screen window
Dean Troyer3159a822014-08-27 14:13:58 -05001310 screen_stop_service $service
Dean Troyerdff49a22014-01-30 15:37:40 -06001311 fi
1312 fi
1313}
1314
1315# Helper to get the status of each running service
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001316# Uses globals ``SCREEN_NAME``, ``SERVICE_DIR``
Dean Troyerdff49a22014-01-30 15:37:40 -06001317# service_check
Ian Wienandaee18c72014-02-21 15:35:08 +11001318function service_check {
Dean Troyerdff49a22014-01-30 15:37:40 -06001319 local service
1320 local failures
1321 SCREEN_NAME=${SCREEN_NAME:-stack}
1322 SERVICE_DIR=${SERVICE_DIR:-${DEST}/status}
1323
1324
1325 if [[ ! -d "$SERVICE_DIR/$SCREEN_NAME" ]]; then
1326 echo "No service status directory found"
1327 return
1328 fi
1329
1330 # Check if there is any falure flag file under $SERVICE_DIR/$SCREEN_NAME
Sean Dague09bd7c82014-02-03 08:35:26 +09001331 # make this -o errexit safe
1332 failures=`ls "$SERVICE_DIR/$SCREEN_NAME"/*.failure 2>/dev/null || /bin/true`
Dean Troyerdff49a22014-01-30 15:37:40 -06001333
1334 for service in $failures; do
1335 service=`basename $service`
1336 service=${service%.failure}
1337 echo "Error: Service $service is not running"
1338 done
1339
1340 if [ -n "$failures" ]; then
Sean Dague12379222014-02-27 17:16:46 -05001341 die $LINENO "More details about the above errors can be found with screen, with ./rejoin-stack.sh"
Dean Troyerdff49a22014-01-30 15:37:40 -06001342 fi
1343}
1344
Chris Dent2f27a0e2014-09-09 13:46:02 +01001345# Tail a log file in a screen if USE_SCREEN is true.
1346function tail_log {
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001347 local name=$1
Chris Dent2f27a0e2014-09-09 13:46:02 +01001348 local logfile=$2
1349
Sean Dague53753292014-12-04 19:38:15 -05001350 USE_SCREEN=$(trueorfalse True USE_SCREEN)
Chris Dent2f27a0e2014-09-09 13:46:02 +01001351 if [[ "$USE_SCREEN" = "True" ]]; then
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001352 screen_process "$name" "sudo tail -f $logfile"
Chris Dent2f27a0e2014-09-09 13:46:02 +01001353 fi
1354}
1355
Dean Troyerdff49a22014-01-30 15:37:40 -06001356
Dean Troyer3159a822014-08-27 14:13:58 -05001357# Deprecated Functions
1358# --------------------
1359
1360# _old_run_process() is designed to be backgrounded by old_run_process() to simulate a
1361# fork. It includes the dirty work of closing extra filehandles and preparing log
1362# files to produce the same logs as screen_it(). The log filename is derived
1363# from the service name and global-and-now-misnamed ``SCREEN_LOGDIR``
1364# Uses globals ``CURRENT_LOG_TIME``, ``SCREEN_LOGDIR``, ``SCREEN_NAME``, ``SERVICE_DIR``
1365# _old_run_process service "command-line"
1366function _old_run_process {
1367 local service=$1
1368 local command="$2"
1369
1370 # Undo logging redirections and close the extra descriptors
1371 exec 1>&3
1372 exec 2>&3
1373 exec 3>&-
1374 exec 6>&-
1375
1376 if [[ -n ${SCREEN_LOGDIR} ]]; then
Dean Troyerad5cc982014-12-10 16:35:32 -06001377 exec 1>&${SCREEN_LOGDIR}/screen-${1}.log.${CURRENT_LOG_TIME} 2>&1
1378 ln -sf ${SCREEN_LOGDIR}/screen-${1}.log.${CURRENT_LOG_TIME} ${SCREEN_LOGDIR}/screen-${1}.log
Dean Troyer3159a822014-08-27 14:13:58 -05001379
1380 # TODO(dtroyer): Hack to get stdout from the Python interpreter for the logs.
1381 export PYTHONUNBUFFERED=1
1382 fi
1383
1384 exec /bin/bash -c "$command"
1385 die "$service exec failure: $command"
1386}
1387
1388# old_run_process() launches a child process that closes all file descriptors and
1389# then exec's the passed in command. This is meant to duplicate the semantics
1390# of screen_it() without screen. PIDs are written to
1391# ``$SERVICE_DIR/$SCREEN_NAME/$service.pid`` by the spawned child process.
1392# old_run_process service "command-line"
1393function old_run_process {
1394 local service=$1
1395 local command="$2"
1396
1397 # Spawn the child process
1398 _old_run_process "$service" "$command" &
1399 echo $!
1400}
1401
1402# Compatibility for existing start_XXXX() functions
1403# Uses global ``USE_SCREEN``
1404# screen_it service "command-line"
1405function screen_it {
1406 if is_service_enabled $1; then
1407 # Append the service to the screen rc file
1408 screen_rc "$1" "$2"
1409
1410 if [[ "$USE_SCREEN" = "True" ]]; then
Adam Gandelman8543a0f2014-10-16 17:42:33 -07001411 screen_process "$1" "$2"
Dean Troyer3159a822014-08-27 14:13:58 -05001412 else
1413 # Spawn directly without screen
1414 old_run_process "$1" "$2" >$SERVICE_DIR/$SCREEN_NAME/$1.pid
1415 fi
1416 fi
1417}
1418
1419# Compatibility for existing stop_XXXX() functions
1420# Stop a service in screen
1421# If a PID is available use it, kill the whole process group via TERM
1422# If screen is being used kill the screen window; this will catch processes
1423# that did not leave a PID behind
1424# screen_stop service
1425function screen_stop {
1426 # Clean up the screen window
1427 stop_process $1
1428}
1429
1430
Sean Dague2c65e712014-12-18 09:44:56 -05001431# Plugin Functions
1432# =================
1433
1434DEVSTACK_PLUGINS=${DEVSTACK_PLUGINS:-""}
1435
1436# enable_plugin <name> <url> [branch]
1437#
1438# ``name`` is an arbitrary name - (aka: glusterfs, nova-docker, zaqar)
1439# ``url`` is a git url
1440# ``branch`` is a gitref. If it's not set, defaults to master
1441function enable_plugin {
1442 local name=$1
1443 local url=$2
1444 local branch=${3:-master}
1445 DEVSTACK_PLUGINS+=",$name"
1446 GITREPO[$name]=$url
1447 GITDIR[$name]=$DEST/$name
1448 GITBRANCH[$name]=$branch
1449}
1450
1451# fetch_plugins
1452#
1453# clones all plugins
1454function fetch_plugins {
1455 local plugins="${DEVSTACK_PLUGINS}"
1456 local plugin
1457
1458 # short circuit if nothing to do
1459 if [[ -z $plugins ]]; then
1460 return
1461 fi
1462
1463 echo "Fetching devstack plugins"
1464 for plugin in ${plugins//,/ }; do
1465 git_clone_by_name $plugin
1466 done
1467}
1468
1469# load_plugin_settings
1470#
1471# Load settings from plugins in the order that they were registered
1472function load_plugin_settings {
1473 local plugins="${DEVSTACK_PLUGINS}"
1474 local plugin
1475
1476 # short circuit if nothing to do
1477 if [[ -z $plugins ]]; then
1478 return
1479 fi
1480
1481 echo "Loading plugin settings"
1482 for plugin in ${plugins//,/ }; do
1483 local dir=${GITDIR[$plugin]}
1484 # source any known settings
1485 if [[ -f $dir/devstack/settings ]]; then
1486 source $dir/devstack/settings
1487 fi
1488 done
1489}
1490
1491# run_plugins
1492#
1493# Run the devstack/plugin.sh in all the plugin directories. These are
1494# run in registration order.
1495function run_plugins {
1496 local mode=$1
1497 local phase=$2
Bharat Kumar Kobagana441ff072015-01-08 12:26:26 +05301498
1499 local plugins="${DEVSTACK_PLUGINS}"
1500 local plugin
Sean Dague2c65e712014-12-18 09:44:56 -05001501 for plugin in ${plugins//,/ }; do
1502 local dir=${GITDIR[$plugin]}
1503 if [[ -f $dir/devstack/plugin.sh ]]; then
1504 source $dir/devstack/plugin.sh $mode $phase
1505 fi
1506 done
1507}
1508
1509function run_phase {
1510 local mode=$1
1511 local phase=$2
1512 if [[ -d $TOP_DIR/extras.d ]]; then
1513 for i in $TOP_DIR/extras.d/*.sh; do
1514 [[ -r $i ]] && source $i $mode $phase
1515 done
1516 fi
1517 # the source phase corresponds to settings loading in plugins
1518 if [[ "$mode" == "source" ]]; then
1519 load_plugin_settings
1520 else
1521 run_plugins $mode $phase
1522 fi
1523}
1524
Dean Troyerdff49a22014-01-30 15:37:40 -06001525
1526# Service Functions
1527# =================
1528
1529# remove extra commas from the input string (i.e. ``ENABLED_SERVICES``)
1530# _cleanup_service_list service-list
Ian Wienandaee18c72014-02-21 15:35:08 +11001531function _cleanup_service_list {
Dean Troyerdff49a22014-01-30 15:37:40 -06001532 echo "$1" | sed -e '
1533 s/,,/,/g;
1534 s/^,//;
1535 s/,$//
1536 '
1537}
1538
1539# disable_all_services() removes all current services
1540# from ``ENABLED_SERVICES`` to reset the configuration
1541# before a minimal installation
1542# Uses global ``ENABLED_SERVICES``
1543# disable_all_services
Ian Wienandaee18c72014-02-21 15:35:08 +11001544function disable_all_services {
Dean Troyerdff49a22014-01-30 15:37:40 -06001545 ENABLED_SERVICES=""
1546}
1547
1548# Remove all services starting with '-'. For example, to install all default
1549# services except rabbit (rabbit) set in ``localrc``:
1550# ENABLED_SERVICES+=",-rabbit"
1551# Uses global ``ENABLED_SERVICES``
1552# disable_negated_services
Ian Wienandaee18c72014-02-21 15:35:08 +11001553function disable_negated_services {
Dean Troyerdff49a22014-01-30 15:37:40 -06001554 local tmpsvcs="${ENABLED_SERVICES}"
1555 local service
1556 for service in ${tmpsvcs//,/ }; do
1557 if [[ ${service} == -* ]]; then
1558 tmpsvcs=$(echo ${tmpsvcs}|sed -r "s/(,)?(-)?${service#-}(,)?/,/g")
1559 fi
1560 done
1561 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
1562}
1563
1564# disable_service() removes the services passed as argument to the
1565# ``ENABLED_SERVICES`` list, if they are present.
1566#
1567# For example:
1568# disable_service rabbit
1569#
1570# This function does not know about the special cases
1571# for nova, glance, and neutron built into is_service_enabled().
1572# Uses global ``ENABLED_SERVICES``
1573# disable_service service [service ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001574function disable_service {
Dean Troyerdff49a22014-01-30 15:37:40 -06001575 local tmpsvcs=",${ENABLED_SERVICES},"
1576 local service
1577 for service in $@; do
1578 if is_service_enabled $service; then
1579 tmpsvcs=${tmpsvcs//,$service,/,}
1580 fi
1581 done
1582 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
1583}
1584
1585# enable_service() adds the services passed as argument to the
1586# ``ENABLED_SERVICES`` list, if they are not already present.
1587#
1588# For example:
1589# enable_service qpid
1590#
1591# This function does not know about the special cases
1592# for nova, glance, and neutron built into is_service_enabled().
1593# Uses global ``ENABLED_SERVICES``
1594# enable_service service [service ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001595function enable_service {
Dean Troyerdff49a22014-01-30 15:37:40 -06001596 local tmpsvcs="${ENABLED_SERVICES}"
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001597 local service
Dean Troyerdff49a22014-01-30 15:37:40 -06001598 for service in $@; do
1599 if ! is_service_enabled $service; then
1600 tmpsvcs+=",$service"
1601 fi
1602 done
1603 ENABLED_SERVICES=$(_cleanup_service_list "$tmpsvcs")
1604 disable_negated_services
1605}
1606
1607# is_service_enabled() checks if the service(s) specified as arguments are
1608# enabled by the user in ``ENABLED_SERVICES``.
1609#
1610# Multiple services specified as arguments are ``OR``'ed together; the test
1611# is a short-circuit boolean, i.e it returns on the first match.
1612#
1613# There are special cases for some 'catch-all' services::
1614# **nova** returns true if any service enabled start with **n-**
1615# **cinder** returns true if any service enabled start with **c-**
1616# **ceilometer** returns true if any service enabled start with **ceilometer**
1617# **glance** returns true if any service enabled start with **g-**
1618# **neutron** returns true if any service enabled start with **q-**
1619# **swift** returns true if any service enabled start with **s-**
1620# **trove** returns true if any service enabled start with **tr-**
1621# For backward compatibility if we have **swift** in ENABLED_SERVICES all the
1622# **s-** services will be enabled. This will be deprecated in the future.
1623#
1624# Cells within nova is enabled if **n-cell** is in ``ENABLED_SERVICES``.
1625# We also need to make sure to treat **n-cell-region** and **n-cell-child**
1626# as enabled in this case.
1627#
1628# Uses global ``ENABLED_SERVICES``
1629# is_service_enabled service [service ...]
Ian Wienandaee18c72014-02-21 15:35:08 +11001630function is_service_enabled {
Sean Dague45917cc2014-02-24 16:09:14 -05001631 local xtrace=$(set +o | grep xtrace)
1632 set +o xtrace
1633 local enabled=1
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001634 local services=$@
1635 local service
Dean Troyerdff49a22014-01-30 15:37:40 -06001636 for service in ${services}; do
Sean Dague45917cc2014-02-24 16:09:14 -05001637 [[ ,${ENABLED_SERVICES}, =~ ,${service}, ]] && enabled=0
Dean Troyerdff49a22014-01-30 15:37:40 -06001638
1639 # Look for top-level 'enabled' function for this service
1640 if type is_${service}_enabled >/dev/null 2>&1; then
1641 # A function exists for this service, use it
1642 is_${service}_enabled
Sean Dague45917cc2014-02-24 16:09:14 -05001643 enabled=$?
Dean Troyerdff49a22014-01-30 15:37:40 -06001644 fi
1645
1646 # TODO(dtroyer): Remove these legacy special-cases after the is_XXX_enabled()
1647 # are implemented
1648
Sean Dague45917cc2014-02-24 16:09:14 -05001649 [[ ${service} == n-cell-* && ${ENABLED_SERVICES} =~ "n-cell" ]] && enabled=0
Chris Dent2f27a0e2014-09-09 13:46:02 +01001650 [[ ${service} == n-cpu-* && ${ENABLED_SERVICES} =~ "n-cpu" ]] && enabled=0
Sean Dague45917cc2014-02-24 16:09:14 -05001651 [[ ${service} == "nova" && ${ENABLED_SERVICES} =~ "n-" ]] && enabled=0
1652 [[ ${service} == "cinder" && ${ENABLED_SERVICES} =~ "c-" ]] && enabled=0
1653 [[ ${service} == "ceilometer" && ${ENABLED_SERVICES} =~ "ceilometer-" ]] && enabled=0
1654 [[ ${service} == "glance" && ${ENABLED_SERVICES} =~ "g-" ]] && enabled=0
1655 [[ ${service} == "ironic" && ${ENABLED_SERVICES} =~ "ir-" ]] && enabled=0
1656 [[ ${service} == "neutron" && ${ENABLED_SERVICES} =~ "q-" ]] && enabled=0
1657 [[ ${service} == "trove" && ${ENABLED_SERVICES} =~ "tr-" ]] && enabled=0
1658 [[ ${service} == "swift" && ${ENABLED_SERVICES} =~ "s-" ]] && enabled=0
1659 [[ ${service} == s-* && ${ENABLED_SERVICES} =~ "swift" ]] && enabled=0
Dean Troyerdff49a22014-01-30 15:37:40 -06001660 done
Sean Dague45917cc2014-02-24 16:09:14 -05001661 $xtrace
1662 return $enabled
Dean Troyerdff49a22014-01-30 15:37:40 -06001663}
1664
1665# Toggle enable/disable_service for services that must run exclusive of each other
1666# $1 The name of a variable containing a space-separated list of services
1667# $2 The name of a variable in which to store the enabled service's name
1668# $3 The name of the service to enable
1669function use_exclusive_service {
1670 local options=${!1}
1671 local selection=$3
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001672 local out=$2
Dean Troyerdff49a22014-01-30 15:37:40 -06001673 [ -z $selection ] || [[ ! "$options" =~ "$selection" ]] && return 1
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001674 local opt
Dean Troyerdff49a22014-01-30 15:37:40 -06001675 for opt in $options;do
1676 [[ "$opt" = "$selection" ]] && enable_service $opt || disable_service $opt
1677 done
1678 eval "$out=$selection"
1679 return 0
1680}
1681
1682
Masayuki Igawaf6368d32014-02-20 13:31:26 +09001683# System Functions
1684# ================
Dean Troyerdff49a22014-01-30 15:37:40 -06001685
1686# Only run the command if the target file (the last arg) is not on an
1687# NFS filesystem.
Ian Wienandaee18c72014-02-21 15:35:08 +11001688function _safe_permission_operation {
Sean Dague45917cc2014-02-24 16:09:14 -05001689 local xtrace=$(set +o | grep xtrace)
1690 set +o xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -06001691 local args=( $@ )
1692 local last
1693 local sudo_cmd
1694 local dir_to_check
1695
1696 let last="${#args[*]} - 1"
1697
Dean Troyerd5dfa4c2014-07-25 11:13:11 -05001698 local dir_to_check=${args[$last]}
Dean Troyerdff49a22014-01-30 15:37:40 -06001699 if [ ! -d "$dir_to_check" ]; then
1700 dir_to_check=`dirname "$dir_to_check"`
1701 fi
1702
1703 if is_nfs_directory "$dir_to_check" ; then
Sean Dague45917cc2014-02-24 16:09:14 -05001704 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -06001705 return 0
1706 fi
1707
1708 if [[ $TRACK_DEPENDS = True ]]; then
1709 sudo_cmd="env"
1710 else
1711 sudo_cmd="sudo"
1712 fi
1713
Sean Dague45917cc2014-02-24 16:09:14 -05001714 $xtrace
Dean Troyerdff49a22014-01-30 15:37:40 -06001715 $sudo_cmd $@
1716}
1717
1718# Exit 0 if address is in network or 1 if address is not in network
1719# ip-range is in CIDR notation: 1.2.3.4/20
1720# address_in_net ip-address ip-range
Ian Wienandaee18c72014-02-21 15:35:08 +11001721function address_in_net {
Dean Troyerdff49a22014-01-30 15:37:40 -06001722 local ip=$1
1723 local range=$2
1724 local masklen=${range#*/}
1725 local network=$(maskip ${range%/*} $(cidr2netmask $masklen))
1726 local subnet=$(maskip $ip $(cidr2netmask $masklen))
1727 [[ $network == $subnet ]]
1728}
1729
1730# Add a user to a group.
1731# add_user_to_group user group
Ian Wienandaee18c72014-02-21 15:35:08 +11001732function add_user_to_group {
Dean Troyerdff49a22014-01-30 15:37:40 -06001733 local user=$1
1734 local group=$2
1735
1736 if [[ -z "$os_VENDOR" ]]; then
1737 GetOSVersion
1738 fi
1739
1740 # SLE11 and openSUSE 12.2 don't have the usual usermod
1741 if ! is_suse || [[ "$os_VENDOR" = "openSUSE" && "$os_RELEASE" != "12.2" ]]; then
1742 sudo usermod -a -G "$group" "$user"
1743 else
1744 sudo usermod -A "$group" "$user"
1745 fi
1746}
1747
1748# Convert CIDR notation to a IPv4 netmask
1749# cidr2netmask cidr-bits
Ian Wienandaee18c72014-02-21 15:35:08 +11001750function cidr2netmask {
Dean Troyerdff49a22014-01-30 15:37:40 -06001751 local maskpat="255 255 255 255"
1752 local maskdgt="254 252 248 240 224 192 128"
1753 set -- ${maskpat:0:$(( ($1 / 8) * 4 ))}${maskdgt:$(( (7 - ($1 % 8)) * 4 )):3}
1754 echo ${1-0}.${2-0}.${3-0}.${4-0}
1755}
1756
1757# Gracefully cp only if source file/dir exists
1758# cp_it source destination
1759function cp_it {
1760 if [ -e $1 ] || [ -d $1 ]; then
1761 cp -pRL $1 $2
1762 fi
1763}
1764
1765# HTTP and HTTPS proxy servers are supported via the usual environment variables [1]
1766# ``http_proxy``, ``https_proxy`` and ``no_proxy``. They can be set in
1767# ``localrc`` or on the command line if necessary::
1768#
1769# [1] http://www.w3.org/Daemon/User/Proxies/ProxyClients.html
1770#
1771# http_proxy=http://proxy.example.com:3128/ no_proxy=repo.example.net ./stack.sh
1772
Ian Wienandaee18c72014-02-21 15:35:08 +11001773function export_proxy_variables {
Sean Dague53753292014-12-04 19:38:15 -05001774 if isset http_proxy ; then
Dean Troyerdff49a22014-01-30 15:37:40 -06001775 export http_proxy=$http_proxy
1776 fi
Sean Dague53753292014-12-04 19:38:15 -05001777 if isset https_proxy ; then
Dean Troyerdff49a22014-01-30 15:37:40 -06001778 export https_proxy=$https_proxy
1779 fi
Sean Dague53753292014-12-04 19:38:15 -05001780 if isset no_proxy ; then
Dean Troyerdff49a22014-01-30 15:37:40 -06001781 export no_proxy=$no_proxy
1782 fi
1783}
1784
1785# Returns true if the directory is on a filesystem mounted via NFS.
Ian Wienandaee18c72014-02-21 15:35:08 +11001786function is_nfs_directory {
Dean Troyerdff49a22014-01-30 15:37:40 -06001787 local mount_type=`stat -f -L -c %T $1`
1788 test "$mount_type" == "nfs"
1789}
1790
1791# Return the network portion of the given IP address using netmask
1792# netmask is in the traditional dotted-quad format
1793# maskip ip-address netmask
Ian Wienandaee18c72014-02-21 15:35:08 +11001794function maskip {
Dean Troyerdff49a22014-01-30 15:37:40 -06001795 local ip=$1
1796 local mask=$2
1797 local l="${ip%.*}"; local r="${ip#*.}"; local n="${mask%.*}"; local m="${mask#*.}"
1798 local subnet=$((${ip%%.*}&${mask%%.*})).$((${r%%.*}&${m%%.*})).$((${l##*.}&${n##*.})).$((${ip##*.}&${mask##*.}))
1799 echo $subnet
1800}
1801
1802# Service wrapper to restart services
1803# restart_service service-name
Ian Wienandaee18c72014-02-21 15:35:08 +11001804function restart_service {
Dean Troyerdff49a22014-01-30 15:37:40 -06001805 if is_ubuntu; then
1806 sudo /usr/sbin/service $1 restart
1807 else
1808 sudo /sbin/service $1 restart
1809 fi
1810}
1811
1812# Only change permissions of a file or directory if it is not on an
1813# NFS filesystem.
Ian Wienandaee18c72014-02-21 15:35:08 +11001814function safe_chmod {
Dean Troyerdff49a22014-01-30 15:37:40 -06001815 _safe_permission_operation chmod $@
1816}
1817
1818# Only change ownership of a file or directory if it is not on an NFS
1819# filesystem.
Ian Wienandaee18c72014-02-21 15:35:08 +11001820function safe_chown {
Dean Troyerdff49a22014-01-30 15:37:40 -06001821 _safe_permission_operation chown $@
1822}
1823
1824# Service wrapper to start services
1825# start_service service-name
Ian Wienandaee18c72014-02-21 15:35:08 +11001826function start_service {
Dean Troyerdff49a22014-01-30 15:37:40 -06001827 if is_ubuntu; then
1828 sudo /usr/sbin/service $1 start
1829 else
1830 sudo /sbin/service $1 start
1831 fi
1832}
1833
1834# Service wrapper to stop services
1835# stop_service service-name
Ian Wienandaee18c72014-02-21 15:35:08 +11001836function stop_service {
Dean Troyerdff49a22014-01-30 15:37:40 -06001837 if is_ubuntu; then
1838 sudo /usr/sbin/service $1 stop
1839 else
1840 sudo /sbin/service $1 stop
1841 fi
1842}
1843
1844
1845# Restore xtrace
1846$XTRACE
1847
1848# Local variables:
1849# mode: shell-script
1850# End: