From: Greg Kurz <groug@kaod.org>
To: Sebastian Hasler <sebastian.hasler@stuvus.uni-stuttgart.de>
Cc: virtio-fs@redhat.com, qemu-devel@nongnu.org
Subject: Re: [Virtio-fs] [PATCH v2] virtiofsd: Do not support blocking flock
Date: Mon, 17 Jan 2022 18:08:55 +0100 [thread overview]
Message-ID: <20220117180855.6353fc05@bahia> (raw)
In-Reply-To: <20220113153249.710216-1-sebastian.hasler@stuvus.uni-stuttgart.de>
On Thu, 13 Jan 2022 16:32:49 +0100
Sebastian Hasler <sebastian.hasler@stuvus.uni-stuttgart.de> wrote:
> With the current implementation, blocking flock can lead to
> deadlock. Thus, it's better to return EOPNOTSUPP if a user attempts
> to perform a blocking flock request.
>
> Signed-off-by: Sebastian Hasler <sebastian.hasler@stuvus.uni-stuttgart.de>
> ---
Reviewed-by: Greg Kurz <groug@kaod.org>
> tools/virtiofsd/passthrough_ll.c | 9 +++++++++
> 1 file changed, 9 insertions(+)
>
> diff --git a/tools/virtiofsd/passthrough_ll.c b/tools/virtiofsd/passthrough_ll.c
> index 64b5b4fbb1..faa62278c5 100644
> --- a/tools/virtiofsd/passthrough_ll.c
> +++ b/tools/virtiofsd/passthrough_ll.c
> @@ -2442,6 +2442,15 @@ static void lo_flock(fuse_req_t req, fuse_ino_t ino, struct fuse_file_info *fi,
> int res;
> (void)ino;
>
> + if (!(op & LOCK_NB)) {
> + /*
> + * Blocking flock can deadlock as there is only one thread
> + * serving the queue.
> + */
> + fuse_reply_err(req, EOPNOTSUPP);
> + return;
> + }
> +
> res = flock(lo_fi_fd(req, fi), op);
>
> fuse_reply_err(req, res == -1 ? errno : 0);
next prev parent reply other threads:[~2022-01-17 17:10 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-13 15:32 [PATCH v2] virtiofsd: Do not support blocking flock Sebastian Hasler
2022-01-14 18:20 ` [Virtio-fs] " Vivek Goyal
2022-01-17 17:08 ` Greg Kurz [this message]
2022-02-15 19:56 ` 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=20220117180855.6353fc05@bahia \
--to=groug@kaod.org \
--cc=qemu-devel@nongnu.org \
--cc=sebastian.hasler@stuvus.uni-stuttgart.de \
--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 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).