Bug 1169409
Summary: | Libvirt will crash with segfault if you try to set non-existing nwfilter to network interface for live guest | |||
---|---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Pavel Hrdina <phrdina> | |
Component: | libvirt | Assignee: | Pavel Hrdina <phrdina> | |
Status: | CLOSED ERRATA | QA Contact: | Virtualization Bugs <virt-bugs> | |
Severity: | unspecified | Docs Contact: | ||
Priority: | unspecified | |||
Version: | 7.1 | CC: | dyuan, honzhang, jiahu, lmiksik, mzhan, rbalakri | |
Target Milestone: | rc | |||
Target Release: | --- | |||
Hardware: | Unspecified | |||
OS: | Unspecified | |||
Whiteboard: | ||||
Fixed In Version: | libvirt-1.2.8-11.el7 | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | ||
Clone Of: | ||||
: | 1202703 (view as bug list) | Environment: | ||
Last Closed: | 2015-03-05 07:47:52 UTC | Type: | Bug | |
Regression: | --- | Mount Type: | --- | |
Documentation: | --- | CRM: | ||
Verified Versions: | Category: | --- | ||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | ||
Cloudforms Team: | --- | Target Upstream Version: | ||
Embargoed: | ||||
Bug Depends On: | ||||
Bug Blocks: | 1143780, 1202703 |
Description
Pavel Hrdina
2014-12-01 15:17:51 UTC
Upstream patch posted: https://www.redhat.com/archives/libvir-list/2014-December/msg00084.html commit d98ad8dd0c5a1d9f6a804e23f0568c784469c3fd Author: Pavel Hrdina <phrdina> Date: Mon Dec 1 17:23:00 2014 +0100 nwfilter: fix crash when adding non-existing nwfilter Adding non-existing nwfilter to a network interface device without any nwfilter specified will crash libvirt daemon with segfault. The reason is that the nwfilter is not found an libvirt will try to restore old nwfilter configuration but there is no nwfilter specified. Signed-off-by: Pavel Hrdina <phrdina> I can not reproduce it on below version. [root@ibm-x3850x5-06 ~]# rpm -q libvirt qemu-kvm-rhev libvirt-1.2.8-11.el7.x86_64 qemu-kvm-rhev-2.1.2-17.el7.x86_64 [root@ibm-x3850x5-06 ~]# cat nic3.xml <interface type='network'> <mac address='02:54:00:36:c6:d0'/> <source network='default' bridge='virbr0'/> <target dev='vnet0'/> <model type='virtio'/> <alias name='net0'/> <filterref filter='clean-traffic-non-exist'/> <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/> </interface> [root@ibm-x3850x5-06 ~]# virsh list --all Id Name State ---------------------------------------------------- 37 r7 running [root@ibm-x3850x5-06 ~]# service libvirtd status Redirecting to /bin/systemctl status libvirtd.service libvirtd.service - Virtualization daemon Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled) Active: active (running) since Fri 2014-12-19 16:45:50 CST; 3 days ago Docs: man:libvirtd(8) http://libvirt.org Main PID: 14355 (libvirtd) CGroup: /system.slice/libvirtd.service ├─ 2742 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --dhcp-script=/usr/libexec/libvirt_leaseshelper ├─ 2743 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --dhcp-script=/usr/libexec/libvirt_leaseshelper └─14355 /usr/sbin/libvirtd ... [root@ibm-x3850x5-06 ~]# virsh update-device r7 nic3.xml error: Failed to update device from nic3.xml error: operation failed: failed to add new filter rules to 'vnet0' - attempting to restore old rules [root@ibm-x3850x5-06 ~]# virsh update-device r7 nic3.xml error: Failed to update device from nic3.xml error: operation failed: failed to add new filter rules to 'vnet0' - attempting to restore old rules [root@ibm-x3850x5-06 ~]# service libvirtd status Redirecting to /bin/systemctl status libvirtd.service libvirtd.service - Virtualization daemon Loaded: loaded (/usr/lib/systemd/system/libvirtd.service; enabled) Active: active (running) since Fri 2014-12-19 16:45:50 CST; 3 days ago Docs: man:libvirtd(8) http://libvirt.org Main PID: 14355 (libvirtd) CGroup: /system.slice/libvirtd.service ├─ 2742 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --dhcp-script=/usr/libexec/libvirt_leaseshelper ├─ 2743 /sbin/dnsmasq --conf-file=/var/lib/libvirt/dnsmasq/default.conf --dhcp-script=/usr/libexec/libvirt_leaseshelper └─14355 /usr/sbin/libvirtd ... Move to Verified. 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://rhn.redhat.com/errata/RHSA-2015-0323.html |