* [Qemu-devel] [PULL 00/01] seccomp: trivial changes @ 2013-09-24 18:30 Eduardo Otubo 2013-09-24 18:30 ` [Qemu-devel] [PULL 01/01] seccomp: fine tuning whitelist by adding times() Eduardo Otubo 2013-10-01 20:04 ` [Qemu-devel] [PULL 00/01] seccomp: trivial changes Paul Moore 0 siblings, 2 replies; 4+ messages in thread From: Eduardo Otubo @ 2013-09-24 18:30 UTC (permalink / raw) To: qemu-devel; +Cc: pmoore, coreyb, anthony, Eduardo Otubo Anthony, The following changes since commit f828a4c8faa118e0ebab3e353ac6840f3b2a0318: Merge remote-tracking branch 'stefanha/tracing' into staging (2013-09-23 11:53:22 -0500) are available in the git repository at: git://github.com/otubo/qemu.git seccomp Eduardo Otubo (1): seccomp: fine tuning whitelist by adding times() qemu-seccomp.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) ^ permalink raw reply [flat|nested] 4+ messages in thread
* [Qemu-devel] [PULL 01/01] seccomp: fine tuning whitelist by adding times() 2013-09-24 18:30 [Qemu-devel] [PULL 00/01] seccomp: trivial changes Eduardo Otubo @ 2013-09-24 18:30 ` Eduardo Otubo 2013-10-01 20:04 ` [Qemu-devel] [PULL 00/01] seccomp: trivial changes Paul Moore 1 sibling, 0 replies; 4+ messages in thread From: Eduardo Otubo @ 2013-09-24 18:30 UTC (permalink / raw) To: qemu-devel; +Cc: pmoore, coreyb, anthony, Eduardo Otubo From: Eduardo Otubo <otubo@linux.vnet.ibm.com> This was causing Qemu process to hang when using -sandbox on as discribed on RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=1004175 Signed-off-by: Eduardo Otubo <otubo@linux.vnet.ibm.com> Tested-by: Paul Moore <pmoore@redhat.com> Acked-by: Paul Moore <pmoore@redhat.com> --- qemu-seccomp.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/qemu-seccomp.c b/qemu-seccomp.c index 37d38f8..69cee44 100644 --- a/qemu-seccomp.c +++ b/qemu-seccomp.c @@ -90,6 +90,7 @@ static const struct QemuSeccompSyscall seccomp_whitelist[] = { { SCMP_SYS(getuid), 245 }, { SCMP_SYS(geteuid), 245 }, { SCMP_SYS(timer_create), 245 }, + { SCMP_SYS(times), 245 }, { SCMP_SYS(exit), 245 }, { SCMP_SYS(clock_gettime), 245 }, { SCMP_SYS(time), 245 }, -- 1.7.1 ^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 00/01] seccomp: trivial changes 2013-09-24 18:30 [Qemu-devel] [PULL 00/01] seccomp: trivial changes Eduardo Otubo 2013-09-24 18:30 ` [Qemu-devel] [PULL 01/01] seccomp: fine tuning whitelist by adding times() Eduardo Otubo @ 2013-10-01 20:04 ` Paul Moore 2013-10-02 1:30 ` Anthony Liguori 1 sibling, 1 reply; 4+ messages in thread From: Paul Moore @ 2013-10-01 20:04 UTC (permalink / raw) To: Eduardo Otubo, anthony; +Cc: coreyb, qemu-devel On Tuesday, September 24, 2013 03:30:57 PM Eduardo Otubo wrote: > Anthony, > > The following changes since commit f828a4c8faa118e0ebab3e353ac6840f3b2a0318: > > Merge remote-tracking branch 'stefanha/tracing' into staging (2013-09-23 > 11:53:22 -0500) > > are available in the git repository at: > > git://github.com/otubo/qemu.git seccomp > > Eduardo Otubo (1): > seccomp: fine tuning whitelist by adding times() > > qemu-seccomp.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) Just a follow-up ping to see where things stand on this bugfix ... -- paul moore security and virtualization @ redhat ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PULL 00/01] seccomp: trivial changes 2013-10-01 20:04 ` [Qemu-devel] [PULL 00/01] seccomp: trivial changes Paul Moore @ 2013-10-02 1:30 ` Anthony Liguori 0 siblings, 0 replies; 4+ messages in thread From: Anthony Liguori @ 2013-10-02 1:30 UTC (permalink / raw) To: Paul Moore; +Cc: coreyb, qemu-devel, Eduardo Otubo [-- Attachment #1: Type: text/plain, Size: 926 bytes --] On Tue, Oct 1, 2013 at 3:04 PM, Paul Moore <pmoore@redhat.com> wrote: > On Tuesday, September 24, 2013 03:30:57 PM Eduardo Otubo wrote: > > Anthony, > > > > The following changes since commit > f828a4c8faa118e0ebab3e353ac6840f3b2a0318: > > > > Merge remote-tracking branch 'stefanha/tracing' into staging > (2013-09-23 > > 11:53:22 -0500) > > > > are available in the git repository at: > > > > git://github.com/otubo/qemu.git seccomp > > > > Eduardo Otubo (1): > > seccomp: fine tuning whitelist by adding times() > > > > qemu-seccomp.c | 1 + > > 1 files changed, 1 insertions(+), 0 deletions(-) > > Just a follow-up ping to see where things stand on this bugfix ... > First time pull requests take a little more time due to a security process I follow. Bare with me, I should have it processed in the next couple days. Regards, Anthony Liguori -- > paul moore > security and virtualization @ redhat > > [-- Attachment #2: Type: text/html, Size: 1735 bytes --] ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2013-10-02 1:31 UTC | newest] Thread overview: 4+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2013-09-24 18:30 [Qemu-devel] [PULL 00/01] seccomp: trivial changes Eduardo Otubo 2013-09-24 18:30 ` [Qemu-devel] [PULL 01/01] seccomp: fine tuning whitelist by adding times() Eduardo Otubo 2013-10-01 20:04 ` [Qemu-devel] [PULL 00/01] seccomp: trivial changes Paul Moore 2013-10-02 1:30 ` Anthony Liguori
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).