* [Qemu-devel] [PATCH] linux-user: break recursion loop on symlink to . or ..
@ 2009-01-19 15:30 Riku Voipio
2009-01-30 19:50 ` Aurelien Jarno
0 siblings, 1 reply; 2+ messages in thread
From: Riku Voipio @ 2009-01-19 15:30 UTC (permalink / raw)
To: qemu-devel
From: Mika Westerberg
This patch corrects bug in qemu where it contructs its
internal paths and ends up in recursion loop when filesystem
contains symlink that points to dot '.'.
(Riku: some whitespace fudging to minize diff - the whole
file needs reindenting...)
Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
---
linux-user/path.c | 37 ++++++++++++++++++++++++++++++++++++-
1 files changed, 36 insertions(+), 1 deletions(-)
diff --git a/linux-user/path.c b/linux-user/path.c
index 06b1f5f..b991af0 100644
--- a/linux-user/path.c
+++ b/linux-user/path.c
@@ -4,6 +4,7 @@
The assumption is that this area does not change.
*/
#include <sys/types.h>
+#include <assert.h>
#include <dirent.h>
#include <unistd.h>
#include <stdlib.h>
@@ -52,6 +53,38 @@ static struct pathelem *new_entry(const char *root,
#define streq(a,b) (strcmp((a), (b)) == 0)
+/*
+ * Checks whether directory entry (dent) is valid. This
+ * means that symlinks pointing to '.' and '..' should
+ * be skipped by main recursion code. Returns 1 when
+ * entry is valid.
+ */
+static int
+is_dentry_valid(const char *path, const struct dirent *dent)
+{
+ char fullpath[PATH_MAX];
+ char linkbuf[PATH_MAX];
+ ssize_t len;
+
+ assert(path != NULL);
+ assert(dent != NULL);
+
+ if (dent->d_type != DT_LNK)
+ return (1);
+
+ (void) snprintf(fullpath, sizeof (fullpath), "%s/%s",
+ path, dent->d_name);
+
+ if ((len = readlink(fullpath, linkbuf, sizeof (linkbuf) - 1)) != -1) {
+ linkbuf[len] = '\0';
+ if (streq(linkbuf, ".") || streq(linkbuf, ".."))
+ return (0);
+ }
+
+ return (1);
+}
+
+/* TODO: add recursion count check */
static struct pathelem *add_dir_maybe(struct pathelem *path)
{
DIR *dir;
@@ -61,7 +94,9 @@ static struct pathelem *add_dir_maybe(struct pathelem *path)
while ((dirent = readdir(dir)) != NULL) {
if (!streq(dirent->d_name,".") && !streq(dirent->d_name,"..")){
- path = add_entry(path, dirent->d_name);
+ if (is_dentry_valid(path->pathname, dirent)) {
+ path = add_entry(path, dirent->d_name);
+ }
}
}
closedir(dir);
--
1.5.6.5
--
"rm -rf" only sounds scary if you don't have backups
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH] linux-user: break recursion loop on symlink to . or ..
2009-01-19 15:30 [Qemu-devel] [PATCH] linux-user: break recursion loop on symlink to . or Riku Voipio
@ 2009-01-30 19:50 ` Aurelien Jarno
0 siblings, 0 replies; 2+ messages in thread
From: Aurelien Jarno @ 2009-01-30 19:50 UTC (permalink / raw)
To: Riku Voipio; +Cc: qemu-devel
On Mon, Jan 19, 2009 at 05:30:33PM +0200, Riku Voipio wrote:
> From: Mika Westerberg
>
> This patch corrects bug in qemu where it contructs its
> internal paths and ends up in recursion loop when filesystem
> contains symlink that points to dot '.'.
>
> (Riku: some whitespace fudging to minize diff - the whole
> file needs reindenting...)
>
> Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Thanks, applied.
> ---
> linux-user/path.c | 37 ++++++++++++++++++++++++++++++++++++-
> 1 files changed, 36 insertions(+), 1 deletions(-)
>
> diff --git a/linux-user/path.c b/linux-user/path.c
> index 06b1f5f..b991af0 100644
> --- a/linux-user/path.c
> +++ b/linux-user/path.c
> @@ -4,6 +4,7 @@
> The assumption is that this area does not change.
> */
> #include <sys/types.h>
> +#include <assert.h>
> #include <dirent.h>
> #include <unistd.h>
> #include <stdlib.h>
> @@ -52,6 +53,38 @@ static struct pathelem *new_entry(const char *root,
>
> #define streq(a,b) (strcmp((a), (b)) == 0)
>
> +/*
> + * Checks whether directory entry (dent) is valid. This
> + * means that symlinks pointing to '.' and '..' should
> + * be skipped by main recursion code. Returns 1 when
> + * entry is valid.
> + */
> +static int
> +is_dentry_valid(const char *path, const struct dirent *dent)
> +{
> + char fullpath[PATH_MAX];
> + char linkbuf[PATH_MAX];
> + ssize_t len;
> +
> + assert(path != NULL);
> + assert(dent != NULL);
> +
> + if (dent->d_type != DT_LNK)
> + return (1);
> +
> + (void) snprintf(fullpath, sizeof (fullpath), "%s/%s",
> + path, dent->d_name);
> +
> + if ((len = readlink(fullpath, linkbuf, sizeof (linkbuf) - 1)) != -1) {
> + linkbuf[len] = '\0';
> + if (streq(linkbuf, ".") || streq(linkbuf, ".."))
> + return (0);
> + }
> +
> + return (1);
> +}
> +
> +/* TODO: add recursion count check */
> static struct pathelem *add_dir_maybe(struct pathelem *path)
> {
> DIR *dir;
> @@ -61,7 +94,9 @@ static struct pathelem *add_dir_maybe(struct pathelem *path)
>
> while ((dirent = readdir(dir)) != NULL) {
> if (!streq(dirent->d_name,".") && !streq(dirent->d_name,"..")){
> - path = add_entry(path, dirent->d_name);
> + if (is_dentry_valid(path->pathname, dirent)) {
> + path = add_entry(path, dirent->d_name);
> + }
> }
> }
> closedir(dir);
> --
> 1.5.6.5
>
>
> --
> "rm -rf" only sounds scary if you don't have backups
>
>
>
--
Aurelien Jarno GPG: 1024D/F1BCDB73
aurelien@aurel32.net http://www.aurel32.net
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-01-30 19:50 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-19 15:30 [Qemu-devel] [PATCH] linux-user: break recursion loop on symlink to . or Riku Voipio
2009-01-30 19:50 ` Aurelien Jarno
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).