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 1566525 - Hosted Engine VM (deployed in the past) fails to reboot with 'libvirtError: internal error: failed to format device alias for PTY retrieval' due to an error in console device in libvirt XML generated by the engine [rhel-7.5.z]
Summary: Hosted Engine VM (deployed in the past) fails to reboot with 'libvirtError: i...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Red Hat Enterprise Linux 7
Classification: Red Hat
Component: libvirt
Version: 7.5
Hardware: Unspecified
OS: Unspecified
urgent
high
Target Milestone: rc
: ---
Assignee: Michal Privoznik
QA Contact: yalzhang@redhat.com
URL:
Whiteboard:
Depends On: 1560976
Blocks:
TreeView+ depends on / blocked
 
Reported: 2018-04-12 13:12 UTC by Oneata Mircea Teodor
Modified: 2021-01-18 14:08 UTC (History)
18 users (show)

Fixed In Version: libvirt-3.9.0-14.el7_5.4
Doc Type: Bug Fix
Doc Text:
Previously, user aliases for PTY devices that were longer than 32 characters were not supported. Consequently, if a domain included a PTY device with a user alias longer than 32 characters, the domain would not start. With this update, a static buffer was replaced with a dynamic buffer. As a result, the domain starts even if the length of the user alias for a PTY device is longer than 32 characters.
Clone Of: 1560976
Environment:
Last Closed: 2018-05-14 16:11:44 UTC
Target Upstream Version:
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2018:1396 0 None None None 2018-05-14 16:13:02 UTC

Description Oneata Mircea Teodor 2018-04-12 13:12:56 UTC
This bug has been copied from bug #1560976 and has been proposed to be backported to 7.5 z-stream (EUS).

Comment 6 yalzhang@redhat.com 2018-04-23 10:56:28 UTC
Test on libvirt-3.9.0-14.el7_5.4.x86_64, the serial and console, channel device can use uuid as alias. vm start successfully and hotplug works well, set this bug to be verified.

1. prepare an inactive vm, and modify the xml to add uuid as alias for serial pty device, save and start the vm
# virsh start rhel
Domain rhel started

# virsh dumpxml rhel | grep /console -B11
    <serial type='pty'>
      <source path='/dev/pts/1'/>
      <target type='isa-serial' port='0'>
        <model name='isa-serial'/>
      </target>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f353'/>
    </serial>
    <console type='pty' tty='/dev/pts/1'>
      <source path='/dev/pts/1'/>
      <target type='serial' port='0'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f353'/>
    </console>

2. start vm with uuid alias for channel device and virtio console device, guest can start successfully
# virsh start rhel
Domain rhel started

# virsh dumpxml rhel
...
<console type='pty'>
      <source path='/dev/pts/2'/>
      <target type='virtio' port='1'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f358'/>
    </console>
    <channel type='unix'>
      <source mode='bind' path='/var/lib/libvirt/qemu/channel/target/domain-15-rhel/org.qemu.guest_agent.0'/>
      <target type='virtio' name='org.qemu.guest_agent.0' state='connected'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f359'/>
      <address type='virtio-serial' controller='0' bus='0' port='1'/>
    </channel>
...

3. do save and restore successfully and xml no change

4. do managedsave and start successfully and xml no change

5. do hotplug with such alias successfully
for console:
# cat console.xml
<console type='pty'>
      <source path='/dev/pts/2'/>
      <target type='virtio' port='1'/>
      <alias name='ua-5b93a4b8-3167-410b-a365-ab31e88a709a'/>
    </console>

# virsh attach-device rhel console.xml
Device attached successfully

# virsh dumpxml rhel | grep ua
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f358'/>
      <alias name='ua-5b93a4b8-3167-410b-a365-ab31e88a709a'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f359'/>

for channel:
# cat channel.xml
<channel type='pty'> 
<target type='virtio' name='org.linux-kvm.port.3'/> 
<address type='virtio-serial' controller='0' bus='0' port='4'/> 
<alias name='ua-209377ba-e83b-4cee-9ac5-7e467e290dae'/>
</channel>

# virsh attach-device rhel channel.xml
Device attached successfully

# virsh dumpxml rhel | grep ua
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f358'/>
      <alias name='ua-5b93a4b8-3167-410b-a365-ab31e88a709a'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f359'/>
      <alias name='ua-209377ba-e83b-4cee-9ac5-7e467e290dae'/>

for serial:
# cat serial.xml
<serial type='pty'>
      <source path='/dev/pts/1'/>
      <target type='pci-serial' port='0'>
        <model name='pci-serial'/>
      </target>
      <alias name='ua-09de3cbb-e85c-4526-8fe6-2b8ea0c5e03b'/>
    </serial>

# virsh attach-device rhel serial.xml
Device attached successfully

# virsh dumpxml rhel | grep ua
      <alias name='ua-09de3cbb-e85c-4526-8fe6-2b8ea0c5e03b'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f358'/>
      <alias name='ua-5b93a4b8-3167-410b-a365-ab31e88a709a'/>
      <alias name='ua-c60aba6e-b6d8-448b-ab6e-8c7b5c29f359'/>
      <alias name='ua-209377ba-e83b-4cee-9ac5-7e467e290dae'/>

Comment 9 errata-xmlrpc 2018-05-14 16:11:44 UTC
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

https://access.redhat.com/errata/RHSA-2018:1396


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