RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Bug 803643 - inspect-is-multipart return false when inspection results should be true
Summary: inspect-is-multipart return false when inspection results should be true
Keywords:
Status: CLOSED WONTFIX
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: libguestfs
Version: 7.0
Hardware: Unspecified
OS: Unspecified
medium
medium
Target Milestone: rc
: ---
Assignee: Richard W.M. Jones
QA Contact: Virtualization Bugs
URL:
Whiteboard:
Depends On:
Blocks: 1113520 1205796
TreeView+ depends on / blocked
 
Reported: 2012-03-15 10:44 UTC by Yuyu Zhou
Modified: 2015-07-13 06:11 UTC (History)
5 users (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2015-04-20 08:45:06 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)

Description Yuyu Zhou 2012-03-15 10:44:46 UTC
Description of problem:
As the document says: If "inspect_get_format" returns "installer" (this is an install disk), then this returns true if the disk is part of a set.
But it returns false when the disk is not the first disk of the set. And it returns true sometimes when the disk is integrity.

Version-Release number of selected component (if applicable):
libguestfs-1.16.10-1.el6.x86_64

How reproducible:
100%

Steps to Reproduce:
1. download a disk that is part of set, but not the first one, for example: RHEL5.8-Server-20120202.0-x86_64-disc3-ftp.iso
2. Inspect the DVD iso as following:
# guestfish
$ add-ro RHEL5.8-Server-20120202.0-x86_64-disc3-ftp.iso
$ run
$ inspect-os
/dev/vda
$ inspect-get-format /dev/vda
installer
$ inspect-is-multipart /dev/vda
false
3. download a disk that is not part of set, for example: RHEL5.8-Server-20120202.0-x86_64-DVD.iso
4. Inspect the DVD iso as following:
# guestfish
$ add-ro RHEL5.8-Server-20120202.0-x86_64-DVD.iso
$ run
$ inspect-os
/dev/vda
$ inspect-get-format /dev/vda
installer
$ inspect-is-multipart /dev/vda
true

Actual results:
At step2
$ inspect-is-multipart /dev/vda
false
At Stpe4
$ inspect-is-multipart /dev/vda
true

Expected results:
At Step2
$ inspect-is-multipart /dev/vda
true
At Step4
$ inspect-is-multipart /dev/vda
false

Additional info:
code is wrong in libguestfs:
-  fs->is_multipart_disk = totaldiscs > 0;
+  fs->is_multipart_disk = totaldiscs > 1;

Comment 1 Richard W.M. Jones 2012-03-16 10:46:28 UTC
I've fixed the obvious bug:

-  fs->is_multipart_disk = totaldiscs > 0;
+  fs->is_multipart_disk = totaldiscs > 1;

However generally I'm going to defer all of this installer
inspection code to 6.4.  There seem to be many bugs, and
most likely upstream we will switch to using ISO metadata
detection (from libosinfo) as a more reliable way to do
this.  That is not implemented yet upstream and is too large
a change for 6.3.

Comment 3 RHEL Program Management 2012-07-10 06:19:30 UTC
This request was not resolved in time for the current release.
Red Hat invites you to ask your support representative to
propose this request, if still desired, for consideration in
the next release of Red Hat Enterprise Linux.

Comment 4 RHEL Program Management 2012-07-11 00:01:44 UTC
This request was erroneously removed from consideration in Red Hat Enterprise Linux 6.4, which is currently under development.  This request will be evaluated for inclusion in Red Hat Enterprise Linux 6.4.

Comment 7 Richard W.M. Jones 2012-11-01 11:26:04 UTC
I suspect we'll just not fix this bug, and try to fix
it properly in RHEL 7.  The proper fix (using libosinfo)
is quite invasive; essentially a rewrite of the CD inspection
code.

Comment 8 Richard W.M. Jones 2012-11-29 18:32:13 UTC
Upstream I have started to integrate libosinfo
database information:
https://github.com/libguestfs/libguestfs/commit/90e7981082a2685b235724a6dd9b737cb90fe553

However the current libosinfo database does not
contain information about whether a disk is
part of a multipart set, meaning that this bug
is not directly fixed yet.

In any case it's a RHEL 7 issue.

Comment 13 Richard W.M. Jones 2015-04-20 08:45:06 UTC
I'm closing this bug as WONTFIX because:

(a) Not reported or affecting any customers

(b) Other tools (libosinfo) give the same or better information

(c) Has been around for years without attracting enough interest to fix


Note You need to log in before you can comment on or make changes to this bug.