From: Sascha Hauer <s.hauer@pengutronix.de>
To: barebox@lists.infradead.org
Subject: [PATCH] fs: Fix file create bug when parent is not a directory
Date: Sun, 24 Jun 2012 13:31:45 +0200 [thread overview]
Message-ID: <1340537505-23100-1-git-send-email-s.hauer@pengutronix.de> (raw)
When creating a file or a directory we have to check if the parent
is actually a directory. Otherwise trying it results in a crash.
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
---
fs/fs.c | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/fs/fs.c b/fs/fs.c
index af73c8c..6d5740b 100644
--- a/fs/fs.c
+++ b/fs/fs.c
@@ -33,6 +33,7 @@
#include <libbb.h>
#include <magicvar.h>
#include <environment.h>
+#include <libgen.h>
void *read_file(const char *filename, size_t *size)
{
@@ -427,6 +428,25 @@ out:
return ret;
}
+static int parent_check_directory(const char *path)
+{
+ struct stat s;
+ int ret;
+ char *dir = dirname(xstrdup(path));
+
+ ret = stat(dir, &s);
+
+ free(dir);
+
+ if (ret)
+ return -ENOENT;
+
+ if (!S_ISDIR(s.st_mode))
+ return -ENOTDIR;
+
+ return 0;
+}
+
const char *getcwd(void)
{
return cwd;
@@ -515,6 +535,12 @@ int open(const char *pathname, int flags, ...)
goto out1;
}
+ if (exist_err) {
+ ret = parent_check_directory(path);
+ if (ret)
+ goto out1;
+ }
+
f = get_file();
if (!f) {
ret = -EMFILE;
@@ -1153,6 +1179,10 @@ int mkdir (const char *pathname, mode_t mode)
char *freep = p;
int ret;
+ ret = parent_check_directory(p);
+ if (ret)
+ goto out;
+
ret = path_check_prereq(pathname, S_UB_DOES_NOT_EXIST);
if (ret)
goto out;
--
1.7.10
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
reply other threads:[~2012-06-24 11:31 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=1340537505-23100-1-git-send-email-s.hauer@pengutronix.de \
--to=s.hauer@pengutronix.de \
--cc=barebox@lists.infradead.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