blob: 2d60a0821fb27bc1f4a2d21b27ffc10bb61c0891 [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
Abhishek Kekane73ad9762020-06-16 15:20:48 +000080# Upload an image to glance using the configured mechanism
81#
82# Arguments:
83# image name
84# container format
85# disk format
86# path to image file
87# optional properties (format of propname=value)
88#
89function _upload_image {
90 local image_name="$1"
91 shift
92 local container="$1"
93 shift
94 local disk="$1"
95 shift
96 local image="$1"
97 shift
98 local properties
99 local useimport
100
101 for prop in $*; do
102 properties+=" --property $prop"
103 done
104
105 if [[ "$GLANCE_USE_IMPORT_WORKFLOW" == "True" ]]; then
106 if [[ "$WSGI_MODE" != "uwsgi" ]]; then
107 useimport="--import"
108 else
109 echo "*** Unable to use glance import workflow because WSGI_MODE=uwsgi! ***"
110 fi
111 fi
112
113 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" --public --container-format "$container" --disk-format "$disk" $useimport $properties < "${image}"
114}
Sean Dague646085d2016-03-21 17:00:51 -0400115
Adam Spierscb961592013-10-05 12:11:07 +0100116# Retrieve an image from a URL and upload into Glance.
Dean Troyerca0e3d02012-04-13 15:58:37 -0500117# Uses the following variables:
Adam Spierscb961592013-10-05 12:11:07 +0100118#
119# - ``FILES`` must be set to the cache dir
120# - ``GLANCE_HOSTPORT``
121#
Peter Stachowski5aeea6a2015-09-22 19:38:02 +0000122# upload_image image-url
Ian Wienandaee18c72014-02-21 15:35:08 +1100123function upload_image {
Dean Troyerca0e3d02012-04-13 15:58:37 -0500124 local image_url=$1
Dean Troyerca0e3d02012-04-13 15:58:37 -0500125
Dean Troyere9f76672014-07-25 11:09:36 -0500126 local image image_fname image_name
127
Dean Troyerca0e3d02012-04-13 15:58:37 -0500128 # Create a directory for the downloaded image tarballs.
129 mkdir -p $FILES/images
Dean Troyere9f76672014-07-25 11:09:36 -0500130 image_fname=`basename "$image_url"`
Arnaud Legendre3e439442013-11-15 16:06:03 -0800131 if [[ $image_url != file* ]]; then
Sreeram Yerrapragada314af0a2014-03-03 21:34:45 -0800132 # Downloads the image (uec ami+akistyle), then extracts it.
Dean Troyere9f76672014-07-25 11:09:36 -0500133 if [[ ! -f $FILES/$image_fname || "$(stat -c "%s" $FILES/$image_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +0100134 wget --progress=dot:giga -c $image_url -O $FILES/$image_fname
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900135 if [[ $? -ne 0 ]]; then
136 echo "Not found: $image_url"
137 return
138 fi
Arnaud Legendre3e439442013-11-15 16:06:03 -0800139 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500140 image="$FILES/${image_fname}"
Arnaud Legendre3e439442013-11-15 16:06:03 -0800141 else
Dean Troyer3324f192014-09-18 09:26:39 -0500142 # File based URL (RFC 1738): ``file://host/path``
Arnaud Legendre3e439442013-11-15 16:06:03 -0800143 # Remote files are not considered here.
Dean Troyer3324f192014-09-18 09:26:39 -0500144 # unix: ``file:///home/user/path/file``
145 # windows: ``file:///C:/Documents%20and%20Settings/user/path/file``
Dean Troyere9f76672014-07-25 11:09:36 -0500146 image=$(echo $image_url | sed "s/^file:\/\///g")
147 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Dean Troyerca0e3d02012-04-13 15:58:37 -0500148 echo "Not found: $image_url"
149 return
150 fi
151 fi
152
153 # OpenVZ-format images are provided as .tar.gz, but not decompressed prior to loading
154 if [[ "$image_url" =~ 'openvz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500155 image_name="${image_fname%.tar.gz}"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000156 _upload_image "$image_name" ami ami "$image"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500157 return
158 fi
159
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700160 # vmdk format images
161 if [[ "$image_url" =~ '.vmdk' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500162 image_name="${image_fname%.vmdk}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700163
164 # Before we can upload vmdk type images to glance, we need to know it's
165 # disk type, storage adapter, and networking adapter. These values are
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800166 # passed to glance as custom properties.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700167 # We take these values from the vmdk file if populated. Otherwise, we use
Ryan Hsua6273b92013-09-04 23:51:29 -0700168 # vmdk filename, which is expected in the following format:
169 #
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800170 # <name>-<disk type>;<storage adapter>;<network adapter>
Ryan Hsua6273b92013-09-04 23:51:29 -0700171 #
172 # If the filename does not follow the above format then the vsphere
173 # driver will supply default values.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700174
Dean Troyere9f76672014-07-25 11:09:36 -0500175 local vmdk_disktype=""
Sabari Kumar Murugesan88cde0b2014-12-04 17:48:26 -0800176 local vmdk_net_adapter="e1000"
Dean Troyere9f76672014-07-25 11:09:36 -0500177 local path_len
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800178
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700179 # vmdk adapter type
Ian Wienand7ae97292016-02-16 14:50:53 +1100180 local vmdk_adapter_type
181 vmdk_adapter_type="$(head -25 $image | { grep -a -F -m 1 'ddb.adapterType =' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700182 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
183 vmdk_adapter_type="${vmdk_adapter_type%?}"
184
185 # vmdk disk type
Ian Wienand7ae97292016-02-16 14:50:53 +1100186 local vmdk_create_type
187 vmdk_create_type="$(head -25 $image | { grep -a -F -m 1 'createType=' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700188 vmdk_create_type="${vmdk_create_type#*\"}"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800189 vmdk_create_type="${vmdk_create_type%\"*}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800190
191 descriptor_data_pair_msg="Monolithic flat and VMFS disks "`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900192 `"should use a descriptor-data pair."
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700193 if [[ "$vmdk_create_type" = "monolithicSparse" ]]; then
194 vmdk_disktype="sparse"
Dean Troyere9f76672014-07-25 11:09:36 -0500195 elif [[ "$vmdk_create_type" = "monolithicFlat" || "$vmdk_create_type" = "vmfs" ]]; then
Dean Troyer3324f192014-09-18 09:26:39 -0500196 # Attempt to retrieve the ``*-flat.vmdk``
Ian Wienand7ae97292016-02-16 14:50:53 +1100197 local flat_fname
198 flat_fname="$(head -25 $image | { grep -G 'RW\|RDONLY [0-9]+ FLAT\|VMFS' $image || true; })"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800199 flat_fname="${flat_fname#*\"}"
200 flat_fname="${flat_fname%?}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700201 if [[ -z "$flat_fname" ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500202 flat_fname="$image_name-flat.vmdk"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800203 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500204 path_len=`expr ${#image_url} - ${#image_fname}`
205 local flat_url="${image_url:0:$path_len}$flat_fname"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800206 warn $LINENO "$descriptor_data_pair_msg"`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900207 `" Attempt to retrieve the *-flat.vmdk: $flat_url"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800208 if [[ $flat_url != file* ]]; then
209 if [[ ! -f $FILES/$flat_fname || \
210 "$(stat -c "%s" $FILES/$flat_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +0100211 wget --progress=dot:giga -c $flat_url -O $FILES/$flat_fname
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800212 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500213 image="$FILES/${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800214 else
Dean Troyere9f76672014-07-25 11:09:36 -0500215 image=$(echo $flat_url | sed "s/^file:\/\///g")
216 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800217 echo "Flat disk not found: $flat_url"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700218 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800219 fi
220 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500221 image_name="${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800222 vmdk_disktype="preallocated"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800223 elif [[ "$vmdk_create_type" = "streamOptimized" ]]; then
224 vmdk_disktype="streamOptimized"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800225 elif [[ -z "$vmdk_create_type" ]]; then
226 # *-flat.vmdk provided: attempt to retrieve the descriptor (*.vmdk)
227 # to retrieve appropriate metadata
Dean Troyere9f76672014-07-25 11:09:36 -0500228 if [[ ${image_name: -5} != "-flat" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800229 warn $LINENO "Expected filename suffix: '-flat'."`
Dean Troyere9f76672014-07-25 11:09:36 -0500230 `" Filename provided: ${image_name}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700231 else
Dean Troyere9f76672014-07-25 11:09:36 -0500232 descriptor_fname="${image_name:0:${#image_name} - 5}.vmdk"
233 path_len=`expr ${#image_url} - ${#image_fname}`
234 local flat_path="${image_url:0:$path_len}"
235 local descriptor_url=$flat_path$descriptor_fname
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700236 warn $LINENO "$descriptor_data_pair_msg"`
237 `" Attempt to retrieve the descriptor *.vmdk: $descriptor_url"
238 if [[ $flat_path != file* ]]; then
239 if [[ ! -f $FILES/$descriptor_fname || \
240 "$(stat -c "%s" $FILES/$descriptor_fname)" = "0" ]]; then
241 wget -c $descriptor_url -O $FILES/$descriptor_fname
242 fi
243 descriptor_url="$FILES/$descriptor_fname"
244 else
245 descriptor_url=$(echo $descriptor_url | sed "s/^file:\/\///g")
246 if [[ ! -f $descriptor_url || \
247 "$(stat -c "%s" $descriptor_url)" == "0" ]]; then
248 echo "Descriptor not found: $descriptor_url"
249 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800250 fi
251 fi
Ryan Hsu99b622a2014-03-05 15:35:49 -0800252 vmdk_adapter_type="$(head -25 $descriptor_url | { grep -a -F -m 1 'ddb.adapterType =' $descriptor_url || true; })"
253 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
254 vmdk_adapter_type="${vmdk_adapter_type%?}"
255 fi
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900256 vmdk_disktype="preallocated"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700257 else
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700258 vmdk_disktype="preallocated"
259 fi
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800260
261 # NOTE: For backwards compatibility reasons, colons may be used in place
262 # of semi-colons for property delimiters but they are not permitted
263 # characters in NTFS filesystems.
Dean Troyere9f76672014-07-25 11:09:36 -0500264 property_string=`echo "$image_name" | { grep -oP '(?<=-)(?!.*-).*[:;].*[:;].*$' || true; }`
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800265 IFS=':;' read -a props <<< "$property_string"
266 vmdk_disktype="${props[0]:-$vmdk_disktype}"
267 vmdk_adapter_type="${props[1]:-$vmdk_adapter_type}"
268 vmdk_net_adapter="${props[2]:-$vmdk_net_adapter}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700269
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000270 _upload_image "$image_name" bare vmdk "$image" vmware_disktype="$vmdk_disktype" vmware_adaptertype="$vmdk_adapter_type" hw_vif_model="$vmdk_net_adapter"
271
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700272 return
273 fi
274
Mate Lakatbc2ef922013-08-15 18:06:59 +0100275 # XenServer-vhd-ovf-format images are provided as .vhd.tgz
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500276 # and should not be decompressed prior to loading
277 if [[ "$image_url" =~ '.vhd.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500278 image_name="${image_fname%.vhd.tgz}"
279 local force_vm_mode=""
280 if [[ "$image_name" =~ 'cirros' ]]; then
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000281 # Cirros VHD image currently only boots in PV mode.
282 # Nova defaults to PV for all VHD images, but
283 # the glance setting is needed for booting
284 # directly from volume.
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000285 force_vm_mode="vm_mode=xen"
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000286 fi
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000287 _upload_image "$image_name" ovf vhd "$image" $force_vm_mode
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500288 return
289 fi
290
Mate Lakatbc2ef922013-08-15 18:06:59 +0100291 # .xen-raw.tgz suggests a Xen capable raw image inside a tgz.
292 # and should not be decompressed prior to loading.
293 # Setting metadata, so PV mode is used.
294 if [[ "$image_url" =~ '.xen-raw.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500295 image_name="${image_fname%.xen-raw.tgz}"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000296 _upload_image "$image_name" tgz raw "$image" vm_mode=xen
Mate Lakatbc2ef922013-08-15 18:06:59 +0100297 return
298 fi
299
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300300 if [[ "$image_url" =~ '.hds' ]]; then
301 image_name="${image_fname%.hds}"
302 vm_mode=${image_name##*-}
303 if [[ $vm_mode != 'exe' && $vm_mode != 'hvm' ]]; then
304 die $LINENO "Unknown vm_mode=${vm_mode} for Virtuozzo image"
305 fi
306
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000307 _upload_image "$image_name" bare ploop "$image" vm_mode=$vm_mode
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300308 return
309 fi
310
Dean Troyere9f76672014-07-25 11:09:36 -0500311 local kernel=""
312 local ramdisk=""
313 local disk_format=""
314 local container_format=""
315 local unpack=""
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000316 local img_property="hw_rng_model=virtio"
Dean Troyere9f76672014-07-25 11:09:36 -0500317 case "$image_fname" in
Dean Troyerca0e3d02012-04-13 15:58:37 -0500318 *.tar.gz|*.tgz)
319 # Extract ami and aki files
Dean Troyere9f76672014-07-25 11:09:36 -0500320 [ "${image_fname%.tar.gz}" != "$image_fname" ] &&
321 image_name="${image_fname%.tar.gz}" ||
322 image_name="${image_fname%.tgz}"
323 local xdir="$FILES/images/$image_name"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500324 rm -Rf "$xdir";
325 mkdir "$xdir"
Dean Troyere9f76672014-07-25 11:09:36 -0500326 tar -zxf $image -C "$xdir"
327 kernel=$(for f in "$xdir/"*-vmlinuz* "$xdir/"aki-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400328 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500329 ramdisk=$(for f in "$xdir/"*-initrd* "$xdir/"ari-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400330 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500331 image=$(for f in "$xdir/"*.img "$xdir/"ami-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400332 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500333 if [[ -z "$image_name" ]]; then
334 image_name=$(basename "$image" ".img")
Dean Troyerca0e3d02012-04-13 15:58:37 -0500335 fi
336 ;;
337 *.img)
Dean Troyere9f76672014-07-25 11:09:36 -0500338 image_name=$(basename "$image" ".img")
Ian Wienandada886d2015-10-07 14:06:26 +1100339 local format
340 format=$(qemu-img info ${image} | awk '/^file format/ { print $3; exit }')
Dean Troyer636a3ff2012-09-14 11:36:07 -0500341 if [[ ",qcow2,raw,vdi,vmdk,vpc," =~ ",$format," ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500342 disk_format=$format
Dean Troyer636a3ff2012-09-14 11:36:07 -0500343 else
Dean Troyere9f76672014-07-25 11:09:36 -0500344 disk_format=raw
Dean Troyer636a3ff2012-09-14 11:36:07 -0500345 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500346 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500347 ;;
348 *.img.gz)
Dean Troyere9f76672014-07-25 11:09:36 -0500349 image_name=$(basename "$image" ".img.gz")
350 disk_format=raw
351 container_format=bare
352 unpack=zcat
Dean Troyerca0e3d02012-04-13 15:58:37 -0500353 ;;
Hongbin Lu3feceb02016-04-17 11:11:58 -0400354 *.img.bz2)
355 image_name=$(basename "$image" ".img.bz2")
356 disk_format=qcow2
357 container_format=bare
358 unpack=bunzip2
359 ;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500360 *.qcow2)
Dean Troyere9f76672014-07-25 11:09:36 -0500361 image_name=$(basename "$image" ".qcow2")
362 disk_format=qcow2
363 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500364 ;;
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000365 *.qcow2.xz)
366 image_name=$(basename "$image" ".qcow2.xz")
367 disk_format=qcow2
368 container_format=bare
369 unpack=unxz
370 ;;
Angel Noamf24e2992017-05-11 15:13:29 +0300371 *.raw)
372 image_name=$(basename "$image" ".raw")
373 disk_format=raw
374 container_format=bare
375 ;;
Jonathan Michalon06802042013-03-21 14:29:58 +0100376 *.iso)
Dean Troyere9f76672014-07-25 11:09:36 -0500377 image_name=$(basename "$image" ".iso")
378 disk_format=iso
379 container_format=bare
Jonathan Michalon06802042013-03-21 14:29:58 +0100380 ;;
Alessandro Pilottica823942014-08-07 02:05:26 +0300381 *.vhd|*.vhdx|*.vhd.gz|*.vhdx.gz)
382 local extension="${image_fname#*.}"
383 image_name=$(basename "$image" ".$extension")
Lucian Petrut2715fd02017-05-24 11:31:56 +0300384 disk_format=$(echo $image_fname | grep -oP '(?<=\.)vhdx?(?=\.|$)')
Alessandro Pilottica823942014-08-07 02:05:26 +0300385 container_format=bare
386 if [ "${image_fname##*.}" == "gz" ]; then
387 unpack=zcat
388 fi
389 ;;
Dean Troyere9f76672014-07-25 11:09:36 -0500390 *) echo "Do not know what to do with $image_fname"; false;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500391 esac
392
Rafael Folco72f530f2016-02-09 07:08:38 -0600393 if is_arch "ppc64le" || is_arch "ppc64" || is_arch "ppc"; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000394 img_property="$img_property hw_cdrom_bus=scsi os_command_line=console=hvc0"
Rafael Folcoab775872013-12-02 14:04:32 -0200395 fi
396
Clark Laughlinfcc3f6e2015-04-07 16:31:47 +0000397 if is_arch "aarch64"; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000398 img_property="$img_property hw_machine_type=virt hw_cdrom_bus=scsi hw_scsi_model=virtio-scsi os_command_line='console=ttyAMA0'"
Clark Laughlinfcc3f6e2015-04-07 16:31:47 +0000399 fi
400
Dean Troyere9f76672014-07-25 11:09:36 -0500401 if [ "$container_format" = "bare" ]; then
402 if [ "$unpack" = "zcat" ]; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000403 _upload_image "$image_name" $container_format $disk_format <(zcat --force "$image") $img_property
Hongbin Lu3feceb02016-04-17 11:11:58 -0400404 elif [ "$unpack" = "bunzip2" ]; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000405 _upload_image "$image_name" $container_format $disk_format <(bunzip2 -cdk "$image") $img_property
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000406 elif [ "$unpack" = "unxz" ]; then
407 # NOTE(brtknr): unxz the file first and cleanup afterwards to
408 # prevent timeout while Glance tries to upload image (e.g. to Swift).
409 local tmp_dir
410 local image_path
411 tmp_dir=$(mktemp -d)
412 image_path="$tmp_dir/$image_name"
413 unxz -cv "${image}" > "$image_path"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000414 _upload_image "$image_name" $container_format $disk_format "$image_path" $img_property
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000415 rm -rf $tmp_dir
Dean Troyerca0e3d02012-04-13 15:58:37 -0500416 else
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000417 _upload_image "$image_name" $container_format $disk_format "$image" $img_property
Dean Troyerca0e3d02012-04-13 15:58:37 -0500418 fi
419 else
420 # Use glance client to add the kernel the root filesystem.
421 # We parse the results of the first upload to get the glance ID of the
422 # kernel for use when uploading the root filesystem.
Dean Troyere9f76672014-07-25 11:09:36 -0500423 local kernel_id="" ramdisk_id="";
424 if [ -n "$kernel" ]; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300425 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 -0500426 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500427 if [ -n "$ramdisk" ]; then
Victor Ryzhenkin878d7d82016-04-27 15:15:52 +0300428 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 -0500429 fi
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000430 _upload_image "${image_name%.img}" ami ami "$image" ${kernel_id:+ kernel_id=$kernel_id} ${ramdisk_id:+ ramdisk_id=$ramdisk_id} $img_property
Dean Troyerca0e3d02012-04-13 15:58:37 -0500431 fi
432}
433
Dean Troyer1a6d4492013-06-03 16:47:36 -0500434
Dean Troyerc1b486a2012-11-05 14:26:09 -0600435# Set the database backend to use
436# When called from stackrc/localrc DATABASE_BACKENDS has not been
437# initialized yet, just save the configuration selection and call back later
438# to validate it.
Adam Spierscb961592013-10-05 12:11:07 +0100439#
Matt Riedemannb14665f2019-10-17 19:34:05 +0000440# ``$1`` - the name of the database backend to use (mysql, postgresql, ...)
Dean Troyerc1b486a2012-11-05 14:26:09 -0600441function use_database {
442 if [[ -z "$DATABASE_BACKENDS" ]]; then
Dean Troyerafc29fe2013-02-07 15:56:24 -0600443 # No backends registered means this is likely called from ``localrc``
444 # This is now deprecated usage
Dean Troyerc1b486a2012-11-05 14:26:09 -0600445 DATABASE_TYPE=$1
Sean Dague72ad9422015-10-07 11:51:40 -0400446 deprecated "The database backend needs to be properly set in ENABLED_SERVICES; use_database is deprecated localrc"
Attila Fazekas251d3b52012-12-16 15:05:44 +0100447 else
Dean Troyerafc29fe2013-02-07 15:56:24 -0600448 # This should no longer get called...here for posterity
Attila Fazekas251d3b52012-12-16 15:05:44 +0100449 use_exclusive_service DATABASE_BACKENDS DATABASE_TYPE $1
Dean Troyerc1b486a2012-11-05 14:26:09 -0600450 fi
Dean Troyerc1b486a2012-11-05 14:26:09 -0600451}
452
sridhargaddamb5ab6462015-02-24 07:23:24 +0000453#Macro for curl statements. curl requires -g option for literal IPv6 addresses.
454CURL_GET="${CURL_GET:-curl -g}"
Dean Troyer1a6d4492013-06-03 16:47:36 -0500455
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600456# Wait for an HTTP server to start answering requests
457# wait_for_service timeout url
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400458#
459# If the service we want is behind a proxy, the proxy may be available
460# before the service. Compliant proxies will return a 503 in this case
461# Loop until we get something else.
462# Also check for the case where there is no proxy and the service just
463# hasn't started yet. curl returns 7 for Failed to connect to host.
Ian Wienandaee18c72014-02-21 15:35:08 +1100464function wait_for_service {
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600465 local timeout=$1
466 local url=$2
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400467 local rval=0
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900468 time_start "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400469 timeout $timeout bash -x <<EOF || rval=$?
470 while [[ \$( ${CURL_GET} -k --noproxy '*' -s -o /dev/null -w '%{http_code}' ${url} ) == 503 || \$? -eq 7 ]]; do
471 sleep 1
472 done
473EOF
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900474 time_stop "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400475 return $rval
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600476}
477
Sean Daguec2fe9162017-07-28 11:29:18 +0000478function wait_for_compute {
479 local timeout=$1
480 local rval=0
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530481 local compute_hostname
Sean Daguec2fe9162017-07-28 11:29:18 +0000482 time_start "wait_for_service"
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530483 compute_hostname=$(iniget $NOVA_CONF DEFAULT host)
484 if [[ -z $compute_hostname ]]; then
485 compute_hostname=$(hostname)
486 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000487 timeout $timeout bash -x <<EOF || rval=$?
488 ID=""
489 while [[ "\$ID" == "" ]]; do
490 sleep 1
Chris Dentac475bb2018-02-07 18:35:40 +0000491 if [[ "$VIRT_DRIVER" = 'fake' ]]; then
492 # When using the fake driver the compute hostnames have a suffix of 1 to NUMBER_FAKE_NOVA_COMPUTE
493 ID=\$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list --host `hostname`1 --service nova-compute -c ID -f value)
494 else
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530495 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 +0000496 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000497 done
498EOF
499 time_stop "wait_for_service"
500 # Figure out what's happening on platforms where this doesn't work
501 if [[ "$rval" != 0 ]]; then
502 echo "Didn't find service registered by hostname after $timeout seconds"
503 openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list
504 fi
505 return $rval
506}
507
Dean Troyer1a6d4492013-06-03 16:47:36 -0500508
Nachi Uenofda946e2012-10-24 17:26:02 -0700509# ping check
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100510# Uses globals ``ENABLED_SERVICES``, ``TOP_DIR``, ``PRIVATE_NETWORK``
Sean Dagueaf9bf862015-04-16 08:58:32 -0400511# ping_check <ip> [boot-timeout] [from_net] [expected]
Ian Wienandaee18c72014-02-21 15:35:08 +1100512function ping_check {
Sean Dagueaf9bf862015-04-16 08:58:32 -0400513 local ip=$1
514 local timeout=${2:-30}
515 local from_net=${3:-""}
516 local expected=${4:-True}
517 local op="!"
518 local failmsg="[Fail] Couldn't ping server"
519 local ping_cmd="ping"
Nachi Uenofda946e2012-10-24 17:26:02 -0700520
Sean Dagueaf9bf862015-04-16 08:58:32 -0400521 # if we don't specify a from_net we're expecting things to work
522 # fine from our local box.
523 if [[ -n "$from_net" ]]; then
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100524 # TODO(stephenfin): Is there any way neutron could be disabled now?
Sean Dagueaf9bf862015-04-16 08:58:32 -0400525 if is_service_enabled neutron; then
526 ping_cmd="$TOP_DIR/tools/ping_neutron.sh $from_net"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700527 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700528 fi
Sean Dagueaf9bf862015-04-16 08:58:32 -0400529
530 # inverse the logic if we're testing no connectivity
531 if [[ "$expected" != "True" ]]; then
532 op=""
533 failmsg="[Fail] Could ping server"
534 fi
535
536 # Because we've transformed this command so many times, print it
537 # out at the end.
538 local check_command="while $op $ping_cmd -c1 -w1 $ip; do sleep 1; done"
539 echo "Checking connectivity with $check_command"
540
541 if ! timeout $timeout sh -c "$check_command"; then
542 die $LINENO $failmsg
543 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700544}
545
Nachi Ueno6769b162013-08-12 18:18:56 -0700546# Get ip of instance
Ian Wienandaee18c72014-02-21 15:35:08 +1100547function get_instance_ip {
Nachi Ueno6769b162013-08-12 18:18:56 -0700548 local vm_id=$1
549 local network_name=$2
Ryota MIBU842d54a2017-12-25 16:28:50 +0900550 local addresses
Ian Wienandada886d2015-10-07 14:06:26 +1100551 local ip
Ian Wienand7ae97292016-02-16 14:50:53 +1100552
Ryota MIBU842d54a2017-12-25 16:28:50 +0900553 addresses=$(openstack server show -c addresses -f value "$vm_id")
554 ip=$(echo $addresses | sed -n "s/^.*$network_name=\([0-9\.]*\).*$/\1/p")
Nachi Ueno6769b162013-08-12 18:18:56 -0700555 if [[ $ip = "" ]];then
Ryota MIBU842d54a2017-12-25 16:28:50 +0900556 echo "addresses of server $vm_id : $addresses"
Atsushi SAKAI33c9a672015-11-12 19:50:00 +0900557 die $LINENO "[Fail] Couldn't get ipaddress of VM"
Nachi Ueno6769b162013-08-12 18:18:56 -0700558 fi
559 echo $ip
560}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500561
Nachi Uenofda946e2012-10-24 17:26:02 -0700562# ssh check
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700563
Dean Troyer1a6d4492013-06-03 16:47:36 -0500564# ssh_check net-name key-file floating-ip default-user active-timeout
Ian Wienandaee18c72014-02-21 15:35:08 +1100565function ssh_check {
Mark McClainb05c8762013-07-06 23:29:39 -0400566 if is_service_enabled neutron; then
567 _ssh_check_neutron "$1" $2 $3 $4 $5
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700568 return
569 fi
570 _ssh_check_novanet "$1" $2 $3 $4 $5
571}
572
Ian Wienandaee18c72014-02-21 15:35:08 +1100573function _ssh_check_novanet {
Nachi Uenofda946e2012-10-24 17:26:02 -0700574 local NET_NAME=$1
575 local KEY_FILE=$2
576 local FLOATING_IP=$3
577 local DEFAULT_INSTANCE_USER=$4
578 local ACTIVE_TIMEOUT=$5
Dean Troyer6931c132012-11-07 16:51:21 -0600579 local probe_cmd=""
Dean Troyercc6b4432013-04-08 15:38:03 -0500580 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 -0800581 die $LINENO "server didn't become ssh-able!"
Nachi Uenofda946e2012-10-24 17:26:02 -0700582 fi
583}
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500584
Vincent Untz856a11e2012-11-21 16:04:12 +0100585
Vincent Untz856a11e2012-11-21 16:04:12 +0100586# Get the location of the $module-rootwrap executables, where module is cinder
587# or nova.
588# get_rootwrap_location module
Ian Wienandaee18c72014-02-21 15:35:08 +1100589function get_rootwrap_location {
Vincent Untz856a11e2012-11-21 16:04:12 +0100590 local module=$1
591
Jakub Ruzicka4196d552013-01-30 15:35:54 +0100592 echo "$(get_python_exec_prefix)/$module-rootwrap"
Vincent Untz856a11e2012-11-21 16:04:12 +0100593}
594
Dean Troyer1a6d4492013-06-03 16:47:36 -0500595
Ian Wienand0488edd2013-04-11 12:04:36 +1000596# Path permissions sanity check
597# check_path_perm_sanity path
Ian Wienandaee18c72014-02-21 15:35:08 +1100598function check_path_perm_sanity {
Ian Wienand0488edd2013-04-11 12:04:36 +1000599 # Ensure no element of the path has 0700 permissions, which is very
600 # likely to cause issues for daemons. Inspired by default 0700
601 # homedir permissions on RHEL and common practice of making DEST in
602 # the stack user's homedir.
603
Ian Wienandada886d2015-10-07 14:06:26 +1100604 local real_path
605 real_path=$(readlink -f $1)
Ian Wienand0488edd2013-04-11 12:04:36 +1000606 local rebuilt_path=""
607 for i in $(echo ${real_path} | tr "/" " "); do
608 rebuilt_path=$rebuilt_path"/"$i
609
610 if [[ $(stat -c '%a' ${rebuilt_path}) = 700 ]]; then
611 echo "*** DEST path element"
612 echo "*** ${rebuilt_path}"
613 echo "*** appears to have 0700 permissions."
Dean Troyerdc97cb72015-03-28 08:20:50 -0500614 echo "*** This is very likely to cause fatal issues for DevStack daemons."
Ian Wienand0488edd2013-04-11 12:04:36 +1000615
616 if [[ -n "$SKIP_PATH_SANITY" ]]; then
617 return
618 else
619 echo "*** Set SKIP_PATH_SANITY to skip this check"
620 die $LINENO "Invalid path permissions"
621 fi
622 fi
623 done
624}
625
Dean Troyer1a6d4492013-06-03 16:47:36 -0500626
Ian Wienand2ba36cd2015-11-12 13:52:36 +1100627# vercmp ver1 op ver2
628# Compare VER1 to VER2
629# - op is one of < <= == >= >
630# - returns true if satisified
631# e.g.
632# if vercmp 1.0 "<" 2.0; then
633# ...
634# fi
635function vercmp {
636 local v1=$1
637 local op=$2
638 local v2=$3
639 local result
640
641 # sort the two numbers with sort's "-V" argument. Based on if v2
642 # swapped places with v1, we can determine ordering.
643 result=$(echo -e "$v1\n$v2" | sort -V | head -1)
644
645 case $op in
646 "==")
647 [ "$v1" = "$v2" ]
648 return
649 ;;
650 ">")
651 [ "$v1" != "$v2" ] && [ "$result" = "$v2" ]
652 return
653 ;;
654 "<")
655 [ "$v1" != "$v2" ] && [ "$result" = "$v1" ]
656 return
657 ;;
658 ">=")
659 [ "$result" = "$v2" ]
660 return
661 ;;
662 "<=")
663 [ "$result" = "$v1" ]
664 return
665 ;;
666 *)
667 die $LINENO "unrecognised op: $op"
668 ;;
669 esac
670}
Kyle Mestery51a3f1f2013-06-13 11:47:56 +0000671
Sean Dague9751be62016-04-05 12:08:57 -0400672# This sets up defaults we like in devstack for logging for tracking
673# down issues, and makes sure everything is done the same between
674# projects.
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000675# NOTE(jh): Historically this function switched between three different
676# functions: setup_systemd_logging, setup_colorized_logging and
677# setup_standard_logging_identity. Since we always run with systemd now,
678# this could be cleaned up, but the other functions may still be in use
679# by plugins. Since deprecations haven't worked in the past, we'll just
680# leave them in place.
Sean Dague9751be62016-04-05 12:08:57 -0400681function setup_logging {
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000682 setup_systemd_logging $1
Sean Dague9751be62016-04-05 12:08:57 -0400683}
684
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700685# This function sets log formatting options for colorizing log
686# output to stdout. It is meant to be called by lib modules.
Ian Wienandaee18c72014-02-21 15:35:08 +1100687function setup_colorized_logging {
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700688 local conf_file=$1
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700689 # Add color to logging output
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000690 iniset $conf_file DEFAULT logging_context_format_string "%(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [%(request_id)s %(project_name)s %(user_name)s%(color)s] %(instance)s%(color)s%(message)s"
691 iniset $conf_file DEFAULT logging_default_format_string "%(asctime)s.%(msecs)03d %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
692 iniset $conf_file DEFAULT logging_debug_format_suffix "from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d"
693 iniset $conf_file DEFAULT logging_exception_prefix "%(color)s%(asctime)s.%(msecs)03d TRACE %(name)s %(instance)s"
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700694}
695
Sean Dague5edae542017-03-21 20:50:24 -0400696function setup_systemd_logging {
697 local conf_file=$1
Sean Dagueb2bfe562017-05-03 09:58:21 -0400698 # NOTE(sdague): this is a nice to have, and means we're using the
699 # native systemd path, which provides for things like search on
700 # request-id. However, there may be an eventlet interaction here,
701 # so going off for now.
Kirill Zaitsevc0644f32017-05-24 13:00:47 +0300702 USE_JOURNAL=$(trueorfalse False USE_JOURNAL)
Eric Fried8cd310d2017-05-16 13:52:03 -0500703 local pidstr=""
Sean Dagueb2bfe562017-05-03 09:58:21 -0400704 if [[ "$USE_JOURNAL" == "True" ]]; then
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000705 iniset $conf_file DEFAULT use_journal "True"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400706 # if we are using the journal directly, our process id is already correct
Sean Dagueb2bfe562017-05-03 09:58:21 -0400707 else
Eric Fried8cd310d2017-05-16 13:52:03 -0500708 pidstr="(pid=%(process)d) "
Sean Dagueb2bfe562017-05-03 09:58:21 -0400709 fi
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000710 iniset $conf_file DEFAULT logging_debug_format_suffix "{{${pidstr}%(funcName)s %(pathname)s:%(lineno)d}}"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400711
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000712 iniset $conf_file DEFAULT 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"
713 iniset $conf_file DEFAULT logging_default_format_string "%(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
714 iniset $conf_file DEFAULT logging_exception_prefix "ERROR %(name)s %(instance)s"
Sean Dague5edae542017-03-21 20:50:24 -0400715}
716
Sean Dague9751be62016-04-05 12:08:57 -0400717function setup_standard_logging_identity {
718 local conf_file=$1
719 iniset $conf_file DEFAULT logging_user_identity_format "%(project_name)s %(user_name)s"
720}
721
Ian Wienand54e39102014-06-03 16:05:12 +1000722# These functions are provided for basic fall-back functionality for
Dean Troyerdc97cb72015-03-28 08:20:50 -0500723# projects that include parts of DevStack (Grenade). stack.sh will
724# override these with more specific versions for DevStack (with fancy
Ian Wienand54e39102014-06-03 16:05:12 +1000725# spinners, etc). We never override an existing version
726if ! function_exists echo_summary; then
727 function echo_summary {
728 echo $@
729 }
730fi
731if ! function_exists echo_nolog; then
732 function echo_nolog {
733 echo $@
734 }
735fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600736
Sébastien Han36f2f022014-01-06 18:09:26 +0100737
738# create_disk - Create backing disk
739function create_disk {
740 local node_number
741 local disk_image=${1}
742 local storage_data_dir=${2}
743 local loopback_disk_size=${3}
744
745 # Create a loopback disk and format it to XFS.
746 if [[ -e ${disk_image} ]]; then
747 if egrep -q ${storage_data_dir} /proc/mounts; then
liumk38a23d92017-12-13 15:09:02 +0800748 sudo umount ${storage_data_dir}
Sébastien Han36f2f022014-01-06 18:09:26 +0100749 sudo rm -f ${disk_image}
750 fi
751 fi
752
753 sudo mkdir -p ${storage_data_dir}/drives/images
754
755 sudo truncate -s ${loopback_disk_size} ${disk_image}
756
757 # Make a fresh XFS filesystem. Use bigger inodes so xattr can fit in
758 # a single inode. Keeping the default inode size (256) will result in multiple
759 # inodes being used to store xattr. Retrieving the xattr will be slower
760 # since we have to read multiple inodes. This statement is true for both
761 # Swift and Ceph.
762 sudo mkfs.xfs -f -i size=1024 ${disk_image}
763
764 # Mount the disk with mount options to make it as efficient as possible
765 if ! egrep -q ${storage_data_dir} /proc/mounts; then
Lee Yarwood5d7d8912018-12-03 14:21:06 +0000766 sudo mount -t xfs -o loop,noatime,nodiratime,logbufs=8 \
Sébastien Han36f2f022014-01-06 18:09:26 +0100767 ${disk_image} ${storage_data_dir}
768 fi
769}
770
Ihar Hrachyshka7b5c7dc2016-07-15 20:17:13 +0200771
772# set_mtu - Set MTU on a device
773function set_mtu {
774 local dev=$1
775 local mtu=$2
776 sudo ip link set mtu $mtu dev $dev
777}
778
779
Denis Buliga0bf75a42017-02-06 16:56:46 +0200780# running_in_container - Returns true otherwise false
781function running_in_container {
kesperd18d7c82017-03-23 05:52:33 +0000782 [[ $(systemd-detect-virt --container) != 'none' ]]
Denis Buliga0bf75a42017-02-06 16:56:46 +0200783}
784
785
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000786# enable_kernel_bridge_firewall - Enable kernel support for bridge firewalling
787function enable_kernel_bridge_firewall {
788 # Load bridge module. This module provides access to firewall for bridged
789 # frames; and also on older kernels (pre-3.18) it provides sysctl knobs to
790 # enable/disable bridge firewalling
791 sudo modprobe bridge
792 # For newer kernels (3.18+), those sysctl settings are split into a separate
793 # kernel module (br_netfilter). Load it too, if present.
794 sudo modprobe br_netfilter 2>> /dev/null || :
795 # Enable bridge firewalling in case it's disabled in kernel (upstream
796 # default is enabled, but some distributions may decide to change it).
797 # This is at least needed for RHEL 7.2 and earlier releases.
Ihar Hrachyshka3f771b72016-12-17 04:12:24 +0000798 for proto in ip ip6; do
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000799 sudo sysctl -w net.bridge.bridge-nf-call-${proto}tables=1
800 done
801}
802
803
Dan Smith1f55d382017-05-16 08:50:53 -0700804# Set a systemd system override
805#
806# This sets a system-side override in system.conf. A per-service
807# override would be /etc/systemd/system/${service}.service/override.conf
808function set_systemd_override {
809 local key="$1"
810 local value="$2"
811
812 local sysconf="/etc/systemd/system.conf"
813 iniset -sudo "${sysconf}" "Manager" "$key" "$value"
814 echo "Set systemd system override for ${key}=${value}"
815
816 sudo systemctl daemon-reload
817}
818
Matthew Treinish309b99e2017-05-23 15:18:31 -0400819# Get a random port from the local port range
820#
821# This function returns an available port in the local port range. The search
822# order is not truly random, but should be considered a random value by the
823# user because it depends on the state of your local system.
824function get_random_port {
825 read lower_port upper_port < /proc/sys/net/ipv4/ip_local_port_range
826 while true; do
827 for (( port = upper_port ; port >= lower_port ; port-- )); do
828 sudo lsof -i ":$port" &> /dev/null
829 if [[ $? > 0 ]] ; then
830 break 2
831 fi
832 done
833 done
834 echo $port
835}
836
Ian Wienand07cbc442017-06-30 12:29:19 +1000837# Save some state information
838#
839# Write out various useful state information to /etc/devstack-version
Sean Dague2c0faca2017-06-28 09:13:04 -0400840function write_devstack_version {
Dirk Mueller6bab8322018-03-02 21:13:12 +0100841 cat - <<EOF | sudo tee /etc/devstack-version >/dev/null
Ian Wienand07cbc442017-06-30 12:29:19 +1000842DevStack Version: ${DEVSTACK_SERIES}
843Change: $(git log --format="%H %s %ci" -1)
844OS Version: ${os_VENDOR} ${os_RELEASE} ${os_CODENAME}
Sean Dague2c0faca2017-06-28 09:13:04 -0400845EOF
Sean Dague2c0faca2017-06-28 09:13:04 -0400846}
847
Dean Troyer27e32692012-03-16 16:16:56 -0500848# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100849$_XTRACE_FUNCTIONS
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500850
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500851# Local variables:
Sean Dague584d90e2013-03-29 14:34:53 -0400852# mode: shell-script
Andrew Laskif900bd72012-09-05 17:23:14 -0400853# End: