Re: [libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-09-07 Thread John Ferlan
On 08/24/2016 07:15 PM, Rufo Dogav wrote: > This patch fixes a segfault in virt-aa-helper caused by attempting to modify a > string literal in situ. It is triggered when a domain has a with > type='mount' configured readonly, and libvirt is using the AppArmor security > driver for sVirt

[libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-08-24 Thread Rufo Dogav
This patch fixes a segfault in virt-aa-helper caused by attempting to modify a string literal in situ. It is triggered when a domain has a with type='mount' configured readonly, and libvirt is using the AppArmor security driver for sVirt confinement. --- Existing code seems to use

Re: [libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-08-23 Thread John Ferlan
On 08/23/2016 08:02 PM, Rufo Dogav wrote: > This patch fixes a segfault in virt-aa-helper caused by attempting to modify a > string literal in situ. It is triggered when a domain has a with > type='mount' configured readonly, and libvirt is using the AppArmor security > driver for sVirt

[libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-08-23 Thread Rufo Dogav
This patch fixes a segfault in virt-aa-helper caused by attempting to modify a string literal in situ. It is triggered when a domain has a with type='mount' configured readonly, and libvirt is using the AppArmor security driver for sVirt confinement. --- Thanks for the advice Martin - I

Re: [libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-08-23 Thread Martin Kletzander
On Tue, Aug 23, 2016 at 07:30:04PM +0100, rufo wrote: This patch fixes a segfault in virt-aa-helper caused by attempting to modify a string literal in situ. It is triggered when a domain has a with type='mount' configured readonly, and libvirt is using the AppArmor security driver for sVirt

[libvirt] [PATCH] Avoid segfault in virt-aa-helper when handling read-only mount filesystems

2016-08-23 Thread rufo
This patch fixes a segfault in virt-aa-helper caused by attempting to modify a string literal in situ. It is triggered when a domain has a with type='mount' configured readonly, and libvirt is using the AppArmor security driver for sVirt confinement. --- src/security/virt-aa-helper.c | 7