All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vivek Goyal <vgoyal@redhat.com>
To: qemu-devel@nongnu.org, virtio-fs@redhat.com
Cc: miklos@szeredi.hu, vgoyal@redhat.com
Subject: [Virtio-fs] [PATCH v7 4/7] virtiofsd: Add umask to seccom allow list
Date: Tue, 22 Jun 2021 11:08:49 -0400	[thread overview]
Message-ID: <20210622150852.1507204-5-vgoyal@redhat.com> (raw)
In-Reply-To: <20210622150852.1507204-1-vgoyal@redhat.com>

Patches in this series  are going to make use of "umask" syscall.
So allow it.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 tools/virtiofsd/passthrough_seccomp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/virtiofsd/passthrough_seccomp.c b/tools/virtiofsd/passthrough_seccomp.c
index 62441cfcdb..f49ed94b5e 100644
--- a/tools/virtiofsd/passthrough_seccomp.c
+++ b/tools/virtiofsd/passthrough_seccomp.c
@@ -114,6 +114,7 @@ static const int syscall_allowlist[] = {
     SCMP_SYS(utimensat),
     SCMP_SYS(write),
     SCMP_SYS(writev),
+    SCMP_SYS(umask),
 };
 
 /* Syscalls used when --syslog is enabled */
-- 
2.25.4


WARNING: multiple messages have this Message-ID (diff)
From: Vivek Goyal <vgoyal@redhat.com>
To: qemu-devel@nongnu.org, virtio-fs@redhat.com
Cc: miklos@szeredi.hu, dgilbert@redhat.com, vgoyal@redhat.com,
	lhenriques@suse.de
Subject: [PATCH v7 4/7] virtiofsd: Add umask to seccom allow list
Date: Tue, 22 Jun 2021 11:08:49 -0400	[thread overview]
Message-ID: <20210622150852.1507204-5-vgoyal@redhat.com> (raw)
In-Reply-To: <20210622150852.1507204-1-vgoyal@redhat.com>

Patches in this series  are going to make use of "umask" syscall.
So allow it.

Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 tools/virtiofsd/passthrough_seccomp.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/virtiofsd/passthrough_seccomp.c b/tools/virtiofsd/passthrough_seccomp.c
index 62441cfcdb..f49ed94b5e 100644
--- a/tools/virtiofsd/passthrough_seccomp.c
+++ b/tools/virtiofsd/passthrough_seccomp.c
@@ -114,6 +114,7 @@ static const int syscall_allowlist[] = {
     SCMP_SYS(utimensat),
     SCMP_SYS(write),
     SCMP_SYS(writev),
+    SCMP_SYS(umask),
 };
 
 /* Syscalls used when --syslog is enabled */
-- 
2.25.4



  parent reply	other threads:[~2021-06-22 15:08 UTC|newest]

Thread overview: 53+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-22 15:08 [Virtio-fs] [PATCH v7 0/7] virtiofsd: Add support to enable/disable posix acls Vivek Goyal
2021-06-22 15:08 ` Vivek Goyal
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 1/7] virtiofsd: Fix fuse setxattr() API change issue Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 14:46   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 14:46     ` Dr. David Alan Gilbert
2021-06-28 14:54     ` [Virtio-fs] " Vivek Goyal
2021-06-29 12:44     ` Greg Kurz
2021-06-30 10:17       ` Dr. David Alan Gilbert
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 2/7] virtiofsd: Fix xattr operations overwriting errno Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 15:31   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 15:31     ` Dr. David Alan Gilbert
2021-06-29 13:03     ` [Virtio-fs] " Greg Kurz
2021-06-29 13:03       ` Greg Kurz
2021-06-29 13:22       ` Vivek Goyal
2021-06-29 13:22         ` Vivek Goyal
2021-06-29 14:35         ` Greg Kurz
2021-06-29 14:35           ` Greg Kurz
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 3/7] virtiofsd: Add support for extended setxattr Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 15:49   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 15:49     ` Dr. David Alan Gilbert
2021-06-28 18:28     ` [Virtio-fs] " Vivek Goyal
2021-06-28 18:28       ` Vivek Goyal
2021-06-28 18:34       ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 18:34         ` Dr. David Alan Gilbert
2021-06-22 15:08 ` Vivek Goyal [this message]
2021-06-22 15:08   ` [PATCH v7 4/7] virtiofsd: Add umask to seccom allow list Vivek Goyal
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 5/7] virtiofsd: Add capability to change/restore umask Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 16:12   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 16:12     ` Dr. David Alan Gilbert
2021-06-28 18:12     ` [Virtio-fs] " Vivek Goyal
2021-06-28 18:12       ` Vivek Goyal
2021-06-28 18:36       ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 18:36         ` Dr. David Alan Gilbert
2021-06-28 18:46         ` [Virtio-fs] " Vivek Goyal
2021-06-28 18:46           ` Vivek Goyal
2021-06-28 18:51           ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 18:51             ` Dr. David Alan Gilbert
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 6/7] virtiofsd: Switch creds, drop FSETID for system.posix_acl_access xattr Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 17:37   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 17:37     ` Dr. David Alan Gilbert
2021-06-28 17:55   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 17:55     ` Dr. David Alan Gilbert
2021-06-22 15:08 ` [Virtio-fs] [PATCH v7 7/7] virtiofsd: Add an option to enable/disable posix acls Vivek Goyal
2021-06-22 15:08   ` Vivek Goyal
2021-06-28 18:26   ` [Virtio-fs] " Dr. David Alan Gilbert
2021-06-28 18:26     ` Dr. David Alan Gilbert
2021-06-30 18:53 ` [Virtio-fs] [PATCH v7 0/7] virtiofsd: Add support " Dr. David Alan Gilbert
2021-06-30 18:53   ` Dr. David Alan Gilbert

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=20210622150852.1507204-5-vgoyal@redhat.com \
    --to=vgoyal@redhat.com \
    --cc=miklos@szeredi.hu \
    --cc=qemu-devel@nongnu.org \
    --cc=virtio-fs@redhat.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.