qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH-V2 22/24] virtio-9p: Use lchown which won't follow s


From: Venkateswararao Jujjuri (JV)
Subject: [Qemu-devel] [PATCH-V2 22/24] virtio-9p: Use lchown which won't follow symlink
Date: Wed, 21 Jul 2010 09:04:57 -0700

From: Aneesh Kumar K.V <address@hidden>

We should always use functions which don't follow
symlink on the server

Signed-off-by: Aneesh Kumar K.V <address@hidden>
Signed-off-by: Venkateswararao Jujjuri <address@hidden>
---
 hw/virtio-9p-local.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/hw/virtio-9p-local.c b/hw/virtio-9p-local.c
index 67f12ad..3aaf4b7 100644
--- a/hw/virtio-9p-local.c
+++ b/hw/virtio-9p-local.c
@@ -101,7 +101,7 @@ static int local_post_create_passthrough(FsContext *fs_ctx, 
const char *path,
     if (chmod(rpath(fs_ctx, path), credp->fc_mode & 07777) < 0) {
         return -1;
     }
-    if (chown(rpath(fs_ctx, path), credp->fc_uid, credp->fc_gid) < 0) {
+    if (lchown(rpath(fs_ctx, path), credp->fc_uid, credp->fc_gid) < 0) {
         /*
          * If we fail to change ownership and if we are
          * using security model none. Ignore the error
-- 
1.6.5.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]