[PATCH] git_odb_open ckeck for valid path to database

Subsystems: the rest

STALE3738d

5 messages, 2 authors, 2016-06-15 · open the first message on its own page

[PATCH] git_odb_open ckeck for valid path to database

From: Esben Mose Hansen <hidden>
Date: 2016-06-15 22:47:40

---
 src/errors.c                |    1 +
 src/git/common.h            |    3 +++
 src/odb.c                   |   13 +++++++++++++
 tests/t0204-opendb_errors.c |   38 ++++++++++++++++++++++++++++++++++++++
 4 files changed, 55 insertions(+), 0 deletions(-)
 create mode 100644 tests/t0204-opendb_errors.c
diff --git a/src/errors.c b/src/errors.c
index f348997..074c01c 100644
--- a/src/errors.c
+++ b/src/errors.c
@@ -36,6 +36,7 @@ static struct {
 	{ GIT_ENOTOID, "Not a git oid" },
 	{ GIT_ENOTFOUND, "Object does not exist in the scope searched" },
 	{ GIT_ENOMEM, "Not enough space" },
+	{ GIT_ENOTDIR, "Not a directory" }
 };
 
 const char *git_strerror(int num)
diff --git a/src/git/common.h b/src/git/common.h
index c470e0e..96f2971 100644
--- a/src/git/common.h
+++ b/src/git/common.h
@@ -65,6 +65,9 @@
 /** Consult the OS error information. */
 #define GIT_EOSERR (GIT_ERROR - 4)
 
+/** The path is not a directory */
+#define GIT_ENOTDIR (GIT_ERROR - 5)
+
 GIT_BEGIN_DECL
 
 /** A revision traversal pool. */
diff --git a/src/odb.c b/src/odb.c
index 6d646a4..89d6d03 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -30,6 +30,10 @@
 #include "hash.h"
 #include "odb.h"
 
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
 #define GIT_PACK_NAME_MAX (5 + 40 + 1)
 struct git_pack {
 	git_odb *db;
@@ -1023,6 +1027,15 @@ int git_odb_open(git_odb **out, const char *objects_dir)
 		free(db);
 		return GIT_ERROR;
 	}
+	struct stat objects_dir_stat;
+	if (stat(db->objects_dir, &objects_dir_stat)) {
+		free(db);
+		return GIT_EOSERR;
+	}
+	if (!S_ISDIR(objects_dir_stat.st_mode)) {
+		free(db);
+		return GIT_ENOTDIR;
+	}
 
 	gitlck_init(&db->lock);
 
diff --git a/tests/t0204-opendb_errors.c b/tests/t0204-opendb_errors.c
new file mode 100644
index 0000000..e9b52c9
--- /dev/null
+++ b/tests/t0204-opendb_errors.c
@@ -0,0 +1,38 @@
+#include "test_lib.h"
+#include "test_helpers.h"
+#include <git/odb.h>
+#include "fileops.h"
+
+static char *odb_dir = "test-objects";
+
+static unsigned char one_bytes[] = {
+    0x31, 0x78, 0x9c, 0xe3, 0x02, 0x00, 0x00, 0x0b,
+    0x00, 0x0b,
+};
+
+static unsigned char one_data[] = {
+    0x0a,
+};
+
+static object_data one = {
+    one_bytes,
+    sizeof(one_bytes),
+    "8b137891791fe96927ad78e64b0aad7bded08bdc",
+    "blob",
+    "test-objects/8b",
+    "test-objects/8b/137891791fe96927ad78e64b0aad7bded08bdc",
+    one_data,
+    sizeof(one_data),
+};
+
+BEGIN_TEST(opendb_errors)
+    git_odb *db;
+    int error = git_odb_open(&db, odb_dir);
+    must_be_true(error == GIT_EOSERR);
+    must_be_true(errno == ENOENT);
+    must_pass(write_object_files(odb_dir, &one));
+    error = git_odb_open(&db, one.file);
+    must_be_true(error == GIT_ENOTDIR);
+
+    must_pass(remove_object_files(odb_dir, &one));
+END_TEST
-- 
1.6.3.3

Re: [PATCH] git_odb_open ckeck for valid path to database

From: Ramsay Jones <hidden>
Date: 2016-06-15 22:47:41

Esben Mose Hansen wrote:
quoted hunk
diff --git a/src/odb.c b/src/odb.c
index 6d646a4..89d6d03 100644
--- a/src/odb.c
+++ b/src/odb.c
@@ -30,6 +30,10 @@
 #include "hash.h"
 #include "odb.h"
 
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
+
None of these #includes should be necessary (they are not for me).
Also, "#include <unistd.h>" breaks on windows ;-)
quoted hunk
 #define GIT_PACK_NAME_MAX (5 + 40 + 1)
 struct git_pack {
 	git_odb *db;
@@ -1023,6 +1027,15 @@ int git_odb_open(git_odb **out, const char *objects_dir)
 		free(db);
 		return GIT_ERROR;
 	}
+	struct stat objects_dir_stat;
This should be declared at the head of the function (or generally at the start of
a block/scope); ie we don't use this C99 facility. This breaks MSVC, which does
not understand C99.
+	if (stat(db->objects_dir, &objects_dir_stat)) {
+		free(db);
+		return GIT_EOSERR;
+	}
+	if (!S_ISDIR(objects_dir_stat.st_mode)) {
This breaks on MSVC, since the MS headers do not define S_ISDIR. It's not difficult
to add; it's on my TODO list. (Andreas, I can add this later if you like)

However, I suspect it may be useful to add an gitfo_is_directory() function, or
something like it. Maybe. Andreas?

Thank you for the patch.

(I think Andreas would prefer to see libgit2 somewhere in the subject, perhaps
like [LIBGIT2 PATCH], otherwise he may miss you email)

ATB,
Ramsay Jones

Re: [LIBGIT2 PATCH] git_odb_open ckeck for valid path to database

From: Esben Mose Hansen <hidden>
Date: 2016-06-15 22:47:42

On Monday 09 November 2009 20:16:15 Ramsay Jones wrote:

I have made 2 new patchsets: One 
0001-git_odb_open-check-for-valid-path-to-database.patch

which is simply the patch before with fixups, and another series

0001-Add-gitfo_is_diretory.patch
0002-git_odb_open-ckeck-for-valid-path-to-database-using-.patch

which adds a gitfo_is_directory (0001) and then uses this new function from 
git_odb_open (0002).

I hope I have done this git/email stuff correctly.
This should be declared at the head of the function (or generally at the
 start of a block/scope); ie we don't use this C99 facility. This breaks
 MSVC, which does not understand C99.
C89 (?) is a tough monster, I see :)
quoted
+	if (stat(db->objects_dir, &objects_dir_stat)) {
+		free(db);
+		return GIT_EOSERR;
+	}
+	if (!S_ISDIR(objects_dir_stat.st_mode)) {
This breaks on MSVC, since the MS headers do not define S_ISDIR. It's not
 difficult to add; it's on my TODO list. (Andreas, I can add this later if
 you like)
I have not fixed this. 

(I think Andreas would prefer to see libgit2 somewhere in the subject,
 perhaps like [LIBGIT2 PATCH], otherwise he may miss you email
OK.

Thanks for looking at my code.

-- 
Kind regards, Esben

Re: [LIBGIT2 PATCH] git_odb_open ckeck for valid path to database

From: Esben Mose Hansen <hidden>
Date: 2016-06-15 22:47:47

On Tuesday 10 November 2009 22:07:04 Esben Mose Hansen wrote:
On Monday 09 November 2009 20:16:15 Ramsay Jones wrote:

I have made 2 new patchsets: One
Did these get lost in transit? Or am I going about it in the wrong way? :)

Thank you for your time

-- 
Kind regards, Esben

Re: [LIBGIT2 PATCH] git_odb_open ckeck for valid path to database

From: Ramsay Jones <hidden>
Date: 2016-06-15 22:47:49

Esben Mose Hansen wrote:
On Tuesday 10 November 2009 22:07:04 Esben Mose Hansen wrote:
quoted
On Monday 09 November 2009 20:16:15 Ramsay Jones wrote:

I have made 2 new patchsets: One
Did these get lost in transit? Or am I going about it in the wrong way? :)
Oh, sorry, I didn't notice that this was sent to me! *ahem*
(I thought/expected them to be addressed to Andreas)

Maybe you could resend the first patch, inline rather than as an attachment,
addressed to Andreas (ae@op5.com) so that he can comment on them (or commit
them).

ATB,
Ramsay Jones
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help