Backport vmtools version in vmdk (LP: #1893898)

Backport
LP: #1893898 describes missing vmtools version from the vmdk headers.
The version should be added as ddb.toolsVersion = "2147483647" however
the sed was no longer replacing a ddb.comment field with the tools
version. Rather than subbing ddb.comment with toolsVersion, this commit
deletes ddb.comment (which the comment mentions could cause errors),
and adds the correct value. There was no visibility into the descriptor
during hook creation, so debug statements were added. This allows us to
quickly verify in the logs that bad statements are removed (the possibly
offending comments), as well as ensuring that the toolsVersion is added
ubuntu/xenial
John Chittum 4 years ago
parent 02ea8c9398
commit 58f9e413ba
No known key found for this signature in database
GPG Key ID: FC52138B0F49EA8E

@ -207,28 +207,33 @@ modify_vmdk_header() {
# Extract the vmdk header for manipulation # Extract the vmdk header for manipulation
dd if="${vmdk_name}" of="${descriptor}" bs=1 skip=512 count=1024 dd if="${vmdk_name}" of="${descriptor}" bs=1 skip=512 count=1024
echo "Cat'ing original vmdk disk descriptor to console for debugging."
# cat header so we are aware of the original descriptor for debugging
cat $descriptor
# The sed lines below is where the magic is. Specifically: # trim null bytes to treat as standard text file
# ddb.toolsVersion: sets the open-vm-tools so that VMware shows tr -d '\000' < $descriptor > $newdescriptor
# the tooling as current
# ddb.virtualHWVersion: set the version to 7, which covers most # add newline to newdescriptor
# current versions of VMware echo "" >> $newdescriptor
# createType: make sure its set to stream Optimized
# remove the vmdk-stream-converter comment and replace with # add required tools version
# # Disk DescriptorFile. This is needed for Virtualbox echo -n 'ddb.toolsVersion = "2147483647"' >> $newdescriptor
# remove the comments from vmdk-stream-converter which causes
# VirtualBox and others to fail VMDK validation # diff original descriptor and new descriptor for debugging
# diff exits 1 if difference. pipefail not set so piping diff
sed -e 's|# Description file.*|# Disk DescriptorFile|' \ # to cat prints diff and swallows exit 1
-e '/# Believe this is random*/d' \ echo "Printing diff of original and new descriptors."
-e '/# Indicates no parent/d' \ diff --text $descriptor $newdescriptor | cat
-e '/# The Disk Data Base/d' \
-e 's|ddb.comment.*|ddb.toolsVersion = "2147483647"|' \ # The header must be 1024 or less before padding
"${descriptor}" > "${newdescriptor}" if ! expr $(stat --format=%s ${newdescriptor}) \< 1025 > /dev/null 2>&1; then
echo "descriptor is too large, VMDK will be invalid!";
# The header is cannot be bigger than 1024 exit 1
expr $(stat --format=%s ${newdescriptor}) \< 1024 > /dev/null 2>&1 || { fi
echo "descriptor is too large, VMDK will be invalid!"; exit 1; }
# reset newdescriptor to be 1024
truncate --no-create --size=1K $newdescriptor
# Overwrite the vmdk header with our new, modified one # Overwrite the vmdk header with our new, modified one
dd conv=notrunc,nocreat \ dd conv=notrunc,nocreat \

Loading…
Cancel
Save