blob: 89bbab2085bc5d6f3d3c335f7e22da6052dce267 [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
Dan Smith30d9bf92021-01-19 12:10:52 -080024source ${FUNC_DIR}/inc/async
Dean Troyer7f9aa712012-01-31 12:11:56 -060025
Dean Troyer27e32692012-03-16 16:16:56 -050026# Save trace setting
Ian Wienand523f4882015-10-13 11:03:03 +110027_XTRACE_FUNCTIONS=$(set +o | grep xtrace)
Dean Troyer27e32692012-03-16 16:16:56 -050028set +o xtrace
29
Ian Wienand54e39102014-06-03 16:05:12 +100030# Check if a function already exists
31function function_exists {
32 declare -f -F $1 > /dev/null
33}
Dean Troyer7f9aa712012-01-31 12:11:56 -060034
Sean Dague646085d2016-03-21 17:00:51 -040035# short_source prints out the current location of the caller in a way
36# that strips redundant directories. This is useful for PS4 usage.
37function short_source {
38 saveIFS=$IFS
39 IFS=" "
40 called=($(caller 0))
41 IFS=$saveIFS
42 file=${called[2]}
43 file=${file#$RC_DIR/}
44 printf "%-40s " "$file:${called[1]}:${called[0]}"
45}
John L. Villalovosdaa7a412016-05-05 12:50:52 -070046# PS4 is exported to child shells and uses the 'short_source' function, so
47# export it so child shells have access to the 'short_source' function also.
48export -f short_source
Sean Dague646085d2016-03-21 17:00:51 -040049
Monty Taylord8bb2202017-09-03 12:13:59 -050050# Download a file from a URL
51#
52# Will check cache (in $FILES) or download given URL.
53#
54# Argument is the URL to the remote file
55#
56# Will echo the local path to the file as the output. Will die on
57# failure to download.
58#
59# Files can be pre-cached for CI environments, see EXTRA_CACHE_URLS
60# and tools/image_list.sh
61function get_extra_file {
62 local file_url=$1
63
64 file_name=$(basename "$file_url")
65 if [[ $file_url != file* ]]; then
66 # If the file isn't cache, download it
67 if [[ ! -f $FILES/$file_name ]]; then
yuanke weic652a492017-09-17 22:18:07 +080068 wget --progress=dot:giga -t 2 -c $file_url -O $FILES/$file_name
Monty Taylord8bb2202017-09-03 12:13:59 -050069 if [[ $? -ne 0 ]]; then
70 die "$file_url could not be downloaded"
71 fi
72 fi
73 echo "$FILES/$file_name"
74 return
75 else
76 # just strip the file:// bit and that's the path to the file
77 echo $file_url | sed 's/$file:\/\///g'
78 fi
79}
80
Dan Smith2614c1b2020-07-15 14:41:38 -070081# Generate image property arguments for OSC
82#
83# Arguments: properties, one per, like propname=value
84#
85# Result is --property propname1=value1 --property propname2=value2
86function _image_properties_to_arg {
87 local result=""
88 for property in $*; do
89 result+=" --property $property"
90 done
91 echo $result
92}
93
Abhishek Kekane73ad9762020-06-16 15:20:48 +000094# Upload an image to glance using the configured mechanism
95#
96# Arguments:
97# image name
98# container format
99# disk format
100# path to image file
101# optional properties (format of propname=value)
102#
103function _upload_image {
104 local image_name="$1"
105 shift
106 local container="$1"
107 shift
108 local disk="$1"
109 shift
110 local image="$1"
111 shift
112 local properties
113 local useimport
114
Dan Smith2614c1b2020-07-15 14:41:38 -0700115 properties=$(_image_properties_to_arg $*)
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000116
117 if [[ "$GLANCE_USE_IMPORT_WORKFLOW" == "True" ]]; then
Dan Smith33f8f6e2020-07-21 19:41:48 -0700118 useimport="--import"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000119 fi
120
121 openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name" --public --container-format "$container" --disk-format "$disk" $useimport $properties < "${image}"
122}
Sean Dague646085d2016-03-21 17:00:51 -0400123
Adam Spierscb961592013-10-05 12:11:07 +0100124# Retrieve an image from a URL and upload into Glance.
Dean Troyerca0e3d02012-04-13 15:58:37 -0500125# Uses the following variables:
Adam Spierscb961592013-10-05 12:11:07 +0100126#
127# - ``FILES`` must be set to the cache dir
128# - ``GLANCE_HOSTPORT``
129#
Peter Stachowski5aeea6a2015-09-22 19:38:02 +0000130# upload_image image-url
Ian Wienandaee18c72014-02-21 15:35:08 +1100131function upload_image {
Dean Troyerca0e3d02012-04-13 15:58:37 -0500132 local image_url=$1
Dean Troyerca0e3d02012-04-13 15:58:37 -0500133
Dean Troyere9f76672014-07-25 11:09:36 -0500134 local image image_fname image_name
135
Dean Troyerca0e3d02012-04-13 15:58:37 -0500136 # Create a directory for the downloaded image tarballs.
137 mkdir -p $FILES/images
Dean Troyere9f76672014-07-25 11:09:36 -0500138 image_fname=`basename "$image_url"`
Arnaud Legendre3e439442013-11-15 16:06:03 -0800139 if [[ $image_url != file* ]]; then
Sreeram Yerrapragada314af0a2014-03-03 21:34:45 -0800140 # Downloads the image (uec ami+akistyle), then extracts it.
Dean Troyere9f76672014-07-25 11:09:36 -0500141 if [[ ! -f $FILES/$image_fname || "$(stat -c "%s" $FILES/$image_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +0100142 wget --progress=dot:giga -c $image_url -O $FILES/$image_fname
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900143 if [[ $? -ne 0 ]]; then
144 echo "Not found: $image_url"
145 return
146 fi
Arnaud Legendre3e439442013-11-15 16:06:03 -0800147 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500148 image="$FILES/${image_fname}"
Arnaud Legendre3e439442013-11-15 16:06:03 -0800149 else
Dean Troyer3324f192014-09-18 09:26:39 -0500150 # File based URL (RFC 1738): ``file://host/path``
Arnaud Legendre3e439442013-11-15 16:06:03 -0800151 # Remote files are not considered here.
Dean Troyer3324f192014-09-18 09:26:39 -0500152 # unix: ``file:///home/user/path/file``
153 # windows: ``file:///C:/Documents%20and%20Settings/user/path/file``
Dean Troyere9f76672014-07-25 11:09:36 -0500154 image=$(echo $image_url | sed "s/^file:\/\///g")
155 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Dean Troyerca0e3d02012-04-13 15:58:37 -0500156 echo "Not found: $image_url"
157 return
158 fi
159 fi
160
161 # OpenVZ-format images are provided as .tar.gz, but not decompressed prior to loading
162 if [[ "$image_url" =~ 'openvz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500163 image_name="${image_fname%.tar.gz}"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000164 _upload_image "$image_name" ami ami "$image"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500165 return
166 fi
167
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700168 # vmdk format images
169 if [[ "$image_url" =~ '.vmdk' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500170 image_name="${image_fname%.vmdk}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700171
172 # Before we can upload vmdk type images to glance, we need to know it's
173 # disk type, storage adapter, and networking adapter. These values are
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800174 # passed to glance as custom properties.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700175 # We take these values from the vmdk file if populated. Otherwise, we use
Ryan Hsua6273b92013-09-04 23:51:29 -0700176 # vmdk filename, which is expected in the following format:
177 #
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800178 # <name>-<disk type>;<storage adapter>;<network adapter>
Ryan Hsua6273b92013-09-04 23:51:29 -0700179 #
180 # If the filename does not follow the above format then the vsphere
181 # driver will supply default values.
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700182
Dean Troyere9f76672014-07-25 11:09:36 -0500183 local vmdk_disktype=""
Sabari Kumar Murugesan88cde0b2014-12-04 17:48:26 -0800184 local vmdk_net_adapter="e1000"
Dean Troyere9f76672014-07-25 11:09:36 -0500185 local path_len
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800186
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700187 # vmdk adapter type
Ian Wienand7ae97292016-02-16 14:50:53 +1100188 local vmdk_adapter_type
189 vmdk_adapter_type="$(head -25 $image | { grep -a -F -m 1 'ddb.adapterType =' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700190 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
191 vmdk_adapter_type="${vmdk_adapter_type%?}"
192
193 # vmdk disk type
Ian Wienand7ae97292016-02-16 14:50:53 +1100194 local vmdk_create_type
195 vmdk_create_type="$(head -25 $image | { grep -a -F -m 1 'createType=' $image || true; })"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700196 vmdk_create_type="${vmdk_create_type#*\"}"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800197 vmdk_create_type="${vmdk_create_type%\"*}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800198
199 descriptor_data_pair_msg="Monolithic flat and VMFS disks "`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900200 `"should use a descriptor-data pair."
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700201 if [[ "$vmdk_create_type" = "monolithicSparse" ]]; then
202 vmdk_disktype="sparse"
Dean Troyere9f76672014-07-25 11:09:36 -0500203 elif [[ "$vmdk_create_type" = "monolithicFlat" || "$vmdk_create_type" = "vmfs" ]]; then
Dean Troyer3324f192014-09-18 09:26:39 -0500204 # Attempt to retrieve the ``*-flat.vmdk``
Ian Wienand7ae97292016-02-16 14:50:53 +1100205 local flat_fname
206 flat_fname="$(head -25 $image | { grep -G 'RW\|RDONLY [0-9]+ FLAT\|VMFS' $image || true; })"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800207 flat_fname="${flat_fname#*\"}"
208 flat_fname="${flat_fname%?}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700209 if [[ -z "$flat_fname" ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500210 flat_fname="$image_name-flat.vmdk"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800211 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500212 path_len=`expr ${#image_url} - ${#image_fname}`
213 local flat_url="${image_url:0:$path_len}$flat_fname"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800214 warn $LINENO "$descriptor_data_pair_msg"`
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900215 `" Attempt to retrieve the *-flat.vmdk: $flat_url"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800216 if [[ $flat_url != file* ]]; then
217 if [[ ! -f $FILES/$flat_fname || \
218 "$(stat -c "%s" $FILES/$flat_fname)" = "0" ]]; then
Attila Fazekas057d6ae2015-01-13 14:01:26 +0100219 wget --progress=dot:giga -c $flat_url -O $FILES/$flat_fname
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800220 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500221 image="$FILES/${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800222 else
Dean Troyere9f76672014-07-25 11:09:36 -0500223 image=$(echo $flat_url | sed "s/^file:\/\///g")
224 if [[ ! -f $image || "$(stat -c "%s" $image)" == "0" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800225 echo "Flat disk not found: $flat_url"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700226 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800227 fi
228 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500229 image_name="${flat_fname}"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800230 vmdk_disktype="preallocated"
Arnaud Legendre8dad4bd2014-02-03 17:57:39 -0800231 elif [[ "$vmdk_create_type" = "streamOptimized" ]]; then
232 vmdk_disktype="streamOptimized"
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800233 elif [[ -z "$vmdk_create_type" ]]; then
234 # *-flat.vmdk provided: attempt to retrieve the descriptor (*.vmdk)
235 # to retrieve appropriate metadata
Dean Troyere9f76672014-07-25 11:09:36 -0500236 if [[ ${image_name: -5} != "-flat" ]]; then
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800237 warn $LINENO "Expected filename suffix: '-flat'."`
Dean Troyere9f76672014-07-25 11:09:36 -0500238 `" Filename provided: ${image_name}"
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700239 else
Dean Troyere9f76672014-07-25 11:09:36 -0500240 descriptor_fname="${image_name:0:${#image_name} - 5}.vmdk"
241 path_len=`expr ${#image_url} - ${#image_fname}`
242 local flat_path="${image_url:0:$path_len}"
243 local descriptor_url=$flat_path$descriptor_fname
Sreeram Yerrapragada9c6d2842014-03-10 14:12:58 -0700244 warn $LINENO "$descriptor_data_pair_msg"`
245 `" Attempt to retrieve the descriptor *.vmdk: $descriptor_url"
246 if [[ $flat_path != file* ]]; then
247 if [[ ! -f $FILES/$descriptor_fname || \
248 "$(stat -c "%s" $FILES/$descriptor_fname)" = "0" ]]; then
249 wget -c $descriptor_url -O $FILES/$descriptor_fname
250 fi
251 descriptor_url="$FILES/$descriptor_fname"
252 else
253 descriptor_url=$(echo $descriptor_url | sed "s/^file:\/\///g")
254 if [[ ! -f $descriptor_url || \
255 "$(stat -c "%s" $descriptor_url)" == "0" ]]; then
256 echo "Descriptor not found: $descriptor_url"
257 return 1
Arnaud Legendre90bcd2f2013-11-22 16:05:39 -0800258 fi
259 fi
Ryan Hsu99b622a2014-03-05 15:35:49 -0800260 vmdk_adapter_type="$(head -25 $descriptor_url | { grep -a -F -m 1 'ddb.adapterType =' $descriptor_url || true; })"
261 vmdk_adapter_type="${vmdk_adapter_type#*\"}"
262 vmdk_adapter_type="${vmdk_adapter_type%?}"
263 fi
Isaku Yamahata6681a4f2014-01-10 15:28:29 +0900264 vmdk_disktype="preallocated"
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700265 else
Arnaud Legendre5ea53ee2013-11-01 16:42:54 -0700266 vmdk_disktype="preallocated"
267 fi
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800268
269 # NOTE: For backwards compatibility reasons, colons may be used in place
270 # of semi-colons for property delimiters but they are not permitted
271 # characters in NTFS filesystems.
Dean Troyere9f76672014-07-25 11:09:36 -0500272 property_string=`echo "$image_name" | { grep -oP '(?<=-)(?!.*-).*[:;].*[:;].*$' || true; }`
Ryan Hsubfb3e5e2013-11-11 21:20:14 -0800273 IFS=':;' read -a props <<< "$property_string"
274 vmdk_disktype="${props[0]:-$vmdk_disktype}"
275 vmdk_adapter_type="${props[1]:-$vmdk_adapter_type}"
276 vmdk_net_adapter="${props[2]:-$vmdk_net_adapter}"
Ryan Hsua6273b92013-09-04 23:51:29 -0700277
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000278 _upload_image "$image_name" bare vmdk "$image" vmware_disktype="$vmdk_disktype" vmware_adaptertype="$vmdk_adapter_type" hw_vif_model="$vmdk_net_adapter"
279
Sreeram Yerrapragadacbaff862013-07-24 19:49:23 -0700280 return
281 fi
282
Mate Lakatbc2ef922013-08-15 18:06:59 +0100283 # XenServer-vhd-ovf-format images are provided as .vhd.tgz
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500284 # and should not be decompressed prior to loading
285 if [[ "$image_url" =~ '.vhd.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500286 image_name="${image_fname%.vhd.tgz}"
287 local force_vm_mode=""
288 if [[ "$image_name" =~ 'cirros' ]]; then
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000289 # Cirros VHD image currently only boots in PV mode.
290 # Nova defaults to PV for all VHD images, but
291 # the glance setting is needed for booting
292 # directly from volume.
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000293 force_vm_mode="vm_mode=xen"
Bob Ballf1a2dbf2014-03-19 11:08:54 +0000294 fi
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000295 _upload_image "$image_name" ovf vhd "$image" $force_vm_mode
Davanum Srinivas316ed6c2013-02-06 15:29:49 -0500296 return
297 fi
298
Mate Lakatbc2ef922013-08-15 18:06:59 +0100299 # .xen-raw.tgz suggests a Xen capable raw image inside a tgz.
300 # and should not be decompressed prior to loading.
301 # Setting metadata, so PV mode is used.
302 if [[ "$image_url" =~ '.xen-raw.tgz' ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500303 image_name="${image_fname%.xen-raw.tgz}"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000304 _upload_image "$image_name" tgz raw "$image" vm_mode=xen
Mate Lakatbc2ef922013-08-15 18:06:59 +0100305 return
306 fi
307
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300308 if [[ "$image_url" =~ '.hds' ]]; then
309 image_name="${image_fname%.hds}"
310 vm_mode=${image_name##*-}
311 if [[ $vm_mode != 'exe' && $vm_mode != 'hvm' ]]; then
312 die $LINENO "Unknown vm_mode=${vm_mode} for Virtuozzo image"
313 fi
314
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000315 _upload_image "$image_name" bare ploop "$image" vm_mode=$vm_mode
Maxim Nestratov54ee8a82015-07-15 11:47:11 +0300316 return
317 fi
318
Dean Troyere9f76672014-07-25 11:09:36 -0500319 local kernel=""
320 local ramdisk=""
321 local disk_format=""
322 local container_format=""
323 local unpack=""
Dan Smith49ad4852020-07-15 14:54:22 -0700324 local img_property=""
325
326 # NOTE(danms): If we're on libvirt/qemu or libvirt/kvm, set the hw_rng_model
327 # to libvirt in the image properties.
328 if [[ "$VIRT_DRIVER" == "libvirt" ]]; then
329 if [[ "$LIBVIRT_TYPE" == "qemu" || "$LIBVIRT_TYPE" == "kvm" ]]; then
330 img_property="hw_rng_model=virtio"
331 fi
332 fi
333
Dean Troyere9f76672014-07-25 11:09:36 -0500334 case "$image_fname" in
Dean Troyerca0e3d02012-04-13 15:58:37 -0500335 *.tar.gz|*.tgz)
336 # Extract ami and aki files
Dean Troyere9f76672014-07-25 11:09:36 -0500337 [ "${image_fname%.tar.gz}" != "$image_fname" ] &&
338 image_name="${image_fname%.tar.gz}" ||
339 image_name="${image_fname%.tgz}"
340 local xdir="$FILES/images/$image_name"
Dean Troyerca0e3d02012-04-13 15:58:37 -0500341 rm -Rf "$xdir";
342 mkdir "$xdir"
Dean Troyere9f76672014-07-25 11:09:36 -0500343 tar -zxf $image -C "$xdir"
344 kernel=$(for f in "$xdir/"*-vmlinuz* "$xdir/"aki-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400345 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500346 ramdisk=$(for f in "$xdir/"*-initrd* "$xdir/"ari-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400347 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500348 image=$(for f in "$xdir/"*.img "$xdir/"ami-*/image; do
Sean Dague537d4022013-10-22 07:43:22 -0400349 [ -f "$f" ] && echo "$f" && break; done; true)
Dean Troyere9f76672014-07-25 11:09:36 -0500350 if [[ -z "$image_name" ]]; then
351 image_name=$(basename "$image" ".img")
Dean Troyerca0e3d02012-04-13 15:58:37 -0500352 fi
353 ;;
354 *.img)
Dean Troyere9f76672014-07-25 11:09:36 -0500355 image_name=$(basename "$image" ".img")
Ian Wienandada886d2015-10-07 14:06:26 +1100356 local format
357 format=$(qemu-img info ${image} | awk '/^file format/ { print $3; exit }')
Dean Troyer636a3ff2012-09-14 11:36:07 -0500358 if [[ ",qcow2,raw,vdi,vmdk,vpc," =~ ",$format," ]]; then
Dean Troyere9f76672014-07-25 11:09:36 -0500359 disk_format=$format
Dean Troyer636a3ff2012-09-14 11:36:07 -0500360 else
Dean Troyere9f76672014-07-25 11:09:36 -0500361 disk_format=raw
Dean Troyer636a3ff2012-09-14 11:36:07 -0500362 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500363 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500364 ;;
365 *.img.gz)
Dean Troyere9f76672014-07-25 11:09:36 -0500366 image_name=$(basename "$image" ".img.gz")
367 disk_format=raw
368 container_format=bare
369 unpack=zcat
Dean Troyerca0e3d02012-04-13 15:58:37 -0500370 ;;
Hongbin Lu3feceb02016-04-17 11:11:58 -0400371 *.img.bz2)
372 image_name=$(basename "$image" ".img.bz2")
373 disk_format=qcow2
374 container_format=bare
375 unpack=bunzip2
376 ;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500377 *.qcow2)
Dean Troyere9f76672014-07-25 11:09:36 -0500378 image_name=$(basename "$image" ".qcow2")
379 disk_format=qcow2
380 container_format=bare
Dean Troyerca0e3d02012-04-13 15:58:37 -0500381 ;;
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000382 *.qcow2.xz)
383 image_name=$(basename "$image" ".qcow2.xz")
384 disk_format=qcow2
385 container_format=bare
386 unpack=unxz
387 ;;
Angel Noamf24e2992017-05-11 15:13:29 +0300388 *.raw)
389 image_name=$(basename "$image" ".raw")
390 disk_format=raw
391 container_format=bare
392 ;;
Jonathan Michalon06802042013-03-21 14:29:58 +0100393 *.iso)
Dean Troyere9f76672014-07-25 11:09:36 -0500394 image_name=$(basename "$image" ".iso")
395 disk_format=iso
396 container_format=bare
Jonathan Michalon06802042013-03-21 14:29:58 +0100397 ;;
Alessandro Pilottica823942014-08-07 02:05:26 +0300398 *.vhd|*.vhdx|*.vhd.gz|*.vhdx.gz)
399 local extension="${image_fname#*.}"
400 image_name=$(basename "$image" ".$extension")
Lucian Petrut2715fd02017-05-24 11:31:56 +0300401 disk_format=$(echo $image_fname | grep -oP '(?<=\.)vhdx?(?=\.|$)')
Alessandro Pilottica823942014-08-07 02:05:26 +0300402 container_format=bare
403 if [ "${image_fname##*.}" == "gz" ]; then
404 unpack=zcat
405 fi
406 ;;
Dean Troyere9f76672014-07-25 11:09:36 -0500407 *) echo "Do not know what to do with $image_fname"; false;;
Dean Troyerca0e3d02012-04-13 15:58:37 -0500408 esac
409
Rafael Folco72f530f2016-02-09 07:08:38 -0600410 if is_arch "ppc64le" || is_arch "ppc64" || is_arch "ppc"; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000411 img_property="$img_property hw_cdrom_bus=scsi os_command_line=console=hvc0"
Rafael Folcoab775872013-12-02 14:04:32 -0200412 fi
413
Clark Laughlinfcc3f6e2015-04-07 16:31:47 +0000414 if is_arch "aarch64"; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000415 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 +0000416 fi
417
Dean Troyere9f76672014-07-25 11:09:36 -0500418 if [ "$container_format" = "bare" ]; then
419 if [ "$unpack" = "zcat" ]; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000420 _upload_image "$image_name" $container_format $disk_format <(zcat --force "$image") $img_property
Hongbin Lu3feceb02016-04-17 11:11:58 -0400421 elif [ "$unpack" = "bunzip2" ]; then
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000422 _upload_image "$image_name" $container_format $disk_format <(bunzip2 -cdk "$image") $img_property
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000423 elif [ "$unpack" = "unxz" ]; then
424 # NOTE(brtknr): unxz the file first and cleanup afterwards to
425 # prevent timeout while Glance tries to upload image (e.g. to Swift).
426 local tmp_dir
427 local image_path
428 tmp_dir=$(mktemp -d)
429 image_path="$tmp_dir/$image_name"
430 unxz -cv "${image}" > "$image_path"
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000431 _upload_image "$image_name" $container_format $disk_format "$image_path" $img_property
Bharat Kunwarf70cb702020-04-20 09:53:25 +0000432 rm -rf $tmp_dir
Dean Troyerca0e3d02012-04-13 15:58:37 -0500433 else
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000434 _upload_image "$image_name" $container_format $disk_format "$image" $img_property
Dean Troyerca0e3d02012-04-13 15:58:37 -0500435 fi
436 else
437 # Use glance client to add the kernel the root filesystem.
438 # We parse the results of the first upload to get the glance ID of the
439 # kernel for use when uploading the root filesystem.
Dean Troyere9f76672014-07-25 11:09:36 -0500440 local kernel_id="" ramdisk_id="";
441 if [ -n "$kernel" ]; then
Dan Smith2614c1b2020-07-15 14:41:38 -0700442 kernel_id=$(openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name-kernel" $(_image_properties_to_arg $img_property) --public --container-format aki --disk-format aki < "$kernel" | grep ' id ' | get_field 2)
Dean Troyerca0e3d02012-04-13 15:58:37 -0500443 fi
Dean Troyere9f76672014-07-25 11:09:36 -0500444 if [ -n "$ramdisk" ]; then
Dan Smith2614c1b2020-07-15 14:41:38 -0700445 ramdisk_id=$(openstack --os-cloud=devstack-admin --os-region-name="$REGION_NAME" image create "$image_name-ramdisk" $(_image_properties_to_arg $img_property) --public --container-format ari --disk-format ari < "$ramdisk" | grep ' id ' | get_field 2)
Dean Troyerca0e3d02012-04-13 15:58:37 -0500446 fi
Abhishek Kekane73ad9762020-06-16 15:20:48 +0000447 _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 -0500448 fi
449}
450
Dean Troyer1a6d4492013-06-03 16:47:36 -0500451
Dean Troyerc1b486a2012-11-05 14:26:09 -0600452# Set the database backend to use
453# When called from stackrc/localrc DATABASE_BACKENDS has not been
454# initialized yet, just save the configuration selection and call back later
455# to validate it.
Adam Spierscb961592013-10-05 12:11:07 +0100456#
Matt Riedemannb14665f2019-10-17 19:34:05 +0000457# ``$1`` - the name of the database backend to use (mysql, postgresql, ...)
Dean Troyerc1b486a2012-11-05 14:26:09 -0600458function use_database {
459 if [[ -z "$DATABASE_BACKENDS" ]]; then
Dean Troyerafc29fe2013-02-07 15:56:24 -0600460 # No backends registered means this is likely called from ``localrc``
461 # This is now deprecated usage
Dean Troyerc1b486a2012-11-05 14:26:09 -0600462 DATABASE_TYPE=$1
Sean Dague72ad9422015-10-07 11:51:40 -0400463 deprecated "The database backend needs to be properly set in ENABLED_SERVICES; use_database is deprecated localrc"
Attila Fazekas251d3b52012-12-16 15:05:44 +0100464 else
Dean Troyerafc29fe2013-02-07 15:56:24 -0600465 # This should no longer get called...here for posterity
Attila Fazekas251d3b52012-12-16 15:05:44 +0100466 use_exclusive_service DATABASE_BACKENDS DATABASE_TYPE $1
Dean Troyerc1b486a2012-11-05 14:26:09 -0600467 fi
Dean Troyerc1b486a2012-11-05 14:26:09 -0600468}
469
sridhargaddamb5ab6462015-02-24 07:23:24 +0000470#Macro for curl statements. curl requires -g option for literal IPv6 addresses.
471CURL_GET="${CURL_GET:-curl -g}"
Dean Troyer1a6d4492013-06-03 16:47:36 -0500472
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600473# Wait for an HTTP server to start answering requests
474# wait_for_service timeout url
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400475#
476# If the service we want is behind a proxy, the proxy may be available
477# before the service. Compliant proxies will return a 503 in this case
478# Loop until we get something else.
479# Also check for the case where there is no proxy and the service just
480# hasn't started yet. curl returns 7 for Failed to connect to host.
Ian Wienandaee18c72014-02-21 15:35:08 +1100481function wait_for_service {
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600482 local timeout=$1
483 local url=$2
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400484 local rval=0
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900485 time_start "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400486 timeout $timeout bash -x <<EOF || rval=$?
487 while [[ \$( ${CURL_GET} -k --noproxy '*' -s -o /dev/null -w '%{http_code}' ${url} ) == 503 || \$? -eq 7 ]]; do
488 sleep 1
489 done
490EOF
Atsushi SAKAI2ca8af42015-12-08 15:36:13 +0900491 time_stop "wait_for_service"
Rob Crittenden21e3d1e2016-05-06 12:35:22 -0400492 return $rval
Dean Troyer3a3a2ba2012-12-11 15:26:24 -0600493}
494
Sean Daguec2fe9162017-07-28 11:29:18 +0000495function wait_for_compute {
496 local timeout=$1
497 local rval=0
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530498 local compute_hostname
Sean Daguec2fe9162017-07-28 11:29:18 +0000499 time_start "wait_for_service"
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530500 compute_hostname=$(iniget $NOVA_CONF DEFAULT host)
501 if [[ -z $compute_hostname ]]; then
502 compute_hostname=$(hostname)
503 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000504 timeout $timeout bash -x <<EOF || rval=$?
505 ID=""
506 while [[ "\$ID" == "" ]]; do
507 sleep 1
Chris Dentac475bb2018-02-07 18:35:40 +0000508 if [[ "$VIRT_DRIVER" = 'fake' ]]; then
509 # When using the fake driver the compute hostnames have a suffix of 1 to NUMBER_FAKE_NOVA_COMPUTE
510 ID=\$(openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list --host `hostname`1 --service nova-compute -c ID -f value)
511 else
Prabhat Ranjan6f38cf42018-03-16 16:33:46 +0530512 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 +0000513 fi
Sean Daguec2fe9162017-07-28 11:29:18 +0000514 done
515EOF
516 time_stop "wait_for_service"
517 # Figure out what's happening on platforms where this doesn't work
518 if [[ "$rval" != 0 ]]; then
519 echo "Didn't find service registered by hostname after $timeout seconds"
520 openstack --os-cloud devstack-admin --os-region "$REGION_NAME" compute service list
521 fi
522 return $rval
523}
524
Dean Troyer1a6d4492013-06-03 16:47:36 -0500525
Nachi Uenofda946e2012-10-24 17:26:02 -0700526# ping check
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100527# Uses globals ``ENABLED_SERVICES``, ``TOP_DIR``, ``PRIVATE_NETWORK``
Sean Dagueaf9bf862015-04-16 08:58:32 -0400528# ping_check <ip> [boot-timeout] [from_net] [expected]
Ian Wienandaee18c72014-02-21 15:35:08 +1100529function ping_check {
Sean Dagueaf9bf862015-04-16 08:58:32 -0400530 local ip=$1
531 local timeout=${2:-30}
532 local from_net=${3:-""}
533 local expected=${4:-True}
534 local op="!"
535 local failmsg="[Fail] Couldn't ping server"
536 local ping_cmd="ping"
Nachi Uenofda946e2012-10-24 17:26:02 -0700537
Sean Dagueaf9bf862015-04-16 08:58:32 -0400538 # if we don't specify a from_net we're expecting things to work
539 # fine from our local box.
540 if [[ -n "$from_net" ]]; then
Stephen Finucane4b8cba72019-05-21 14:17:11 +0100541 # TODO(stephenfin): Is there any way neutron could be disabled now?
Sean Dagueaf9bf862015-04-16 08:58:32 -0400542 if is_service_enabled neutron; then
543 ping_cmd="$TOP_DIR/tools/ping_neutron.sh $from_net"
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700544 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700545 fi
Sean Dagueaf9bf862015-04-16 08:58:32 -0400546
547 # inverse the logic if we're testing no connectivity
548 if [[ "$expected" != "True" ]]; then
549 op=""
550 failmsg="[Fail] Could ping server"
551 fi
552
553 # Because we've transformed this command so many times, print it
554 # out at the end.
555 local check_command="while $op $ping_cmd -c1 -w1 $ip; do sleep 1; done"
556 echo "Checking connectivity with $check_command"
557
558 if ! timeout $timeout sh -c "$check_command"; then
559 die $LINENO $failmsg
560 fi
Nachi Uenofda946e2012-10-24 17:26:02 -0700561}
562
Nachi Ueno6769b162013-08-12 18:18:56 -0700563# Get ip of instance
Ian Wienandaee18c72014-02-21 15:35:08 +1100564function get_instance_ip {
Nachi Ueno6769b162013-08-12 18:18:56 -0700565 local vm_id=$1
566 local network_name=$2
Ryota MIBU842d54a2017-12-25 16:28:50 +0900567 local addresses
Ian Wienandada886d2015-10-07 14:06:26 +1100568 local ip
Ian Wienand7ae97292016-02-16 14:50:53 +1100569
Ryota MIBU842d54a2017-12-25 16:28:50 +0900570 addresses=$(openstack server show -c addresses -f value "$vm_id")
571 ip=$(echo $addresses | sed -n "s/^.*$network_name=\([0-9\.]*\).*$/\1/p")
Nachi Ueno6769b162013-08-12 18:18:56 -0700572 if [[ $ip = "" ]];then
Ryota MIBU842d54a2017-12-25 16:28:50 +0900573 echo "addresses of server $vm_id : $addresses"
Atsushi SAKAI33c9a672015-11-12 19:50:00 +0900574 die $LINENO "[Fail] Couldn't get ipaddress of VM"
Nachi Ueno6769b162013-08-12 18:18:56 -0700575 fi
576 echo $ip
577}
Dean Troyer1a6d4492013-06-03 16:47:36 -0500578
Nachi Uenofda946e2012-10-24 17:26:02 -0700579# ssh check
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700580
Dean Troyer1a6d4492013-06-03 16:47:36 -0500581# ssh_check net-name key-file floating-ip default-user active-timeout
Ian Wienandaee18c72014-02-21 15:35:08 +1100582function ssh_check {
Mark McClainb05c8762013-07-06 23:29:39 -0400583 if is_service_enabled neutron; then
584 _ssh_check_neutron "$1" $2 $3 $4 $5
Nachi Ueno5db5bfa2012-10-29 11:25:29 -0700585 return
586 fi
587 _ssh_check_novanet "$1" $2 $3 $4 $5
588}
589
Ian Wienandaee18c72014-02-21 15:35:08 +1100590function _ssh_check_novanet {
Nachi Uenofda946e2012-10-24 17:26:02 -0700591 local NET_NAME=$1
592 local KEY_FILE=$2
593 local FLOATING_IP=$3
594 local DEFAULT_INSTANCE_USER=$4
595 local ACTIVE_TIMEOUT=$5
Dean Troyer6931c132012-11-07 16:51:21 -0600596 local probe_cmd=""
Dean Troyercc6b4432013-04-08 15:38:03 -0500597 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 -0800598 die $LINENO "server didn't become ssh-able!"
Nachi Uenofda946e2012-10-24 17:26:02 -0700599 fi
600}
Dean Troyer13dc5cc2012-03-27 14:50:45 -0500601
Vincent Untz856a11e2012-11-21 16:04:12 +0100602
Vincent Untz856a11e2012-11-21 16:04:12 +0100603# Get the location of the $module-rootwrap executables, where module is cinder
604# or nova.
605# get_rootwrap_location module
Ian Wienandaee18c72014-02-21 15:35:08 +1100606function get_rootwrap_location {
Vincent Untz856a11e2012-11-21 16:04:12 +0100607 local module=$1
608
Jakub Ruzicka4196d552013-01-30 15:35:54 +0100609 echo "$(get_python_exec_prefix)/$module-rootwrap"
Vincent Untz856a11e2012-11-21 16:04:12 +0100610}
611
Dean Troyer1a6d4492013-06-03 16:47:36 -0500612
Ian Wienand0488edd2013-04-11 12:04:36 +1000613# Path permissions sanity check
614# check_path_perm_sanity path
Ian Wienandaee18c72014-02-21 15:35:08 +1100615function check_path_perm_sanity {
Ian Wienand0488edd2013-04-11 12:04:36 +1000616 # Ensure no element of the path has 0700 permissions, which is very
617 # likely to cause issues for daemons. Inspired by default 0700
618 # homedir permissions on RHEL and common practice of making DEST in
619 # the stack user's homedir.
620
Ian Wienandada886d2015-10-07 14:06:26 +1100621 local real_path
622 real_path=$(readlink -f $1)
Ian Wienand0488edd2013-04-11 12:04:36 +1000623 local rebuilt_path=""
624 for i in $(echo ${real_path} | tr "/" " "); do
625 rebuilt_path=$rebuilt_path"/"$i
626
627 if [[ $(stat -c '%a' ${rebuilt_path}) = 700 ]]; then
628 echo "*** DEST path element"
629 echo "*** ${rebuilt_path}"
630 echo "*** appears to have 0700 permissions."
Dean Troyerdc97cb72015-03-28 08:20:50 -0500631 echo "*** This is very likely to cause fatal issues for DevStack daemons."
Ian Wienand0488edd2013-04-11 12:04:36 +1000632
633 if [[ -n "$SKIP_PATH_SANITY" ]]; then
634 return
635 else
636 echo "*** Set SKIP_PATH_SANITY to skip this check"
637 die $LINENO "Invalid path permissions"
638 fi
639 fi
640 done
641}
642
Dean Troyer1a6d4492013-06-03 16:47:36 -0500643
Ian Wienand2ba36cd2015-11-12 13:52:36 +1100644# vercmp ver1 op ver2
645# Compare VER1 to VER2
646# - op is one of < <= == >= >
647# - returns true if satisified
648# e.g.
649# if vercmp 1.0 "<" 2.0; then
650# ...
651# fi
652function vercmp {
653 local v1=$1
654 local op=$2
655 local v2=$3
656 local result
657
658 # sort the two numbers with sort's "-V" argument. Based on if v2
659 # swapped places with v1, we can determine ordering.
660 result=$(echo -e "$v1\n$v2" | sort -V | head -1)
661
662 case $op in
663 "==")
664 [ "$v1" = "$v2" ]
665 return
666 ;;
667 ">")
668 [ "$v1" != "$v2" ] && [ "$result" = "$v2" ]
669 return
670 ;;
671 "<")
672 [ "$v1" != "$v2" ] && [ "$result" = "$v1" ]
673 return
674 ;;
675 ">=")
676 [ "$result" = "$v2" ]
677 return
678 ;;
679 "<=")
680 [ "$result" = "$v1" ]
681 return
682 ;;
683 *)
684 die $LINENO "unrecognised op: $op"
685 ;;
686 esac
687}
Kyle Mestery51a3f1f2013-06-13 11:47:56 +0000688
Sean Dague9751be62016-04-05 12:08:57 -0400689# This sets up defaults we like in devstack for logging for tracking
690# down issues, and makes sure everything is done the same between
691# projects.
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000692# NOTE(jh): Historically this function switched between three different
693# functions: setup_systemd_logging, setup_colorized_logging and
694# setup_standard_logging_identity. Since we always run with systemd now,
695# this could be cleaned up, but the other functions may still be in use
696# by plugins. Since deprecations haven't worked in the past, we'll just
697# leave them in place.
Sean Dague9751be62016-04-05 12:08:57 -0400698function setup_logging {
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000699 setup_systemd_logging $1
Sean Dague9751be62016-04-05 12:08:57 -0400700}
701
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700702# This function sets log formatting options for colorizing log
703# output to stdout. It is meant to be called by lib modules.
Ian Wienandaee18c72014-02-21 15:35:08 +1100704function setup_colorized_logging {
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700705 local conf_file=$1
Salvatore Orlando05ae8332013-08-20 14:51:08 -0700706 # Add color to logging output
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000707 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"
708 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"
709 iniset $conf_file DEFAULT logging_debug_format_suffix "from (pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d"
710 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 -0700711}
712
Sean Dague5edae542017-03-21 20:50:24 -0400713function setup_systemd_logging {
714 local conf_file=$1
Sean Dagueb2bfe562017-05-03 09:58:21 -0400715 # NOTE(sdague): this is a nice to have, and means we're using the
716 # native systemd path, which provides for things like search on
717 # request-id. However, there may be an eventlet interaction here,
718 # so going off for now.
Kirill Zaitsevc0644f32017-05-24 13:00:47 +0300719 USE_JOURNAL=$(trueorfalse False USE_JOURNAL)
Eric Fried8cd310d2017-05-16 13:52:03 -0500720 local pidstr=""
Sean Dagueb2bfe562017-05-03 09:58:21 -0400721 if [[ "$USE_JOURNAL" == "True" ]]; then
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000722 iniset $conf_file DEFAULT use_journal "True"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400723 # if we are using the journal directly, our process id is already correct
Sean Dagueb2bfe562017-05-03 09:58:21 -0400724 else
Eric Fried8cd310d2017-05-16 13:52:03 -0500725 pidstr="(pid=%(process)d) "
Sean Dagueb2bfe562017-05-03 09:58:21 -0400726 fi
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000727 iniset $conf_file DEFAULT logging_debug_format_suffix "{{${pidstr}%(funcName)s %(pathname)s:%(lineno)d}}"
Sean Dagueb2bfe562017-05-03 09:58:21 -0400728
Dr. Jens Harbott6808a342020-01-20 15:52:33 +0000729 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"
730 iniset $conf_file DEFAULT logging_default_format_string "%(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s"
731 iniset $conf_file DEFAULT logging_exception_prefix "ERROR %(name)s %(instance)s"
Sean Dague5edae542017-03-21 20:50:24 -0400732}
733
Sean Dague9751be62016-04-05 12:08:57 -0400734function setup_standard_logging_identity {
735 local conf_file=$1
736 iniset $conf_file DEFAULT logging_user_identity_format "%(project_name)s %(user_name)s"
737}
738
Ian Wienand54e39102014-06-03 16:05:12 +1000739# These functions are provided for basic fall-back functionality for
Dean Troyerdc97cb72015-03-28 08:20:50 -0500740# projects that include parts of DevStack (Grenade). stack.sh will
741# override these with more specific versions for DevStack (with fancy
Ian Wienand54e39102014-06-03 16:05:12 +1000742# spinners, etc). We never override an existing version
743if ! function_exists echo_summary; then
744 function echo_summary {
745 echo $@
746 }
747fi
748if ! function_exists echo_nolog; then
749 function echo_nolog {
750 echo $@
751 }
752fi
Dean Troyerdff49a22014-01-30 15:37:40 -0600753
Sébastien Han36f2f022014-01-06 18:09:26 +0100754
Dan Smith6766f712020-07-24 15:44:34 -0700755# create_disk - Create, configure, and mount a backing disk
Sébastien Han36f2f022014-01-06 18:09:26 +0100756function create_disk {
757 local node_number
758 local disk_image=${1}
759 local storage_data_dir=${2}
760 local loopback_disk_size=${3}
Dan Smith6766f712020-07-24 15:44:34 -0700761 local key
Sébastien Han36f2f022014-01-06 18:09:26 +0100762
Dan Smith36a575b2020-11-13 06:57:33 -0800763 key=$(echo $disk_image | sed 's#/.##')
764 key="devstack-$key"
Sébastien Han36f2f022014-01-06 18:09:26 +0100765
Dan Smith36a575b2020-11-13 06:57:33 -0800766 destroy_disk $disk_image $storage_data_dir
Sébastien Han36f2f022014-01-06 18:09:26 +0100767
Dan Smith36a575b2020-11-13 06:57:33 -0800768 # Create an empty file of the correct size (and ensure the
769 # directory structure up to that path exists)
770 sudo mkdir -p $(dirname ${disk_image})
Sébastien Han36f2f022014-01-06 18:09:26 +0100771 sudo truncate -s ${loopback_disk_size} ${disk_image}
772
773 # Make a fresh XFS filesystem. Use bigger inodes so xattr can fit in
774 # a single inode. Keeping the default inode size (256) will result in multiple
775 # inodes being used to store xattr. Retrieving the xattr will be slower
776 # since we have to read multiple inodes. This statement is true for both
777 # Swift and Ceph.
778 sudo mkfs.xfs -f -i size=1024 ${disk_image}
779
Dan Smith36a575b2020-11-13 06:57:33 -0800780 # Install a new loopback fstab entry for this disk image, and mount it
Dan Smith6766f712020-07-24 15:44:34 -0700781 echo "$disk_image $storage_data_dir xfs loop,noatime,nodiratime,logbufs=8,comment=$key 0 0" | sudo tee -a /etc/fstab
Dan Smith36a575b2020-11-13 06:57:33 -0800782 sudo mkdir -p $storage_data_dir
Dan Smith6766f712020-07-24 15:44:34 -0700783 sudo mount -v $storage_data_dir
784}
785
786# Unmount, de-configure, and destroy a backing disk
787function destroy_disk {
788 local disk_image=$1
789 local storage_data_dir=$2
Dan Smith36a575b2020-11-13 06:57:33 -0800790 local key
791
792 key=$(echo $disk_image | sed 's#/.##')
793 key="devstack-$key"
Dan Smith6766f712020-07-24 15:44:34 -0700794
795 # Unmount the target, if mounted
796 if egrep -q $storage_data_dir /proc/mounts; then
797 sudo umount $storage_data_dir
798 fi
799
800 # Clear any fstab rules
Dan Smith36a575b2020-11-13 06:57:33 -0800801 sudo sed -i '/.*comment=$key.*/ d' /etc/fstab
Dan Smith6766f712020-07-24 15:44:34 -0700802
803 # Delete the file
Dan Smith36a575b2020-11-13 06:57:33 -0800804 sudo rm -f $disk_image
Sébastien Han36f2f022014-01-06 18:09:26 +0100805}
806
Ihar Hrachyshka7b5c7dc2016-07-15 20:17:13 +0200807
808# set_mtu - Set MTU on a device
809function set_mtu {
810 local dev=$1
811 local mtu=$2
812 sudo ip link set mtu $mtu dev $dev
813}
814
815
Denis Buliga0bf75a42017-02-06 16:56:46 +0200816# running_in_container - Returns true otherwise false
817function running_in_container {
kesperd18d7c82017-03-23 05:52:33 +0000818 [[ $(systemd-detect-virt --container) != 'none' ]]
Denis Buliga0bf75a42017-02-06 16:56:46 +0200819}
820
821
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000822# enable_kernel_bridge_firewall - Enable kernel support for bridge firewalling
823function enable_kernel_bridge_firewall {
824 # Load bridge module. This module provides access to firewall for bridged
825 # frames; and also on older kernels (pre-3.18) it provides sysctl knobs to
826 # enable/disable bridge firewalling
827 sudo modprobe bridge
828 # For newer kernels (3.18+), those sysctl settings are split into a separate
829 # kernel module (br_netfilter). Load it too, if present.
830 sudo modprobe br_netfilter 2>> /dev/null || :
831 # Enable bridge firewalling in case it's disabled in kernel (upstream
832 # default is enabled, but some distributions may decide to change it).
833 # This is at least needed for RHEL 7.2 and earlier releases.
Ihar Hrachyshka3f771b72016-12-17 04:12:24 +0000834 for proto in ip ip6; do
Ihar Hrachyshkab3a210f2016-09-29 13:26:30 +0000835 sudo sysctl -w net.bridge.bridge-nf-call-${proto}tables=1
836 done
837}
838
839
Dan Smith1f55d382017-05-16 08:50:53 -0700840# Set a systemd system override
841#
842# This sets a system-side override in system.conf. A per-service
843# override would be /etc/systemd/system/${service}.service/override.conf
844function set_systemd_override {
845 local key="$1"
846 local value="$2"
847
848 local sysconf="/etc/systemd/system.conf"
849 iniset -sudo "${sysconf}" "Manager" "$key" "$value"
850 echo "Set systemd system override for ${key}=${value}"
851
852 sudo systemctl daemon-reload
853}
854
Matthew Treinish309b99e2017-05-23 15:18:31 -0400855# Get a random port from the local port range
856#
857# This function returns an available port in the local port range. The search
858# order is not truly random, but should be considered a random value by the
859# user because it depends on the state of your local system.
860function get_random_port {
861 read lower_port upper_port < /proc/sys/net/ipv4/ip_local_port_range
862 while true; do
863 for (( port = upper_port ; port >= lower_port ; port-- )); do
864 sudo lsof -i ":$port" &> /dev/null
865 if [[ $? > 0 ]] ; then
866 break 2
867 fi
868 done
869 done
870 echo $port
871}
872
Ian Wienand07cbc442017-06-30 12:29:19 +1000873# Save some state information
874#
875# Write out various useful state information to /etc/devstack-version
Sean Dague2c0faca2017-06-28 09:13:04 -0400876function write_devstack_version {
Dirk Mueller6bab8322018-03-02 21:13:12 +0100877 cat - <<EOF | sudo tee /etc/devstack-version >/dev/null
Ian Wienand07cbc442017-06-30 12:29:19 +1000878DevStack Version: ${DEVSTACK_SERIES}
879Change: $(git log --format="%H %s %ci" -1)
880OS Version: ${os_VENDOR} ${os_RELEASE} ${os_CODENAME}
Sean Dague2c0faca2017-06-28 09:13:04 -0400881EOF
Sean Dague2c0faca2017-06-28 09:13:04 -0400882}
883
Dean Troyer27e32692012-03-16 16:16:56 -0500884# Restore xtrace
Ian Wienand523f4882015-10-13 11:03:03 +1100885$_XTRACE_FUNCTIONS
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500886
Dean Troyer4a43b7b2012-08-28 17:43:40 -0500887# Local variables:
Sean Dague584d90e2013-03-29 14:34:53 -0400888# mode: shell-script
Andrew Laskif900bd72012-09-05 17:23:14 -0400889# End: