From: "Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
To: penberg@kernel.org
Cc: kvm@vger.kernel.org,
"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>
Subject: [PATCH 3/5] tools/kvm/9p: Don't follow symlink on server
Date: Sat, 18 Jun 2011 23:19:06 +0530 [thread overview]
Message-ID: <1308419348-31934-3-git-send-email-aneesh.kumar@linux.vnet.ibm.com> (raw)
In-Reply-To: <1308419348-31934-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com>
Use lstat instead of stat
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
---
tools/kvm/virtio/9p.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/tools/kvm/virtio/9p.c b/tools/kvm/virtio/9p.c
index 209760b..3172c1a 100644
--- a/tools/kvm/virtio/9p.c
+++ b/tools/kvm/virtio/9p.c
@@ -227,7 +227,7 @@ static bool virtio_p9_open(struct p9_dev *p9dev, struct p9_msg *msg,
struct p9_fid *new_fid = &p9dev->fids[topen->fid];
struct stat st;
- if (stat(new_fid->abs_path, &st) < 0)
+ if (lstat(new_fid->abs_path, &st) < 0)
return false;
st2qid(&st, &ropen->qid);
@@ -274,7 +274,7 @@ static bool virtio_p9_create(struct p9_dev *p9dev, struct p9_msg *msg,
fid->fd = open(fid->abs_path, omode2uflags(mode) | O_CREAT, 0777);
}
- if (stat(fid->abs_path, &st) < 0)
+ if (lstat(fid->abs_path, &st) < 0)
return false;
st2qid(&st, &rcreate->qid);
@@ -308,7 +308,7 @@ static bool virtio_p9_walk(struct p9_dev *p9dev, struct p9_msg *msg,
/* Format the new path we're 'walk'ing into */
sprintf(tmp, "%s/%.*s", fid->path, str->len, (char *)&str->str);
- if (stat(rel_to_abs(p9dev, tmp, full_path), &st) < 0)
+ if (lstat(rel_to_abs(p9dev, tmp, full_path), &st) < 0)
break;
st2qid(&st, &rwalk->wqids[i]);
@@ -344,7 +344,7 @@ static bool virtio_p9_attach(struct p9_dev *p9dev, struct p9_msg *msg,
for (i = 0; i < VIRTIO_P9_MAX_FID; i++)
p9dev->fids[i].fid = P9_NOFID;
- if (stat(p9dev->root_dir, &st) < 0)
+ if (lstat(p9dev->root_dir, &st) < 0)
return false;
st2qid(&st, &rattach->qid);
@@ -421,7 +421,7 @@ static bool virtio_p9_read(struct p9_dev *p9dev, struct p9_msg *msg,
while (cur) {
u32 read;
- stat(rel_to_abs(p9dev, cur->d_name, full_path), &st);
+ lstat(rel_to_abs(p9dev, cur->d_name, full_path), &st);
read = virtio_p9_fill_stat(p9dev, cur->d_name,
&st, rstat);
rread->count += read;
@@ -453,7 +453,7 @@ static bool virtio_p9_stat(struct p9_dev *p9dev, struct p9_msg *msg,
struct p9_fid *fid = &p9dev->fids[tstat->fid];
u32 ret;
- if (stat(fid->abs_path, &st) < 0)
+ if (lstat(fid->abs_path, &st) < 0)
return false;
ret = virtio_p9_fill_stat(p9dev, fid->path, &st, rstat);
--
1.7.4.1
next prev parent reply other threads:[~2011-06-18 17:49 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-06-18 17:49 [PATCH 1/5] tools/kvm/9p: Use the same #define as the kernel Aneesh Kumar K.V
2011-06-18 17:49 ` [PATCH 2/5] tools/kvm/virtio: Add new iov helper Aneesh Kumar K.V
2011-06-18 17:49 ` Aneesh Kumar K.V [this message]
2011-06-18 18:51 ` [PATCH 3/5] tools/kvm/9p: Don't follow symlink on server Sasha Levin
2011-06-19 5:17 ` Aneesh Kumar K.V
2011-06-19 6:41 ` Sasha Levin
2011-06-19 9:11 ` Aneesh Kumar K.V
2011-06-18 17:49 ` [PATCH 4/5] tools/kvm/9p: Fix the pdu len Aneesh Kumar K.V
2011-06-18 18:51 ` Sasha Levin
2011-06-19 5:11 ` Aneesh Kumar K.V
2011-06-19 6:41 ` Sasha Levin
2011-06-18 17:49 ` [PATCH 5/5] tools/kvm/9p: Simplify the handler Aneesh Kumar K.V
2011-06-18 18:51 ` Sasha Levin
2011-06-19 5:13 ` Aneesh Kumar K.V
2011-06-19 6:41 ` Sasha Levin
2011-06-18 18:50 ` [PATCH 1/5] tools/kvm/9p: Use the same #define as the kernel Sasha Levin
2011-06-19 5:14 ` Aneesh Kumar K.V
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=1308419348-31934-3-git-send-email-aneesh.kumar@linux.vnet.ibm.com \
--to=aneesh.kumar@linux.vnet.ibm.com \
--cc=kvm@vger.kernel.org \
--cc=penberg@kernel.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