Tomáš Golembiovský
2016-Oct-05 14:35 UTC
[Libguestfs] [PATCH v4 0/2] Improve OVA manifest parsing
This series fixes and enhances parsing of the OVA manifest file. The changes are: - Added mandatory space to the regexp - Process all lines in the file, not just one - Warn on improperly formated lines - Support SHA256 hashes v1 -> v2: rebased on to master to make use of the Checksums module v2 -> v3: - changed debug/warning messages in first patch according to Richard's suggestions v3 -> v4: - remove unneeded String.replace and the stray argument to warning call Tomáš Golembiovský (2): v2v: ova: fix checking of the manifest file v2v: ova: support SHA256 hashes in manifest v2v/input_ova.ml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) -- 2.10.0
Tomáš Golembiovský
2016-Oct-05 14:35 UTC
[Libguestfs] [PATCH v4 1/2] v2v: ova: fix checking of the manifest file
The regular expression for parsing the manifest line was wrong. There is a mandatory space between '=' and the hash. Another problem was that only the first line of the manifest file was actually processed. Also added some debugging info and warning to catch problems with parsing. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/input_ova.ml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/v2v/input_ova.ml b/v2v/input_ova.ml index 5731a45..0d04659 100644 --- a/v2v/input_ova.ml +++ b/v2v/input_ova.ml @@ -133,9 +133,10 @@ object (* Read any .mf (manifest) files and verify sha1. *) let mf = find_files exploded ".mf" in - let rex = Str.regexp "SHA1(\\(.*\\))=\\([0-9a-fA-F]+\\)\r?" in + let rex = Str.regexp "SHA1(\\(.*\\))= \\([0-9a-fA-F]+\\)\r?" in List.iter ( fun mf -> + debug "processing manifest %s" mf; let mf_folder = Filename.dirname mf in let chan = open_in mf in let rec loop () @@ -149,6 +150,10 @@ object error (f_"checksum of disk %s does not match manifest %s (actual sha1(%s) = %s, expected sha1 (%s) = %s)") disk mf disk actual disk expected; ) + else + warning (f_"unable to parse line from manifest file: %S") line + ; + loop () in (try loop () with End_of_file -> ()); close_in chan -- 2.10.0
Tomáš Golembiovský
2016-Oct-05 14:35 UTC
[Libguestfs] [PATCH v4 2/2] v2v: ova: support SHA256 hashes in manifest
The OVF standard allows the use of SHA256 hashes in the manifest file. Adding support for this. Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- v2v/input_ova.ml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/v2v/input_ova.ml b/v2v/input_ova.ml index 0d04659..0eb37d4 100644 --- a/v2v/input_ova.ml +++ b/v2v/input_ova.ml @@ -133,7 +133,7 @@ object (* Read any .mf (manifest) files and verify sha1. *) let mf = find_files exploded ".mf" in - let rex = Str.regexp "SHA1(\\(.*\\))= \\([0-9a-fA-F]+\\)\r?" in + let rex = Str.regexp "\\(SHA1\\|SHA256\\)(\\(.*\\))= \\([0-9a-fA-F]+\\)\r?" in List.iter ( fun mf -> debug "processing manifest %s" mf; @@ -142,13 +142,14 @@ object let rec loop () let line = input_line chan in if Str.string_match rex line 0 then ( - let disk = Str.matched_group 1 line in - let expected = Str.matched_group 2 line in - let csum = Checksums.SHA1 expected in + let mode = Str.matched_group 1 line in + let disk = Str.matched_group 2 line in + let expected = Str.matched_group 3 line in + let csum = Checksums.of_string mode expected in try Checksums.verify_checksum csum (mf_folder // disk) with Checksums.Mismatched_checksum (_, actual) -> - error (f_"checksum of disk %s does not match manifest %s (actual sha1(%s) = %s, expected sha1 (%s) = %s)") - disk mf disk actual disk expected; + error (f_"checksum of disk %s does not match manifest %s (actual %s(%s) = %s, expected %s(%s) = %s)") + disk mf mode disk actual mode disk expected; ) else warning (f_"unable to parse line from manifest file: %S") line -- 2.10.0
Richard W.M. Jones
2016-Oct-05 17:47 UTC
Re: [Libguestfs] [PATCH v4 0/2] Improve OVA manifest parsing
On Wed, Oct 05, 2016 at 04:35:20PM +0200, Tomáš Golembiovský wrote:> This series fixes and enhances parsing of the OVA manifest file. > The changes are: > > - Added mandatory space to the regexp > - Process all lines in the file, not just one > - Warn on improperly formated lines > - Support SHA256 hashesLooks fine to me now. Pino, any other comments? Rich. -- Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones Read my programming and virtualization blog: http://rwmj.wordpress.com virt-builder quickly builds VMs from scratch http://libguestfs.org/virt-builder.1.html
Pino Toscano
2016-Oct-06 07:27 UTC
Re: [Libguestfs] [PATCH v4 0/2] Improve OVA manifest parsing
On Wednesday, 5 October 2016 18:47:16 CEST Richard W.M. Jones wrote:> On Wed, Oct 05, 2016 at 04:35:20PM +0200, Tomáš Golembiovský wrote: > > This series fixes and enhances parsing of the OVA manifest file. > > The changes are: > > > > - Added mandatory space to the regexp > > - Process all lines in the file, not just one > > - Warn on improperly formated lines > > - Support SHA256 hashes > > Looks fine to me now. Pino, any other comments?LGTM as well. The only improvement I see is modifying v2v/test-v2v-i-ova.sh, so that in the generated test-ova.mf one of the two SHA1 checksums is changed as SHA256 (so it is tested). -- Pino Toscano