* [PATCH] fs: Fix file create bug when parent is not a directory
@ 2012-06-24 11:31 Sascha Hauer
0 siblings, 0 replies; only message in thread
From: Sascha Hauer @ 2012-06-24 11:31 UTC (permalink / raw)
To: barebox
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
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-06-24 11:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-24 11:31 [PATCH] fs: Fix file create bug when parent is not a directory Sascha Hauer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox