Re: [Qemu-devel] [PATCH] seccomp: add arch_prctl() to the syscall whitelist

2013-08-02 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] seccomp: add arch_prctl() to the syscall whitelist

2013-07-29 Thread Paul Moore
On Wednesday, July 24, 2013 03:01:57 PM Eduardo Otubo wrote: > On 07/23/2013 10:57 AM, Paul Moore wrote: > > On Thursday, July 18, 2013 09:57:03 AM Paul Moore wrote: > >> It appears that even a very simple /etc/qemu-ifup configuration can > >> > >> require the arch_prctl() syscall, see the example

Re: [Qemu-devel] [PATCH] seccomp: add arch_prctl() to the syscall whitelist

2013-07-24 Thread Eduardo Otubo
On 07/23/2013 10:57 AM, Paul Moore wrote: On Thursday, July 18, 2013 09:57:03 AM Paul Moore wrote: It appears that even a very simple /etc/qemu-ifup configuration can require the arch_prctl() syscall, see the example below: #!/bin/sh /sbin/ifconfig $1 0.0.0.0 up /usr/s

Re: [Qemu-devel] [PATCH] seccomp: add arch_prctl() to the syscall whitelist

2013-07-23 Thread Paul Moore
On Thursday, July 18, 2013 09:57:03 AM Paul Moore wrote: > It appears that even a very simple /etc/qemu-ifup configuration can > require the arch_prctl() syscall, see the example below: > > #!/bin/sh > /sbin/ifconfig $1 0.0.0.0 up > /usr/sbin/brctl addif $1 > > Signed-off-by: P

[Qemu-devel] [PATCH] seccomp: add arch_prctl() to the syscall whitelist

2013-07-18 Thread Paul Moore
It appears that even a very simple /etc/qemu-ifup configuration can require the arch_prctl() syscall, see the example below: #!/bin/sh /sbin/ifconfig $1 0.0.0.0 up /usr/sbin/brctl addif $1 Signed-off-by: Paul Moore --- qemu-seccomp.c |3 ++- 1 file changed, 2 insert