* [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
@ 2011-04-25 17:54 Sassan Panahinejad
2011-04-26 9:18 ` Stefan Hajnoczi
0 siblings, 1 reply; 9+ messages in thread
From: Sassan Panahinejad @ 2011-04-25 17:54 UTC (permalink / raw)
To: qemu-devel; +Cc: Sassan Panahinejad
v9fs_fsync and possibly others break when asked to operate on a directory.
It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
This error can result in guest applications failing (in my case it was dpkg).
This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
---
hw/virtio-9p.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 7e29535..09fb5da 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1875,7 +1875,10 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
v9fs_post_do_fsync(s, pdu, err);
return;
}
- err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ if (fidp->fid_type == P9_FID_DIR)
+ err = v9fs_do_fsync(s, dirfd(fidp->fs.dir), datasync);
+ else
+ err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
v9fs_post_do_fsync(s, pdu, err);
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-25 17:54 [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync Sassan Panahinejad
@ 2011-04-26 9:18 ` Stefan Hajnoczi
2011-04-26 12:14 ` Sassan Panahinejad
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Hajnoczi @ 2011-04-26 9:18 UTC (permalink / raw)
To: Sassan Panahinejad; +Cc: Venkateswararao Jujjuri (JV), qemu-devel
On Mon, Apr 25, 2011 at 6:54 PM, Sassan Panahinejad <sassan@sassan.me.uk> wrote:
Thanks for finding and fixing this. Please see this wiki page on
contributing patches to QEMU:
http://wiki.qemu.org/Contribute/SubmitAPatch
> v9fs_fsync and possibly others break when asked to operate on a directory.
> It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
> This error can result in guest applications failing (in my case it was dpkg).
> This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
> ---
> hw/virtio-9p.c | 5 ++++-
> 1 files changed, 4 insertions(+), 1 deletions(-)
Missing Signed-off-by:.
> diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
> index 7e29535..09fb5da 100644
> --- a/hw/virtio-9p.c
> +++ b/hw/virtio-9p.c
> @@ -1875,7 +1875,10 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
> v9fs_post_do_fsync(s, pdu, err);
> return;
> }
> - err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
> + if (fidp->fid_type == P9_FID_DIR)
> + err = v9fs_do_fsync(s, dirfd(fidp->fs.dir), datasync);
> + else
> + err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
Please follow QEMU coding style and always use {} with if ... else.
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 9:18 ` Stefan Hajnoczi
@ 2011-04-26 12:14 ` Sassan Panahinejad
2011-04-26 12:58 ` Stefan Hajnoczi
0 siblings, 1 reply; 9+ messages in thread
From: Sassan Panahinejad @ 2011-04-26 12:14 UTC (permalink / raw)
To: qemu-devel; +Cc: Sassan Panahinejad
v9fs_fsync and possibly others break when asked to operate on a directory.
It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
This error can result in guest applications failing (in my case it was dpkg).
This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
Signed-off-by: Sassan Panahinejad <sassan@sassan.me.uk>
---
hw/virtio-9p.c | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 7e29535..cc4fdc8 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1875,7 +1875,11 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
v9fs_post_do_fsync(s, pdu, err);
return;
}
- err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ if (fidp->fid_type == P9_FID_DIR) {
+ err = v9fs_do_fsync(s, dirfd(fidp->fs.dir), datasync);
+ } else {
+ err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ }
v9fs_post_do_fsync(s, pdu, err);
}
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 12:14 ` Sassan Panahinejad
@ 2011-04-26 12:58 ` Stefan Hajnoczi
2011-04-26 13:29 ` Sassan Panahinejad
0 siblings, 1 reply; 9+ messages in thread
From: Stefan Hajnoczi @ 2011-04-26 12:58 UTC (permalink / raw)
To: Sassan Panahinejad; +Cc: Venkateswararao Jujjuri (JV), qemu-devel
On Tue, Apr 26, 2011 at 1:14 PM, Sassan Panahinejad <sassan@sassan.me.uk> wrote:
> v9fs_fsync and possibly others break when asked to operate on a directory.
> It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
> This error can result in guest applications failing (in my case it was dpkg).
> This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
>
> Signed-off-by: Sassan Panahinejad <sassan@sassan.me.uk>
> ---
> hw/virtio-9p.c | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
>
> diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
> index 7e29535..cc4fdc8 100644
> --- a/hw/virtio-9p.c
> +++ b/hw/virtio-9p.c
> @@ -1875,7 +1875,11 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
> v9fs_post_do_fsync(s, pdu, err);
> return;
> }
> - err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
> + if (fidp->fid_type == P9_FID_DIR) {
> + err = v9fs_do_fsync(s, dirfd(fidp->fs.dir), datasync);
> + } else {
> + err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
> + }
What about P9_FID_XATTR, seems like we have the same issue there too?
wstat, lock, and getlock need closer auditing and perhaps fixing.
Stefan
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 12:58 ` Stefan Hajnoczi
@ 2011-04-26 13:29 ` Sassan Panahinejad
2011-04-26 14:25 ` Venkateswararao Jujjuri
2011-04-26 16:51 ` Sassan Panahinejad
0 siblings, 2 replies; 9+ messages in thread
From: Sassan Panahinejad @ 2011-04-26 13:29 UTC (permalink / raw)
To: Stefan Hajnoczi; +Cc: Venkateswararao Jujjuri (JV), qemu-devel
[-- Attachment #1: Type: text/plain, Size: 695 bytes --]
On 26 April 2011 13:58, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> What about P9_FID_XATTR, seems like we have the same issue there too?
>
> wstat, lock, and getlock need closer auditing and perhaps fixing.
>
> Stefan
>
Sorry, forgot to hit reply-to-all.
Yes, it is probable that those functions will suffer from the same bug.
I will have to study XATTR and see how that will be affected. I don't know
whether it is possible for these functions to be called for XATTR, and if it
is then I do not know the proper way to handle it.
Perhaps we should have some function or macro to obtain the correct FD from
an fidp structure, which could be used for fsync, wstat, lock and getlock?
Sassan
[-- Attachment #2: Type: text/html, Size: 1076 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 13:29 ` Sassan Panahinejad
@ 2011-04-26 14:25 ` Venkateswararao Jujjuri
2011-04-26 16:51 ` Sassan Panahinejad
1 sibling, 0 replies; 9+ messages in thread
From: Venkateswararao Jujjuri @ 2011-04-26 14:25 UTC (permalink / raw)
To: qemu-devel
On 04/26/2011 06:29 AM, Sassan Panahinejad wrote:
> I will have to study XATTR and see how that will be affected. I don't
> know whether it is possible for these functions to be called for
> XATTR, and if it is then I do not know the proper way to handle it.
> Perhaps we should have some function or macro to obtain the correct FD
> from an fidp structure, which could be used for fsync, wstat, lock and
> getlock?
I agree; we need some level of macro for this. How about doing that as
part of this patch itself?
Thanks,
JV
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 13:29 ` Sassan Panahinejad
2011-04-26 14:25 ` Venkateswararao Jujjuri
@ 2011-04-26 16:51 ` Sassan Panahinejad
2011-04-26 21:12 ` Venkateswararao Jujjuri
1 sibling, 1 reply; 9+ messages in thread
From: Sassan Panahinejad @ 2011-04-26 16:51 UTC (permalink / raw)
To: qemu-devel; +Cc: Sassan Panahinejad, jvrao
v9fs_fsync and possibly others break when asked to operate on a directory.
It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
This error can result in guest applications failing (in my case it was dpkg).
This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
Signed-off-by: Sassan Panahinejad <sassan@sassan.me.uk>
---
Here I've implemented it as a function. If you'd prefer a macro or inline function then let me know.
Thanks
Sassan
hw/virtio-9p.c | 43 +++++++++++++++++++++++++++++++++++++------
1 files changed, 37 insertions(+), 6 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 7e29535..26be0fc 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1860,6 +1860,18 @@ static void v9fs_post_do_fsync(V9fsState *s, V9fsPDU *pdu, int err)
complete_pdu(s, pdu, err);
}
+static int v9fs_get_fd(V9fsFidState *fidp)
+{
+ switch (fidp->fid_type) {
+ case P9_FID_FILE:
+ return fidp->fs.fd;
+ case P9_FID_DIR:
+ return dirfd(fidp->fs.dir);
+ default:
+ return -1;
+ }
+}
+
static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
{
int32_t fid;
@@ -1867,6 +1879,7 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
V9fsFidState *fidp;
int datasync;
int err;
+ int fd;
pdu_unmarshal(pdu, offset, "dd", &fid, &datasync);
fidp = lookup_fid(s, fid);
@@ -1875,7 +1888,11 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
v9fs_post_do_fsync(s, pdu, err);
return;
}
- err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ if ((fd = v9fs_get_fd(fidp)) >= 0) {
+ err = v9fs_do_fsync(s, fd, datasync);
+ } else {
+ err = -EINVAL;
+ }
v9fs_post_do_fsync(s, pdu, err);
}
@@ -2984,6 +3001,7 @@ static void v9fs_wstat(V9fsState *s, V9fsPDU *pdu)
int32_t fid;
V9fsWstatState *vs;
int err = 0;
+ int fd;
vs = qemu_malloc(sizeof(*vs));
vs->pdu = pdu;
@@ -2999,7 +3017,10 @@ static void v9fs_wstat(V9fsState *s, V9fsPDU *pdu)
/* do we need to sync the file? */
if (donttouch_stat(&vs->v9stat)) {
- err = v9fs_do_fsync(s, vs->fidp->fs.fd, 0);
+ if ((fd = v9fs_get_fd(vs->fidp)) >= 0) {
+ err = v9fs_do_fsync(s, fd, 0);
+ } else
+ err = -EINVAL;
v9fs_wstat_post_fsync(s, vs, err);
return;
}
@@ -3176,6 +3197,7 @@ static void v9fs_lock(V9fsState *s, V9fsPDU *pdu)
{
int32_t fid, err = 0;
V9fsLockState *vs;
+ int fd;
vs = qemu_mallocz(sizeof(*vs));
vs->pdu = pdu;
@@ -3198,8 +3220,12 @@ static void v9fs_lock(V9fsState *s, V9fsPDU *pdu)
err = -ENOENT;
goto out;
}
-
- err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ if ((fd = v9fs_get_fd(vs->fidp)) >= 0) {
+ err = v9fs_do_fstat(s, fd, &vs->stbuf);
+ } else {
+ err = -EINVAL;
+ goto out;
+ }
if (err < 0) {
err = -errno;
goto out;
@@ -3221,6 +3247,7 @@ static void v9fs_getlock(V9fsState *s, V9fsPDU *pdu)
{
int32_t fid, err = 0;
V9fsGetlockState *vs;
+ int fd;
vs = qemu_mallocz(sizeof(*vs));
vs->pdu = pdu;
@@ -3236,8 +3263,12 @@ static void v9fs_getlock(V9fsState *s, V9fsPDU *pdu)
err = -ENOENT;
goto out;
}
-
- err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ if ((fd = v9fs_get_fd(vs->fidp)) >= 0) {
+ err = v9fs_do_fstat(s, fd, &vs->stbuf);
+ } else {
+ err = -EINVAL;
+ goto out;
+ }
if (err < 0) {
err = -errno;
goto out;
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 16:51 ` Sassan Panahinejad
@ 2011-04-26 21:12 ` Venkateswararao Jujjuri
2011-04-27 11:41 ` Sassan Panahinejad
0 siblings, 1 reply; 9+ messages in thread
From: Venkateswararao Jujjuri @ 2011-04-26 21:12 UTC (permalink / raw)
To: qemu-devel, Stefan Hajnoczi
[-- Attachment #1: Type: text/plain, Size: 4554 bytes --]
On 04/26/2011 09:51 AM, Sassan Panahinejad wrote:
> v9fs_fsync and possibly others break when asked to operate on a directory.
> It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
> This error can result in guest applications failing (in my case it was dpkg).
> This patch fixes the issue, although there may be other, similar bugs in virtio-9p.
>
> Signed-off-by: Sassan Panahinejad<sassan@sassan.me.uk>
> ---
>
> Here I've implemented it as a function. If you'd prefer a macro or inline function then let me know.
>
> Thanks
> Sassan
Please put your commentary on the top. After "---" you should only
expect code diff.
> hw/virtio-9p.c | 43 +++++++++++++++++++++++++++++++++++++------
> 1 files changed, 37 insertions(+), 6 deletions(-)
>
> diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
> index 7e29535..26be0fc 100644
> --- a/hw/virtio-9p.c
> +++ b/hw/virtio-9p.c
> @@ -1860,6 +1860,18 @@ static void v9fs_post_do_fsync(V9fsState *s, V9fsPDU *pdu, int err)
> complete_pdu(s, pdu, err);
> }
>
> +static int v9fs_get_fd(V9fsFidState *fidp)
> +{
> + switch (fidp->fid_type) {
> + case P9_FID_FILE:
> + return fidp->fs.fd;
> + case P9_FID_DIR:
> + return dirfd(fidp->fs.dir);
> + default:
> + return -1;
> + }
> +}
> +
> static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
> {
> int32_t fid;
> @@ -1867,6 +1879,7 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
> V9fsFidState *fidp;
> int datasync;
> int err;
> + int fd;
>
> pdu_unmarshal(pdu, offset, "dd",&fid,&datasync);
> fidp = lookup_fid(s, fid);
> @@ -1875,7 +1888,11 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
> v9fs_post_do_fsync(s, pdu, err);
> return;
> }
> - err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
> + if ((fd = v9fs_get_fd(fidp))>= 0) {
> + err = v9fs_do_fsync(s, fd, datasync);
> + } else {
> + err = -EINVAL;
> + }
> v9fs_post_do_fsync(s, pdu, err);
> }
>
> @@ -2984,6 +3001,7 @@ static void v9fs_wstat(V9fsState *s, V9fsPDU *pdu)
> int32_t fid;
> V9fsWstatState *vs;
> int err = 0;
> + int fd;
>
> vs = qemu_malloc(sizeof(*vs));
> vs->pdu = pdu;
> @@ -2999,7 +3017,10 @@ static void v9fs_wstat(V9fsState *s, V9fsPDU *pdu)
>
> /* do we need to sync the file? */
> if (donttouch_stat(&vs->v9stat)) {
> - err = v9fs_do_fsync(s, vs->fidp->fs.fd, 0);
> + if ((fd = v9fs_get_fd(vs->fidp))>= 0) {
> + err = v9fs_do_fsync(s, fd, 0);
> + } else
> + err = -EINVAL;
> v9fs_wstat_post_fsync(s, vs, err);
> return;
> }
> @@ -3176,6 +3197,7 @@ static void v9fs_lock(V9fsState *s, V9fsPDU *pdu)
> {
> int32_t fid, err = 0;
> V9fsLockState *vs;
> + int fd;
>
> vs = qemu_mallocz(sizeof(*vs));
> vs->pdu = pdu;
> @@ -3198,8 +3220,12 @@ static void v9fs_lock(V9fsState *s, V9fsPDU *pdu)
> err = -ENOENT;
> goto out;
> }
> -
> - err = v9fs_do_fstat(s, vs->fidp->fs.fd,&vs->stbuf);
> + if ((fd = v9fs_get_fd(vs->fidp))>= 0) {
> + err = v9fs_do_fstat(s, fd,&vs->stbuf);
> + } else {
> + err = -EINVAL;
> + goto out;
> + }
I think we need a different handle for lock and getlock.
If the operation is on a dir we need to return
EISDIR
The /cmd/ parameter is F_GETLK, F_GETLK64, F_SETLK, F_SETLK64,
F_SETLKW, or F_SETLKW64, and /fildes/ refers to a directory.
Since the handling is different, I am not sure if the separate function
makes any sense now.
May be go back to your initial check for sync and for locks, if the
fid is a dir type then EISDIR
otherwise EINVAL.
Thanks,
JV
> if (err< 0) {
> err = -errno;
> goto out;
> @@ -3221,6 +3247,7 @@ static void v9fs_getlock(V9fsState *s, V9fsPDU *pdu)
> {
> int32_t fid, err = 0;
> V9fsGetlockState *vs;
> + int fd;
>
> vs = qemu_mallocz(sizeof(*vs));
> vs->pdu = pdu;
> @@ -3236,8 +3263,12 @@ static void v9fs_getlock(V9fsState *s, V9fsPDU *pdu)
> err = -ENOENT;
> goto out;
> }
> -
> - err = v9fs_do_fstat(s, vs->fidp->fs.fd,&vs->stbuf);
> + if ((fd = v9fs_get_fd(vs->fidp))>= 0) {
> + err = v9fs_do_fstat(s, fd,&vs->stbuf);
> + } else {
> + err = -EINVAL;
> + goto out;
> + }
> if (err< 0) {
> err = -errno;
> goto out;
[-- Attachment #2: Type: text/html, Size: 5588 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync
2011-04-26 21:12 ` Venkateswararao Jujjuri
@ 2011-04-27 11:41 ` Sassan Panahinejad
0 siblings, 0 replies; 9+ messages in thread
From: Sassan Panahinejad @ 2011-04-27 11:41 UTC (permalink / raw)
To: qemu-devel; +Cc: Sassan Panahinejad, jvrao, stefanha
JV: I hope I have correctly understood your description of how lock/getlock should behave.
v9fs_fsync and possibly others break when asked to operate on a directory.
It does not check fid_type to see if it is operating on a directory and therefore accesses the wrong element of the fs union.
This error can result in guest applications failing (in my case it was dpkg).
This patch fixes the issue and implements correct behaviour for fsync, wstat, lock and getlock.
Signed-off-by: Sassan Panahinejad <sassan@sassan.me.uk>
---
hw/virtio-9p.c | 36 ++++++++++++++++++++++++++++++++----
1 files changed, 32 insertions(+), 4 deletions(-)
diff --git a/hw/virtio-9p.c b/hw/virtio-9p.c
index 7e29535..2530f6d 100644
--- a/hw/virtio-9p.c
+++ b/hw/virtio-9p.c
@@ -1875,7 +1875,13 @@ static void v9fs_fsync(V9fsState *s, V9fsPDU *pdu)
v9fs_post_do_fsync(s, pdu, err);
return;
}
- err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ if (fidp->fid_type == P9_FID_FILE) {
+ err = v9fs_do_fsync(s, fidp->fs.fd, datasync);
+ } else if (fidp->fid_type == P9_FID_DIR) {
+ err = v9fs_do_fsync(s, dirfd(fidp->fs.dir), datasync);
+ } else {
+ err = -EINVAL;
+ }
v9fs_post_do_fsync(s, pdu, err);
}
@@ -2999,7 +3005,13 @@ static void v9fs_wstat(V9fsState *s, V9fsPDU *pdu)
/* do we need to sync the file? */
if (donttouch_stat(&vs->v9stat)) {
- err = v9fs_do_fsync(s, vs->fidp->fs.fd, 0);
+ if (vs->fidp->fid_type == P9_FID_FILE) {
+ err = v9fs_do_fsync(s, vs->fidp->fs.fd, 0);
+ } else if (vs->fidp->fid_type == P9_FID_DIR) {
+ err = v9fs_do_fsync(s, dirfd(vs->fidp->fs.dir), 0);
+ } else {
+ err = -EINVAL;
+ }
v9fs_wstat_post_fsync(s, vs, err);
return;
}
@@ -3199,7 +3211,15 @@ static void v9fs_lock(V9fsState *s, V9fsPDU *pdu)
goto out;
}
- err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ if (vs->fidp->fid_type == P9_FID_FILE) {
+ err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ } else if (vs->fidp->fid_type == P9_FID_DIR) {
+ err = -EISDIR;
+ goto out;
+ } else {
+ err = -EINVAL;
+ goto out;
+ }
if (err < 0) {
err = -errno;
goto out;
@@ -3237,7 +3257,15 @@ static void v9fs_getlock(V9fsState *s, V9fsPDU *pdu)
goto out;
}
- err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ if (vs->fidp->fid_type == P9_FID_FILE) {
+ err = v9fs_do_fstat(s, vs->fidp->fs.fd, &vs->stbuf);
+ } else if (vs->fidp->fid_type == P9_FID_DIR) {
+ err = -EISDIR;
+ goto out;
+ } else {
+ err = -EINVAL;
+ goto out;
+ }
if (err < 0) {
err = -errno;
goto out;
--
1.7.0.4
^ permalink raw reply related [flat|nested] 9+ messages in thread
end of thread, other threads:[~2011-04-27 11:42 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-25 17:54 [Qemu-devel] [PATCH] Fix bug with virtio-9p fsync Sassan Panahinejad
2011-04-26 9:18 ` Stefan Hajnoczi
2011-04-26 12:14 ` Sassan Panahinejad
2011-04-26 12:58 ` Stefan Hajnoczi
2011-04-26 13:29 ` Sassan Panahinejad
2011-04-26 14:25 ` Venkateswararao Jujjuri
2011-04-26 16:51 ` Sassan Panahinejad
2011-04-26 21:12 ` Venkateswararao Jujjuri
2011-04-27 11:41 ` Sassan Panahinejad
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).