From: Eduardo Otubo <eduardo.otubo@profitbricks.com>
To: Namsun Ch'o <namnamc@Safe-mail.net>,
berrange@redhat.com, qemu-devel@nongnu.org, pmoore@redhat.com
Subject: Re: [Qemu-devel] [PATCH v3] Add argument filters to the seccomp sandbox
Date: Fri, 2 Oct 2015 16:14:38 +0200 [thread overview]
Message-ID: <20151002141438.GC25464@vader> (raw)
In-Reply-To: <20150929152244.GA10053@vader>
[-- Attachment #1: Type: text/plain, Size: 4687 bytes --]
On Tue, Sep 29, 2015 at 05=22=44PM +0200, Eduardo Otubo wrote:
> On Fri, Sep 25, 2015 at 12=50=36AM -0400, Namsun Ch'o wrote:
> > Here's the v3 patch. I applied it and compiled QEMU, and it worked fine.
> >
> > Changes so far:
> > v1
> > - Created argument filters for the madvise, shmget, and shmctl syscalls.
> > v1 -> v2
> > - Added 5 new madvise flags which were present in the source code but not in
> > the strace which I generated.
> > - Added IP_CREAT|0600 to shmget, which Daniel Berrange pointed out was
> > present in GTK2, which QEMU uses but does not call directly.
> > v2 -> v3
> > - Replaced include asm/mman-common.h with sys/mman.h which is more proper.
> > - Fixed a stupid typo where I had IP_CREAT instead of IPC_CREAT.
> > - Removed the comma on the last entry of the madvise_flags array.
> > - Removed one madvise flag (MADV_INVALID) which doesn't exist, apparently.
> >
> > Signed-off-by: Namsun Ch'o <namnamc@safe-mail.net>
> > ---
> > diff --git a/qemu-seccomp.c b/qemu-seccomp.c
> > index f9de0d3..a353ef9 100644
> > --- a/qemu-seccomp.c
> > +++ b/qemu-seccomp.c
> > @@ -14,6 +14,8 @@
> > */
> > #include <stdio.h>
> > #include <seccomp.h>
> > +#include <linux/ipc.h>
> > +#include <sys/mman.h>
> > #include "sysemu/seccomp.h"
> >
> > struct QemuSeccompSyscall {
> > @@ -105,7 +107,6 @@ static const struct QemuSeccompSyscall seccomp_whitelist[] = {
> > { SCMP_SYS(rt_sigreturn), 245 },
> > { SCMP_SYS(sync), 245 },
> > { SCMP_SYS(pread64), 245 },
> > - { SCMP_SYS(madvise), 245 },
> > { SCMP_SYS(set_robust_list), 245 },
> > { SCMP_SYS(lseek), 245 },
> > { SCMP_SYS(pselect6), 245 },
> > @@ -224,11 +225,9 @@ static const struct QemuSeccompSyscall seccomp_whitelist[] = {
> > { SCMP_SYS(arch_prctl), 240 },
> > { SCMP_SYS(mkdir), 240 },
> > { SCMP_SYS(fchmod), 240 },
> > - { SCMP_SYS(shmget), 240 },
> > { SCMP_SYS(shmat), 240 },
> > { SCMP_SYS(shmdt), 240 },
> > { SCMP_SYS(timerfd_create), 240 },
> > - { SCMP_SYS(shmctl), 240 },
> > { SCMP_SYS(mlockall), 240 },
> > { SCMP_SYS(mlock), 240 },
> > { SCMP_SYS(munlock), 240 },
> > @@ -264,6 +263,59 @@ int seccomp_start(void)
> > }
> > }
> >
> > + /* madvise */
> > + static const int madvise_flags[] = {
> > + MADV_DODUMP,
> > + MADV_DONTDUMP,
> > + MADV_UNMERGEABLE,
> > + MADV_WILLNEED,
> > + MADV_DONTFORK,
> > + MADV_DONTNEED,
> > + MADV_HUGEPAGE,
> > + MADV_MERGEABLE
> > + };
> > + for (i = 0; i < ARRAY_SIZE(madvise_flags); i++) {
> > + rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(madvise), 1,
> > + SCMP_A2(SCMP_CMP_EQ, madvise_flags[i]));
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > + }
> > + rc = seccomp_syscall_priority(ctx, SCMP_SYS(madvise), 245);
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > +
> > + /* shmget */
> > + rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(shmget), 2,
> > + SCMP_A0(SCMP_CMP_EQ, IPC_PRIVATE),
> > + SCMP_A2(SCMP_CMP_EQ, IPC_CREAT|0777));
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > + rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(shmget), 2,
> > + SCMP_A0(SCMP_CMP_EQ, IPC_PRIVATE),
> > + SCMP_A2(SCMP_CMP_EQ, IPC_CREAT|0600));
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > + rc = seccomp_syscall_priority(ctx, SCMP_SYS(shmget), 240);
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > +
> > + /* shmctl */
> > + rc = seccomp_rule_add(ctx, SCMP_ACT_ALLOW, SCMP_SYS(shmctl), 2,
> > + SCMP_A1(SCMP_CMP_EQ, IPC_RMID),
> > + SCMP_A2(SCMP_CMP_EQ, 0));
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > + rc = seccomp_syscall_priority(ctx, SCMP_SYS(shmctl), 240);
> > + if (rc < 0) {
> > + goto seccomp_return;
> > + }
> > +
> > rc = seccomp_load(ctx);
> >
> > seccomp_return:
>
> This looks good now.
> Thanks for your contribution.
>
> Acked-by: Eduardo Otubo <eduardo.otubo@profitbricks.com>
>
> ps.: I'll create a pull request with all changes made so far on Friday.
>
The pull request will be delayed a little bit due to some new patches
incoming. Let's just set an agreement on how to approach regarding the
"-runas and -chroot" patch and will prepare just a single batch for pull
reuqest to Peter.
Regards,
--
Eduardo Otubo
ProfitBricks GmbH
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
next prev parent reply other threads:[~2015-10-02 14:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-25 4:50 [Qemu-devel] [PATCH v3] Add argument filters to the seccomp sandbox Namsun Ch'o
2015-09-29 15:22 ` Eduardo Otubo
2015-10-02 14:14 ` Eduardo Otubo [this message]
-- strict thread matches above, loose matches on Subject: below --
2015-09-30 8:40 Namsun Ch'o
2015-09-30 8:45 ` Daniel P. Berrange
2015-10-04 4:15 Namsun Ch'o
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20151002141438.GC25464@vader \
--to=eduardo.otubo@profitbricks.com \
--cc=berrange@redhat.com \
--cc=namnamc@Safe-mail.net \
--cc=pmoore@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).