Re: [PATCH] sha1_file: avoid bogus "file exists" error message

Previous thread: Media repositories and memory usage by Nguyen Thai Ngoc Duy on Thursday, November 20, 2008 - 9:19 am. (1 message)

Next thread: Challenge of setting up git server (repository). Please help! by Gary Yang on Thursday, November 20, 2008 - 2:39 pm. (9 messages)
From: Joey Hess
Date: Thursday, November 20, 2008 - 11:56 am

This avoids the following misleading error message:

error: unable to create temporary sha1 filename ./objects/15: File exists

mkstemp can fail for many reasons, one of which, ENOENT, can occur if
the directory for the temp file doesn't exist. create_tmpfile tried to
handle this case by always trying to mkdir the directory, even if it
already existed. This caused errno to be clobbered, so one cannot tell
why mkstemp really failed, and it truncated the buffer to just the
directory name, resulting in the strange error message shown above.

Note that in both occasions that I've seen this failure, it has not been
due to a missing directory, or bad permissions, but some other, unknown
mkstemp failure mode that did not occur when I ran git again. This code
could perhaps be made more robust by retrying mkstemp, in case it was a
transient failure.

Signed-off-by: Joey Hess <joey@kitenet.net>
---
 sha1_file.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sha1_file.c b/sha1_file.c
index ab2b520..927fb64 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -2231,7 +2231,7 @@ static int create_tmpfile(char *buffer, size_t bufsiz, const char *filename)
 	memcpy(buffer, filename, dirlen);
 	strcpy(buffer + dirlen, "tmp_obj_XXXXXX");
 	fd = mkstemp(buffer);
-	if (fd < 0 && dirlen) {
+	if (fd < 0 && dirlen && errno == ENOENT) {
 		/* Make sure the directory exists */
 		memcpy(buffer, filename, dirlen);
 		buffer[dirlen-1] = 0;
-- 
1.5.6.5
--

From: Joey Hess
Date: Wednesday, November 26, 2008 - 11:19 am

Actually, it was due to bad permissions. :-) Once git was fixed to
actually say that, I figured out where to look to fix them.

--=20
see shy jo
From: Ian Hilt
Date: Thursday, November 27, 2008 - 10:41 am

This is strange since write_loose_object() which calls create_tmpfile()
checks for EPERM.  Perhaps this should be done in create_tmpfile()?
--

From: Joey Hess
Date: Friday, November 28, 2008 - 10:00 am

errno is clobbered by the mkdir in create_tmpfile(), that's what my patch
corrects.

I suspect that in my case, mkstemp failed with EACCES, not EPERM. git
was running as a group that did not have write access to (some) object
directories.

--=20
see shy jo
Previous thread: Media repositories and memory usage by Nguyen Thai Ngoc Duy on Thursday, November 20, 2008 - 9:19 am. (1 message)

Next thread: Challenge of setting up git server (repository). Please help! by Gary Yang on Thursday, November 20, 2008 - 2:39 pm. (9 messages)