blob: 0d27515c206e04f69ef441cfd878f1a445510363 [file] [log] [blame]
Sean Daguee263c822014-12-05 14:25:28 -05001#!/bin/bash
2#
Dean Troyerdff49a22014-01-30 15:37:40 -06003# functions - DevStack-specific functions
Dean Troyer13dc5cc2012-03-27 14:50:45 -05004#
Dean Troyer4a43b7b2012-08-28 17:43:40 -05005# The following variables are assumed to be defined by certain functions:
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01006#
Dean Troyerd8864fe2014-02-17 11:00:42 -06007# - ``DATABASE_BACKENDS``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01008# - ``ENABLED_SERVICES``
Adam Spiers6a5aa7c2013-10-24 11:27:02 +01009# - ``FILES``
10# - ``GLANCE_HOSTPORT``
Dean Troyerd8864fe2014-02-17 11:00:42 -060011#
Dean Troyer13dc5cc2012-03-27 14:50:45 -050012
Ian Wienand4ffb4542015-06-30 11:00:32 +100013# ensure we don't re-source this in the same environment
14[[ -z "$_DEVSTACK_FUNCTIONS" ]] || return 0
Sean Dagueafef8bf2017-03-06 14:07:23 -050015declare -r -g _DEVSTACK_FUNCTIONS=1
Ian Wienand4ffb4542015-06-30 11:00:32 +100016
Dean Troyerdff49a22014-01-30 15:37:40 -060017# Include the common functions
18FUNC_DIR=$(cd $(dirname "${BASH_SOURCE:-$0}") && pwd)
19source ${FUNC_DIR}/functions-common
Dean Troyerbf2ad702015-03-09 15:16:10 -050020source ${FUNC_DIR}/inc/ini-config
Eric Fried2468cea2019-07-25 13:18:58 -050021source ${FUNC_DIR}/inc/meta-config
Dean Troyer490430d2015-01-30 14:38:35 -060022source ${FUNC_DIR}/inc/python
Dean Troyer32d6bc62015-03-29 14:16:44 -050023source ${FUNC_DIR}/inc/rootwrap
Dean Troyer7f9aa712012-01-31 12:11:56 -060024
Dean Troyer27e32692012-03-16 16:16:56 -050025# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110026_XTRACE_FUNCTIONS=$(set +o | grep xtrace)
Dean Troyer27e32692012-03-16 16:16:56 -050027set +o xtrace
28
Ian Wienand54e39102014-06-03 16:05:12 +100029# Check if a function already exists
30function function_exists {
31 declare -f -F $1 > /dev/null
32}
Dean Troyer7f9aa712012-01-31 12:11:56 -060033
Sean Dague646085d2016-03-21 17:00:51 -040034# short_source prints out the current location of the caller in a way
35# that strips redundant directories. This is useful for PS4 usage.
36function short_source {
37 saveIFS=$IFS
38 IFS=" "
39 called=($(caller 0))
40 IFS=$saveIFS
41 file=${called[2]}
42 file=${file#$RC_DIR/}
43 printf "%-40s " "$file:${called[1]}:${called[0]}"
44}
John L. Villalovosdaa7a412016-05-05 12:50:52 -070045# PS4 is exported to child shells and uses the 'short_source' function, so
46# export it so child shells have access to the 'short_source' function also.
47export -f short_source
Sean Dague646085d2016-03-21 17:00:51 -040048
Monty Taylord8bb2202017-09-03 12:13:59 -050049# Download a file from a URL
50#
51# Will check cache (in $FILES) or download given URL.
52#
53# Argument is the URL to the remote file
54#
55# Will echo the local path to the file as the output. Will die on
56# failure to download.
57#
58# Files can be pre-cached for CI environments, see EXTRA_CACHE_URLS
59# and tools/image_list.sh
60function get_extra_file {
61 local file_url=$1
62
63 file_name=$(basename "$file_url")
64 if [[ $file_url != file* ]]; then
65 # If the file isn't cache, download it
66 if [[ ! -f $FILES/$file_name ]]; then
yuanke weic652a492017-09-17 22:18:07 +080067 wget --progress=dot:giga -t 2 -c $file_url -O $FILES/$file_name
Monty Taylord8bb2202017-09-03 12:13:59 -050068 if [[ $? -ne 0 ]]; then
69 die "$file_url could not be downloaded"
70 fi
71 fi
72 echo "$FILES/$file_name"
73 return
74 else
75 # just strip the file:// bit and that's the path to the file
76 echo $file_url | sed 's/$file:\/\///g'
77 fi
78}
79
Sean Dague646085d2016-03-21 17:00:51 -040080
Adam Spierscb961592013-10-05 12:11:07 +010081# Retrieve an image from a URL and upload into Glance.
Dean Troyerca0e3d02012-04-13 15:58:37 -050082# Uses the following variables:
Adam Spierscb961592013-10-05 12:11:07 +010083#
84# - ``FILES`` must be set to the cache dir
85# - ``GLANCE_HOSTPORT``
86#
Peter Stachowski5aeea6a2015-09-22 19:38:02 +000087# upload_image image-url
Ian Wienandaee18c72014-02-21 15:35:08 +110088function upload_image {
Dean Troyerca0e3d02012-04-13 15:58:37 -050089 local image_url=$1
Dean Troyerca0e3d02012-04-13 15:58:37 -050090
Dean Troyere9f76672014-07-25 11:09:36 -050091 local image image_fname image_name
92
Dean Troyerca0e3d02012-04-13 15:58:37 -050093 # Create a directory for the downloaded image tarballs.
94 mkdir -p $FILES/images
Dean Troyere9f76672014-07-25 11:09:36 -050095 image_fname=`basename "$image_url"`
Arnaud Legendre3e439442013-11-15 16:06:03 -080096 if [[ $image_url != file* ]]; then
Sreeram Yerrapragada314af0a2014-03-03 21:34:45 -080097 # Downloads the image (uec ami+akistyle), then extracts it.
Dean Troyere9f76672014-07-25 11:09:36 -050098 if [[ ! -f $FILES/$image_fname || "$(stat -c "%s" $FILES/$image_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +010099 wget --progress=dot:giga -c $image_url -O $FILES/$image_fname
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900100 if [[ $? -ne 0 ]]; then
101 echo "Not found: $image_url"
102 return
103 fi
Arnaud Legendre3e439442013-11-15 16:06:03 -0800104 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500105 image="$FILES/${image_fname}"
Arnaud Legendre3e439442013-11-15 16:06:03 -0800106 else
Dean Troyer3324f192014-09-18 09:26:39 -0500107 # File based URL (RFC 1738): ``file://host/path``
Arnaud Legendre3e439442013-11-15 16:06:03 -0800108 # Remote files are not considered here.
Dean Troyer3324f192014-09-18 09:26:39 -0500109 # unix: ``file:///home/user/path/file``
110 # windows: ``file:///C:/Documents%20and%20Settings/user/path/file``
Dean Troyere9f76672014-07-25 11:09:36 -0500111 image=$(echo $image_url | sed "s/^file:\/\///g")
112 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Dean Troyerca0e3d02012-04-13 15:58:37 -0500113 echo "Not found: $image_url"
114 return
115 fi
116 fi
117
118 # OpenVZ-format images are provided as .tar.gz, but not decompressed prior to loading
119 if [[ "$image_url" =~ 'openvz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500120 image_name="${image_fname%.tar.gz}"
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300121 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" --public --container-format ami --disk-format ami < "${image}"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500122 return
123 fi
124
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700125 # vmdk format images
126 if [[ "$image_url" =~ '.vmdk' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500127 image_name="${image_fname%.vmdk}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700128
129 # Before we can upload vmdk type images to glance, we need to know it's
130 # disk type, storage adapter, and networking adapter. These values are
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800131 # passed to glance as custom properties.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700132 # We take these values from the vmdk file if populated. Otherwise, we use
Ryan Hsua6273b92013-09-04 23:51:29 -0700133 # vmdk filename, which is expected in the following format:
134 #
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800135 # <name>-<disk type>;<storage adapter>;<network adapter>
Ryan Hsua6273b92013-09-04 23:51:29 -0700136 #
137 # If the filename does not follow the above format then the vsphere
138 # driver will supply default values.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700139
Dean Troyere9f76672014-07-25 11:09:36 -0500140 local vmdk_disktype=""
Sabari Kumar Murugesan88cde0b2014-12-04 17:48:26 -0800141 local vmdk_net_adapter="e1000"
Dean Troyere9f76672014-07-25 11:09:36 -0500142 local path_len
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800143
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700144 # vmdk adapter type
Ian Wienand7ae97292016-02-16 14:50:53 +1100145 local vmdk_adapter_type
146 vmdk_adapter_type="$(head -25 $image | { grep -a -F -m 1 'ddb.adapterType =' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700147 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
148 vmdk_adapter_type="${vmdk_adapter_type%?}"
149
150 # vmdk disk type
Ian Wienand7ae97292016-02-16 14:50:53 +1100151 local vmdk_create_type
152 vmdk_create_type="$(head -25 $image | { grep -a -F -m 1 'createType=' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700153 vmdk_create_type="${vmdk_create_type#*\"}"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800154 vmdk_create_type="${vmdk_create_type%\"*}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800155
156 descriptor_data_pair_msg="Monolithic flat and VMFS disks "`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900157 `"should use a descriptor-data pair."
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700158 if [[ "$vmdk_create_type" = "monolithicSparse" ]]; then
159 vmdk_disktype="sparse"
Dean Troyere9f76672014-07-25 11:09:36 -0500160 elif [[ "$vmdk_create_type" = "monolithicFlat" || "$vmdk_create_type" = "vmfs" ]]; then
Dean Troyer3324f192014-09-18 09:26:39 -0500161 # Attempt to retrieve the ``*-flat.vmdk``
Ian Wienand7ae97292016-02-16 14:50:53 +1100162 local flat_fname
163 flat_fname="$(head -25 $image | { grep -G 'RW\|RDONLY [0-9]+ FLAT\|VMFS' $image || true; })"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800164 flat_fname="${flat_fname#*\"}"
165 flat_fname="${flat_fname%?}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700166 if [[ -z "$flat_fname" ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500167 flat_fname="$image_name-flat.vmdk"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800168 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500169 path_len=`expr ${#image_url} - ${#image_fname}`
170 local flat_url="${image_url:0:$path_len}$flat_fname"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800171 warn $LINENO "$descriptor_data_pair_msg"`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900172 `" Attempt to retrieve the *-flat.vmdk: $flat_url"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800173 if [[ $flat_url != file* ]]; then
174 if [[ ! -f $FILES/$flat_fname || \
175 "$(stat -c "%s" $FILES/$flat_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +0100176 wget --progress=dot:giga -c $flat_url -O $FILES/$flat_fname
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800177 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500178 image="$FILES/${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800179 else
Dean Troyere9f76672014-07-25 11:09:36 -0500180 image=$(echo $flat_url | sed "s/^file:\/\///g")
181 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800182 echo "Flat disk not found: $flat_url"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700183 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800184 fi
185 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500186 image_name="${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800187 vmdk_disktype="preallocated"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800188 elif [[ "$vmdk_create_type" = "streamOptimized" ]]; then
189 vmdk_disktype="streamOptimized"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800190 elif [[ -z "$vmdk_create_type" ]]; then
191 # *-flat.vmdk provided: attempt to retrieve the descriptor (*.vmdk)
192 # to retrieve appropriate metadata
Dean Troyere9f76672014-07-25 11:09:36 -0500193 if [[ ${image_name: -5} != "-flat" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800194 warn $LINENO "Expected filename suffix: '-flat'."`
Dean Troyere9f76672014-07-25 11:09:36 -0500195 `" Filename provided: ${image_name}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700196 else
Dean Troyere9f76672014-07-25 11:09:36 -0500197 descriptor_fname="${image_name:0:${#image_name} - 5}.vmdk"
198 path_len=`expr ${#image_url} - ${#image_fname}`
199 local flat_path="${image_url:0:$path_len}"
200 local descriptor_url=$flat_path$descriptor_fname
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700201 warn $LINENO "$descriptor_data_pair_msg"`
202 `" Attempt to retrieve the descriptor *.vmdk: $descriptor_url"
203 if [[ $flat_path != file* ]]; then
204 if [[ ! -f $FILES/$descriptor_fname || \
205 "$(stat -c "%s" $FILES/$descriptor_fname)" = "0" ]]; then
206 wget -c $descriptor_url -O $FILES/$descriptor_fname
207 fi
208 descriptor_url="$FILES/$descriptor_fname"
209 else
210 descriptor_url=$(echo $descriptor_url | sed "s/^file:\/\///g")
211 if [[ ! -f $descriptor_url || \
212 "$(stat -c "%s" $descriptor_url)" == "0" ]]; then
213 echo "Descriptor not found: $descriptor_url"
214 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800215 fi
216 fi
Ryan Hsu99b622a2014-03-05 15:35:49 -0800217 vmdk_adapter_type="$(head -25 $descriptor_url | { grep -a -F -m 1 'ddb.adapterType =' $descriptor_url || true; })"
218 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
219 vmdk_adapter_type="${vmdk_adapter_type%?}"
220 fi
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900221 vmdk_disktype="preallocated"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700222 else
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700223 vmdk_disktype="preallocated"
224 fi
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800225
226 # NOTE: For backwards compatibility reasons, colons may be used in place
227 # of semi-colons for property delimiters but they are not permitted
228 # characters in NTFS filesystems.
Dean Troyere9f76672014-07-25 11:09:36 -0500229 property_string=`echo "$image_name" | { grep -oP '(?<=-)(?!.*-).*[:;].*[:;].*$' || true; }`
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800230 IFS=':;' read -a props <<< "$property_string"
231 vmdk_disktype="${props[0]:-$vmdk_disktype}"
232 vmdk_adapter_type="${props[1]:-$vmdk_adapter_type}"
233 vmdk_net_adapter="${props[2]:-$vmdk_net_adapter}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700234
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300235 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" --public --container-format bare --disk-format vmdk --property vmware_disktype="$vmdk_disktype" --property vmware_adaptertype="$vmdk_adapter_type" --property hw_vif_model="$vmdk_net_adapter" < "${image}"
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700236 return
237 fi
238
Mate Lakatbc2ef922013-08-15 18:06:59 +0100239 # XenServer-vhd-ovf-format images are provided as .vhd.tgz
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500240 # and should not be decompressed prior to loading
241 if [[ "$image_url" =~ '.vhd.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500242 image_name="${image_fname%.vhd.tgz}"
243 local force_vm_mode=""
244 if [[ "$image_name" =~ 'cirros' ]]; then
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000245 # Cirros VHD image currently only boots in PV mode.
246 # Nova defaults to PV for all VHD images, but
247 # the glance setting is needed for booting
248 # directly from volume.
Dean Troyere9f76672014-07-25 11:09:36 -0500249 force_vm_mode="--property vm_mode=xen"
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000250 fi
Steve Martinelli8d3ac2d2014-08-02 23:47:15 -0400251 openstack \
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300252 --os-cloud=devstack-admin --os-region-name="$REGION_NAME" \
Steve Martinelli8d3ac2d2014-08-02 23:47:15 -0400253 image create \
254 "$image_name" --public \
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000255 --container-format=ovf --disk-format=vhd \
Dean Troyere9f76672014-07-25 11:09:36 -0500256 $force_vm_mode < "${image}"
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500257 return
258 fi
259
Mate Lakatbc2ef922013-08-15 18:06:59 +0100260 # .xen-raw.tgz suggests a Xen capable raw image inside a tgz.
261 # and should not be decompressed prior to loading.
262 # Setting metadata, so PV mode is used.
263 if [[ "$image_url" =~ '.xen-raw.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500264 image_name="${image_fname%.xen-raw.tgz}"
Steve Martinelli8d3ac2d2014-08-02 23:47:15 -0400265 openstack \
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300266 --os-cloud=devstack-admin --os-region-name="$REGION_NAME" \
Steve Martinelli8d3ac2d2014-08-02 23:47:15 -0400267 image create \
268 "$image_name" --public \
Mate Lakatbc2ef922013-08-15 18:06:59 +0100269 --container-format=tgz --disk-format=raw \
Dean Troyere9f76672014-07-25 11:09:36 -0500270 --property vm_mode=xen < "${image}"
Mate Lakatbc2ef922013-08-15 18:06:59 +0100271 return
272 fi
273
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300274 if [[ "$image_url" =~ '.hds' ]]; then
275 image_name="${image_fname%.hds}"
276 vm_mode=${image_name##*-}
277 if [[ $vm_mode != 'exe' && $vm_mode != 'hvm' ]]; then
278 die $LINENO "Unknown vm_mode=${vm_mode} for Virtuozzo image"
279 fi
280
281 openstack \
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300282 --os-cloud=devstack-admin --os-region-name="$REGION_NAME" \
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300283 image create \
284 "$image_name" --public \
285 --container-format=bare --disk-format=ploop \
286 --property vm_mode=$vm_mode < "${image}"
287 return
288 fi
289
Dean Troyere9f76672014-07-25 11:09:36 -0500290 local kernel=""
291 local ramdisk=""
292 local disk_format=""
293 local container_format=""
294 local unpack=""
Clark Boylan7ddbece2019-12-03 14:35:03 -0800295 local img_property="--property hw_rng_model=virtio"
Dean Troyere9f76672014-07-25 11:09:36 -0500296 case "$image_fname" in
Dean Troyerca0e3d02012-04-13 15:58:37 -0500297 *.tar.gz|*.tgz)
298 # Extract ami and aki files
Dean Troyere9f76672014-07-25 11:09:36 -0500299 [ "${image_fname%.tar.gz}" != "$image_fname" ] &&
300 image_name="${image_fname%.tar.gz}" ||
301 image_name="${image_fname%.tgz}"
302 local xdir="$FILES/images/$image_name"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500303 rm -Rf "$xdir";
304 mkdir "$xdir"
Dean Troyere9f76672014-07-25 11:09:36 -0500305 tar -zxf $image -C "$xdir"
306 kernel=$(for f in "$xdir/"*-vmlinuz* "$xdir/"aki-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400307 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500308 ramdisk=$(for f in "$xdir/"*-initrd* "$xdir/"ari-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400309 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500310 image=$(for f in "$xdir/"*.img "$xdir/"ami-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400311 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500312 if [[ -z "$image_name" ]]; then
313 image_name=$(basename "$image" ".img")
Dean Troyerca0e3d02012-04-13 15:58:37 -0500314 fi
315 ;;
316 *.img)
Dean Troyere9f76672014-07-25 11:09:36 -0500317 image_name=$(basename "$image" ".img")
Ian Wienandada886d2015-10-07 14:06:26 +1100318 local format
319 format=$(qemu-img info ${image} | awk '/^file format/ { print $3; exit }')
Dean Troyer636a3ff2012-09-14 11:36:07 -0500320 if [[ ",qcow2,raw,vdi,vmdk,vpc," =~ ",$format," ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500321 disk_format=$format
Dean Troyer636a3ff2012-09-14 11:36:07 -0500322 else
Dean Troyere9f76672014-07-25 11:09:36 -0500323 disk_format=raw
Dean Troyer636a3ff2012-09-14 11:36:07 -0500324 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500325 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500326 ;;
327 *.img.gz)
Dean Troyere9f76672014-07-25 11:09:36 -0500328 image_name=$(basename "$image" ".img.gz")
329 disk_format=raw
330 container_format=bare
331 unpack=zcat
Dean Troyerca0e3d02012-04-13 15:58:37 -0500332 ;;
Hongbin Lu3feceb02016-04-17 11:11:58 -0400333 *.img.bz2)
334 image_name=$(basename "$image" ".img.bz2")
335 disk_format=qcow2
336 container_format=bare
337 unpack=bunzip2
338 ;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500339 *.qcow2)
Dean Troyere9f76672014-07-25 11:09:36 -0500340 image_name=$(basename "$image" ".qcow2")
341 disk_format=qcow2
342 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500343 ;;
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000344 *.qcow2.xz)
345 image_name=$(basename "$image" ".qcow2.xz")
346 disk_format=qcow2
347 container_format=bare
348 unpack=unxz
349 ;;
Angel Noamf24e2992017-05-11 15:13:29 +0300350 *.raw)
351 image_name=$(basename "$image" ".raw")
352 disk_format=raw
353 container_format=bare
354 ;;
Jonathan Michalon06802042013-03-21 14:29:58 +0100355 *.iso)
Dean Troyere9f76672014-07-25 11:09:36 -0500356 image_name=$(basename "$image" ".iso")
357 disk_format=iso
358 container_format=bare
Jonathan Michalon06802042013-03-21 14:29:58 +0100359 ;;
Alessandro Pilottica823942014-08-07 02:05:26 +0300360 *.vhd|*.vhdx|*.vhd.gz|*.vhdx.gz)
361 local extension="${image_fname#*.}"
362 image_name=$(basename "$image" ".$extension")
Lucian Petrut2715fd02017-05-24 11:31:56 +0300363 disk_format=$(echo $image_fname | grep -oP '(?<=\.)vhdx?(?=\.|$)')
Alessandro Pilottica823942014-08-07 02:05:26 +0300364 container_format=bare
365 if [ "${image_fname##*.}" == "gz" ]; then
366 unpack=zcat
367 fi
368 ;;
Dean Troyere9f76672014-07-25 11:09:36 -0500369 *) echo "Do not know what to do with $image_fname"; false;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500370 esac
371
Rafael Folco72f530f2016-02-09 07:08:38 -0600372 if is_arch "ppc64le" || is_arch "ppc64" || is_arch "ppc"; then
Clark Boylan7ddbece2019-12-03 14:35:03 -0800373 img_property="$img_property --property hw_cdrom_bus=scsi --property os_command_line=console=hvc0"
Rafael Folcoab775872013-12-02 14:04:32 -0200374 fi
375
Clark Laughlinfcc3f6e2015-04-07 16:31:47 +0000376 if is_arch "aarch64"; then
Clark Boylan7ddbece2019-12-03 14:35:03 -0800377 img_property="$img_property --property hw_machine_type=virt --property hw_cdrom_bus=scsi --property hw_scsi_model=virtio-scsi --property os_command_line='console=ttyAMA0'"
Clark Laughlinfcc3f6e2015-04-07 16:31:47 +0000378 fi
379
Dean Troyere9f76672014-07-25 11:09:36 -0500380 if [ "$container_format" = "bare" ]; then
381 if [ "$unpack" = "zcat" ]; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300382 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" $img_property --public --container-format=$container_format --disk-format $disk_format < <(zcat --force "${image}")
Hongbin Lu3feceb02016-04-17 11:11:58 -0400383 elif [ "$unpack" = "bunzip2" ]; then
384 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" $img_property --public --container-format=$container_format --disk-format $disk_format < <(bunzip2 -cdk "${image}")
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000385 elif [ "$unpack" = "unxz" ]; then
386 # NOTE(brtknr): unxz the file first and cleanup afterwards to
387 # prevent timeout while Glance tries to upload image (e.g. to Swift).
388 local tmp_dir
389 local image_path
390 tmp_dir=$(mktemp -d)
391 image_path="$tmp_dir/$image_name"
392 unxz -cv "${image}" > "$image_path"
393 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" $img_property --public --container-format=$container_format --disk-format $disk_format --file "$image_path"
394 rm -rf $tmp_dir
Dean Troyerca0e3d02012-04-13 15:58:37 -0500395 else
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300396 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" $img_property --public --container-format=$container_format --disk-format $disk_format < "${image}"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500397 fi
398 else
399 # Use glance client to add the kernel the root filesystem.
400 # We parse the results of the first upload to get the glance ID of the
401 # kernel for use when uploading the root filesystem.
Dean Troyere9f76672014-07-25 11:09:36 -0500402 local kernel_id="" ramdisk_id="";
403 if [ -n "$kernel" ]; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300404 kernel_id=$(openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name-kernel" $img_property --public --container-format aki --disk-format aki < "$kernel" | grep ' id ' | get_field 2)
Dean Troyerca0e3d02012-04-13 15:58:37 -0500405 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500406 if [ -n "$ramdisk" ]; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300407 ramdisk_id=$(openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name-ramdisk" $img_property --public --container-format ari --disk-format ari < "$ramdisk" | grep ' id ' | get_field 2)
Dean Troyerca0e3d02012-04-13 15:58:37 -0500408 fi
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300409 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "${image_name%.img}" $img_property --public --container-format ami --disk-format ami ${kernel_id:+--property kernel_id=$kernel_id} ${ramdisk_id:+--property ramdisk_id=$ramdisk_id} < "${image}"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500410 fi
411}
412
Dean Troyer1a6d4492013-06-03 16:47:36 -0500413
Dean Troyerc1b486a2012-11-05 14:26:09 -0600414# Set the database backend to use
415# When called from stackrc/localrc DATABASE_BACKENDS has not been
416# initialized yet, just save the configuration selection and call back later
417# to validate it.
Adam Spierscb961592013-10-05 12:11:07 +0100418#
Matt Riedemannb14665f2019-10-17 19:34:05 +0000419# ``$1`` - the name of the database backend to use (mysql, postgresql, ...)
Dean Troyerc1b486a2012-11-05 14:26:09 -0600420function use_database {
421 if [[ -z "$DATABASE_BACKENDS" ]]; then
Dean Troyerafc29fe2013-02-07 15:56:24 -0600422 # No backends registered means this is likely called from ``localrc``
423 # This is now deprecated usage
Dean Troyerc1b486a2012-11-05 14:26:09 -0600424 DATABASE_TYPE=$1
Sean Dague72ad9422015-10-07 11:51:40 -0400425 deprecated "The database backend needs to be properly set in ENABLED_SERVICES; use_database is deprecated localrc"
Attila Fazekas251d3b52012-12-16 15:05:44 +0100426 else
Dean Troyerafc29fe2013-02-07 15:56:24 -0600427 # This should no longer get called...here for posterity
Attila Fazekas251d3b52012-12-16 15:05:44 +0100428 use_exclusive_service DATABASE_BACKENDS DATABASE_TYPE $1
Dean Troyerc1b486a2012-11-05 14:26:09 -0600429 fi
Dean Troyerc1b486a2012-11-05 14:26:09 -0600430}
431
sridhargaddamb5ab6462015-02-24 07:23:24 +0000432#Macro for curl statements. curl requires -g option for literal IPv6 addresses.
433CURL_GET="${CURL_GET:-curl -g}"
Dean Troyer1a6d4492013-06-03 16:47:36 -0500434
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600435# Wait for an HTTP server to start answering requests
436# wait_for_service timeout url
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400437#
438# If the service we want is behind a proxy, the proxy may be available
439# before the service. Compliant proxies will return a 503 in this case
440# Loop until we get something else.
441# Also check for the case where there is no proxy and the service just
442# hasn't started yet. curl returns 7 for Failed to connect to host.
Ian Wienandaee18c72014-02-21 15:35:08 +1100443function wait_for_service {
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600444 local timeout=$1
445 local url=$2
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400446 local rval=0
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900447 time_start "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400448 timeout $timeout bash -x <<EOF || rval=$?
449 while [[ \$( ${CURL_GET} -k --noproxy '*' -s -o /dev/null -w '%{http_code}' ${url} ) == 503 || \$? -eq 7 ]]; do
450 sleep 1
451 done
452EOF
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900453 time_stop "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400454 return $rval
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600455}
456
Sean Daguec2fe9162017-07-28 11:29:18 +0000457function wait_for_compute {
458 local timeout=$1
459 local rval=0
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530460 local compute_hostname
Sean Daguec2fe9162017-07-28 11:29:18 +0000461 time_start "wait_for_service"
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530462 compute_hostname=$(iniget $NOVA_CONF DEFAULT host)
463 if [[ -z $compute_hostname ]]; then
464 compute_hostname=$(hostname)
465 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000466 timeout $timeout bash -x <<EOF || rval=$?
467 ID=""
468 while [[ "\$ID" == "" ]]; do
469 sleep 1
Chris Dentac475bb2018-02-07 18:35:40 +0000470 if [[ "$VIRT_DRIVER" = 'fake' ]]; then
471 # When using the fake driver the compute hostnames have a suffix of 1 to NUMBER_FAKE_NOVA_COMPUTE
472 ID=\$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list --host `hostname`1 --service nova-compute -c ID -f value)
473 else
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530474 ID=\$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list --host "$compute_hostname" --service nova-compute -c ID -f value)
Chris Dentac475bb2018-02-07 18:35:40 +0000475 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000476 done
477EOF
478 time_stop "wait_for_service"
479 # Figure out what's happening on platforms where this doesn't work
480 if [[ "$rval" != 0 ]]; then
481 echo "Didn't find service registered by hostname after $timeout seconds"
482 openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list
483 fi
484 return $rval
485}
486
Dean Troyer1a6d4492013-06-03 16:47:36 -0500487
Nachi Uenofda946e2012-10-24 17:26:02 -0700488# ping check
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100489# Uses globals ``ENABLED_SERVICES``, ``TOP_DIR``, ``PRIVATE_NETWORK``
Sean Dagueaf9bf862015-04-16 08:58:32 -0400490# ping_check <ip> [boot-timeout] [from_net] [expected]
Ian Wienandaee18c72014-02-21 15:35:08 +1100491function ping_check {
Sean Dagueaf9bf862015-04-16 08:58:32 -0400492 local ip=$1
493 local timeout=${2:-30}
494 local from_net=${3:-""}
495 local expected=${4:-True}
496 local op="!"
497 local failmsg="[Fail] Couldn't ping server"
498 local ping_cmd="ping"
Nachi Uenofda946e2012-10-24 17:26:02 -0700499
Sean Dagueaf9bf862015-04-16 08:58:32 -0400500 # if we don't specify a from_net we're expecting things to work
501 # fine from our local box.
502 if [[ -n "$from_net" ]]; then
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100503 # TODO(stephenfin): Is there any way neutron could be disabled now?
Sean Dagueaf9bf862015-04-16 08:58:32 -0400504 if is_service_enabled neutron; then
505 ping_cmd="$TOP_DIR/tools/ping_neutron.sh $from_net"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700506 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700507 fi
Sean Dagueaf9bf862015-04-16 08:58:32 -0400508
509 # inverse the logic if we're testing no connectivity
510 if [[ "$expected" != "True" ]]; then
511 op=""
512 failmsg="[Fail] Could ping server"
513 fi
514
515 # Because we've transformed this command so many times, print it
516 # out at the end.
517 local check_command="while $op $ping_cmd -c1 -w1 $ip; do sleep 1; done"
518 echo "Checking connectivity with $check_command"
519
520 if ! timeout $timeout sh -c "$check_command"; then
521 die $LINENO $failmsg
522 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700523}
524
Nachi Ueno6769b162013-08-12 18:18:56 -0700525# Get ip of instance
Ian Wienandaee18c72014-02-21 15:35:08 +1100526function get_instance_ip {
Nachi Ueno6769b162013-08-12 18:18:56 -0700527 local vm_id=$1
528 local network_name=$2
Ryota MIBU842d54a2017-12-25 16:28:50 +0900529 local addresses
Ian Wienandada886d2015-10-07 14:06:26 +1100530 local ip
Ian Wienand7ae97292016-02-16 14:50:53 +1100531
Ryota MIBU842d54a2017-12-25 16:28:50 +0900532 addresses=$(openstack server show -c addresses -f value "$vm_id")
533 ip=$(echo $addresses | sed -n "s/^.*$network_name=\([0-9\.]*\).*$/\1/p")
Nachi Ueno6769b162013-08-12 18:18:56 -0700534 if [[ $ip = "" ]];then
Ryota MIBU842d54a2017-12-25 16:28:50 +0900535 echo "addresses of server $vm_id : $addresses"
Atsushi SAKAI33c9a672015-11-12 19:50:00 +0900536 die $LINENO "[Fail] Couldn't get ipaddress of VM"
Nachi Ueno6769b162013-08-12 18:18:56 -0700537 fi
538 echo $ip
539}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500540
Nachi Uenofda946e2012-10-24 17:26:02 -0700541# ssh check
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700542
Dean Troyer1a6d4492013-06-03 16:47:36 -0500543# ssh_check net-name key-file floating-ip default-user active-timeout
Ian Wienandaee18c72014-02-21 15:35:08 +1100544function ssh_check {
Mark McClainb05c8762013-07-06 23:29:39 -0400545 if is_service_enabled neutron; then
546 _ssh_check_neutron "$1" $2 $3 $4 $5
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700547 return
548 fi
549 _ssh_check_novanet "$1" $2 $3 $4 $5
550}
551
Ian Wienandaee18c72014-02-21 15:35:08 +1100552function _ssh_check_novanet {
Nachi Uenofda946e2012-10-24 17:26:02 -0700553 local NET_NAME=$1
554 local KEY_FILE=$2
555 local FLOATING_IP=$3
556 local DEFAULT_INSTANCE_USER=$4
557 local ACTIVE_TIMEOUT=$5
Dean Troyer6931c132012-11-07 16:51:21 -0600558 local probe_cmd=""
Dean Troyercc6b4432013-04-08 15:38:03 -0500559 if ! timeout $ACTIVE_TIMEOUT sh -c "while ! ssh -o StrictHostKeyChecking=no -i $KEY_FILE ${DEFAULT_INSTANCE_USER}@$FLOATING_IP echo success; do sleep 1; done"; then
Nachi Ueno07115eb2013-02-26 12:38:18 -0800560 die $LINENO "server didn't become ssh-able!"
Nachi Uenofda946e2012-10-24 17:26:02 -0700561 fi
562}
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500563
Vincent Untz856a11e2012-11-21 16:04:12 +0100564
Vincent Untz856a11e2012-11-21 16:04:12 +0100565# Get the location of the $module-rootwrap executables, where module is cinder
566# or nova.
567# get_rootwrap_location module
Ian Wienandaee18c72014-02-21 15:35:08 +1100568function get_rootwrap_location {
Vincent Untz856a11e2012-11-21 16:04:12 +0100569 local module=$1
570
Jakub Ruzicka4196d552013-01-30 15:35:54 +0100571 echo "$(get_python_exec_prefix)/$module-rootwrap"
Vincent Untz856a11e2012-11-21 16:04:12 +0100572}
573
Dean Troyer1a6d4492013-06-03 16:47:36 -0500574
Ian Wienand0488edd2013-04-11 12:04:36 +1000575# Path permissions sanity check
576# check_path_perm_sanity path
Ian Wienandaee18c72014-02-21 15:35:08 +1100577function check_path_perm_sanity {
Ian Wienand0488edd2013-04-11 12:04:36 +1000578 # Ensure no element of the path has 0700 permissions, which is very
579 # likely to cause issues for daemons. Inspired by default 0700
580 # homedir permissions on RHEL and common practice of making DEST in
581 # the stack user's homedir.
582
Ian Wienandada886d2015-10-07 14:06:26 +1100583 local real_path
584 real_path=$(readlink -f $1)
Ian Wienand0488edd2013-04-11 12:04:36 +1000585 local rebuilt_path=""
586 for i in $(echo ${real_path} | tr "/" " "); do
587 rebuilt_path=$rebuilt_path"/"$i
588
589 if [[ $(stat -c '%a' ${rebuilt_path}) = 700 ]]; then
590 echo "*** DEST path element"
591 echo "*** ${rebuilt_path}"
592 echo "*** appears to have 0700 permissions."
Dean Troyerdc97cb72015-03-28 08:20:50 -0500593 echo "*** This is very likely to cause fatal issues for DevStack daemons."
Ian Wienand0488edd2013-04-11 12:04:36 +1000594
595 if [[ -n "$SKIP_PATH_SANITY" ]]; then
596 return
597 else
598 echo "*** Set SKIP_PATH_SANITY to skip this check"
599 die $LINENO "Invalid path permissions"
600 fi
601 fi
602 done
603}
604
Dean Troyer1a6d4492013-06-03 16:47:36 -0500605
Ian Wienand2ba36cd2015-11-12 13:52:36 +1100606# vercmp ver1 op ver2
607# Compare VER1 to VER2
608# - op is one of < <= == >= >
609# - returns true if satisified
610# e.g.
611# if vercmp 1.0 "<" 2.0; then
612# ...
613# fi
614function vercmp {
615 local v1=$1
616 local op=$2
617 local v2=$3
618 local result
619
620 # sort the two numbers with sort's "-V" argument. Based on if v2
621 # swapped places with v1, we can determine ordering.
622 result=$(echo -e "$v1\n$v2" | sort -V | head -1)
623
624 case $op in
625 "==")
626 [ "$v1" = "$v2" ]
627 return
628 ;;
629 ">")
630 [ "$v1" != "$v2" ] && [ "$result" = "$v2" ]
631 return
632 ;;
633 "<")
634 [ "$v1" != "$v2" ] && [ "$result" = "$v1" ]
635 return
636 ;;
637 ">=")
638 [ "$result" = "$v2" ]
639 return
640 ;;
641 "<=")
642 [ "$result" = "$v1" ]
643 return
644 ;;
645 *)
646 die $LINENO "unrecognised op: $op"
647 ;;
648 esac
649}
Kyle Mestery51a3f1f2013-06-13 11:47:56 +0000650
Sean Dague9751be62016-04-05 12:08:57 -0400651# This sets up defaults we like in devstack for logging for tracking
652# down issues, and makes sure everything is done the same between
653# projects.
654function setup_logging {
655 local conf_file=$1
656 local other_cond=${2:-"False"}
Sean Dague5edae542017-03-21 20:50:24 -0400657 if [[ "$USE_SYSTEMD" == "True" ]]; then
658 setup_systemd_logging $conf_file
659 elif [ "$LOG_COLOR" == "True" ] && [ "$SYSLOG" == "False" ] && [ "$other_cond" == "False" ]; then
Sean Dague9751be62016-04-05 12:08:57 -0400660 setup_colorized_logging $conf_file
661 else
662 setup_standard_logging_identity $conf_file
663 fi
664}
665
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700666# This function sets log formatting options for colorizing log
667# output to stdout. It is meant to be called by lib modules.
668# The last two parameters are optional and can be used to specify
669# non-default value for project and user format variables.
670# Defaults are respectively 'project_name' and 'user_name'
671#
672# setup_colorized_logging something.conf SOMESECTION
Ian Wienandaee18c72014-02-21 15:35:08 +1100673function setup_colorized_logging {
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700674 local conf_file=$1
Sean Dagueb6753ce2016-04-05 11:52:44 -0400675 local conf_section="DEFAULT"
676 local project_var="project_name"
677 local user_var="user_name"
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700678 # Add color to logging output
Sean Dagueb6753ce2016-04-05 11:52:44 -0400679 iniset $conf_file $conf_section logging_context_format_string "%(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %("$project_var")s %("$user_var")s%(color)s] %(instance)s%(color)s%(message)s"
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700680 iniset $conf_file $conf_section logging_default_format_string "%(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
681 iniset $conf_file $conf_section logging_debug_format_suffix "from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d"
682 iniset $conf_file $conf_section logging_exception_prefix "%(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s"
683}
684
Sean Dague5edae542017-03-21 20:50:24 -0400685function setup_systemd_logging {
686 local conf_file=$1
687 local conf_section="DEFAULT"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400688 # NOTE(sdague): this is a nice to have, and means we're using the
689 # native systemd path, which provides for things like search on
690 # request-id. However, there may be an eventlet interaction here,
691 # so going off for now.
Kirill Zaitsevc0644f32017-05-24 13:00:47 +0300692 USE_JOURNAL=$(trueorfalse False USE_JOURNAL)
Eric Fried8cd310d2017-05-16 13:52:03 -0500693 local pidstr=""
Sean Dagueb2bfe562017-05-03 09:58:21 -0400694 if [[ "$USE_JOURNAL" == "True" ]]; then
695 iniset $conf_file $conf_section use_journal "True"
696 # if we are using the journal directly, our process id is already correct
Sean Dagueb2bfe562017-05-03 09:58:21 -0400697 else
Eric Fried8cd310d2017-05-16 13:52:03 -0500698 pidstr="(pid=%(process)d) "
Sean Dagueb2bfe562017-05-03 09:58:21 -0400699 fi
Eric Fried8cd310d2017-05-16 13:52:03 -0500700 iniset $conf_file $conf_section logging_debug_format_suffix "{{${pidstr}%(funcName)s %(pathname)s:%(lineno)d}}"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400701
Sean Daguee123ede2017-05-23 15:53:48 -0400702 iniset $conf_file $conf_section logging_context_format_string "%(color)s%(levelname)s %(name)s [%(global_request_id)s %(request_id)s %(project_name)s %(user_name)s%(color)s] %(instance)s%(color)s%(message)s"
Eric Fried8cd310d2017-05-16 13:52:03 -0500703 iniset $conf_file $conf_section logging_default_format_string "%(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
704 iniset $conf_file $conf_section logging_exception_prefix "ERROR %(name)s %(instance)s"
Sean Dague5edae542017-03-21 20:50:24 -0400705}
706
Sean Dague9751be62016-04-05 12:08:57 -0400707function setup_standard_logging_identity {
708 local conf_file=$1
709 iniset $conf_file DEFAULT logging_user_identity_format "%(project_name)s %(user_name)s"
710}
711
Ian Wienand54e39102014-06-03 16:05:12 +1000712# These functions are provided for basic fall-back functionality for
Dean Troyerdc97cb72015-03-28 08:20:50 -0500713# projects that include parts of DevStack (Grenade). stack.sh will
714# override these with more specific versions for DevStack (with fancy
Ian Wienand54e39102014-06-03 16:05:12 +1000715# spinners, etc). We never override an existing version
716if ! function_exists echo_summary; then
717 function echo_summary {
718 echo $@
719 }
720fi
721if ! function_exists echo_nolog; then
722 function echo_nolog {
723 echo $@
724 }
725fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600726
Sébastien Han36f2f022014-01-06 18:09:26 +0100727
728# create_disk - Create backing disk
729function create_disk {
730 local node_number
731 local disk_image=${1}
732 local storage_data_dir=${2}
733 local loopback_disk_size=${3}
734
735 # Create a loopback disk and format it to XFS.
736 if [[ -e ${disk_image} ]]; then
737 if egrep -q ${storage_data_dir} /proc/mounts; then
liumk38a23d92017-12-13 15:09:02 +0800738 sudo umount ${storage_data_dir}
Sébastien Han36f2f022014-01-06 18:09:26 +0100739 sudo rm -f ${disk_image}
740 fi
741 fi
742
743 sudo mkdir -p ${storage_data_dir}/drives/images
744
745 sudo truncate -s ${loopback_disk_size} ${disk_image}
746
747 # Make a fresh XFS filesystem. Use bigger inodes so xattr can fit in
748 # a single inode. Keeping the default inode size (256) will result in multiple
749 # inodes being used to store xattr. Retrieving the xattr will be slower
750 # since we have to read multiple inodes. This statement is true for both
751 # Swift and Ceph.
752 sudo mkfs.xfs -f -i size=1024 ${disk_image}
753
754 # Mount the disk with mount options to make it as efficient as possible
755 if ! egrep -q ${storage_data_dir} /proc/mounts; then
Lee Yarwood5d7d8912018-12-03 14:21:06 +0000756 sudo mount -t xfs -o loop,noatime,nodiratime,logbufs=8 \
Sébastien Han36f2f022014-01-06 18:09:26 +0100757 ${disk_image} ${storage_data_dir}
758 fi
759}
760
Ihar Hrachyshka7b5c7dc2016-07-15 20:17:13 +0200761
762# set_mtu - Set MTU on a device
763function set_mtu {
764 local dev=$1
765 local mtu=$2
766 sudo ip link set mtu $mtu dev $dev
767}
768
769
Denis Buliga0bf75a42017-02-06 16:56:46 +0200770# running_in_container - Returns true otherwise false
771function running_in_container {
kesperd18d7c82017-03-23 05:52:33 +0000772 [[ $(systemd-detect-virt --container) != 'none' ]]
Denis Buliga0bf75a42017-02-06 16:56:46 +0200773}
774
775
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000776# enable_kernel_bridge_firewall - Enable kernel support for bridge firewalling
777function enable_kernel_bridge_firewall {
778 # Load bridge module. This module provides access to firewall for bridged
779 # frames; and also on older kernels (pre-3.18) it provides sysctl knobs to
780 # enable/disable bridge firewalling
781 sudo modprobe bridge
782 # For newer kernels (3.18+), those sysctl settings are split into a separate
783 # kernel module (br_netfilter). Load it too, if present.
784 sudo modprobe br_netfilter 2>> /dev/null || :
785 # Enable bridge firewalling in case it's disabled in kernel (upstream
786 # default is enabled, but some distributions may decide to change it).
787 # This is at least needed for RHEL 7.2 and earlier releases.
Ihar Hrachyshka3f771b72016-12-17 04:12:24 +0000788 for proto in ip ip6; do
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000789 sudo sysctl -w net.bridge.bridge-nf-call-${proto}tables=1
790 done
791}
792
793
Dan Smith1f55d382017-05-16 08:50:53 -0700794# Set a systemd system override
795#
796# This sets a system-side override in system.conf. A per-service
797# override would be /etc/systemd/system/${service}.service/override.conf
798function set_systemd_override {
799 local key="$1"
800 local value="$2"
801
802 local sysconf="/etc/systemd/system.conf"
803 iniset -sudo "${sysconf}" "Manager" "$key" "$value"
804 echo "Set systemd system override for ${key}=${value}"
805
806 sudo systemctl daemon-reload
807}
808
Matthew Treinish309b99e2017-05-23 15:18:31 -0400809# Get a random port from the local port range
810#
811# This function returns an available port in the local port range. The search
812# order is not truly random, but should be considered a random value by the
813# user because it depends on the state of your local system.
814function get_random_port {
815 read lower_port upper_port < /proc/sys/net/ipv4/ip_local_port_range
816 while true; do
817 for (( port = upper_port ; port >= lower_port ; port-- )); do
818 sudo lsof -i ":$port" &> /dev/null
819 if [[ $? > 0 ]] ; then
820 break 2
821 fi
822 done
823 done
824 echo $port
825}
826
Ian Wienand07cbc442017-06-30 12:29:19 +1000827# Save some state information
828#
829# Write out various useful state information to /etc/devstack-version
Sean Dague2c0faca2017-06-28 09:13:04 -0400830function write_devstack_version {
Dirk Mueller6bab8322018-03-02 21:13:12 +0100831 cat - <<EOF | sudo tee /etc/devstack-version >/dev/null
Ian Wienand07cbc442017-06-30 12:29:19 +1000832DevStack Version: ${DEVSTACK_SERIES}
833Change: $(git log --format="%H %s %ci" -1)
834OS Version: ${os_VENDOR} ${os_RELEASE} ${os_CODENAME}
Sean Dague2c0faca2017-06-28 09:13:04 -0400835EOF
Sean Dague2c0faca2017-06-28 09:13:04 -0400836}
837
Dean Troyer27e32692012-03-16 16:16:56 -0500838# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100839$_XTRACE_FUNCTIONS
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500840
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500841# Local variables:
Sean Dague584d90e2013-03-29 14:34:53 -0400842# mode: shell-script
Andrew Laskif900bd72012-09-05 17:23:14 -0400843# End: