On 13 September 2017 at 16:51, Jeff King <peff@xxxxxxxx> wrote: > On Wed, Sep 13, 2017 at 04:49:45PM +0200, demerphq wrote: > >> On 13 September 2017 at 16:17, Jeff King <peff@xxxxxxxx> wrote: >> > You're welcome to read over the function to double-check, but I just >> > looked it over and couldn't find any unchecked writes. >> >> I can look, but I doubt I would notice something you did not. >> >> On the other hand the strace output does show that this is a case >> where the writes failed, but we still renamed the empty config.lock >> file into place: >> >> >> write(3, "[core]\n\tsharedRepository = true\n"..., 288) = -1 ENOSPC >> (No space left on device) >> write(3, " merge = refs/heads/yves/"..., 51) = -1 ENOSPC (No >> space left on device) >> munmap(0x7f48d9b8c000, 363) = 0 >> close(3) = 0 >> rename("/usr/local/git_tree/main/.git/config.lock", >> "/usr/local/git_tree/main/.git/config") = 0 > > Hmph. That is very disturbing. But with that information I should be > able to track down the culprit. Thanks for digging. FWIW, I see that git_config_set_multivar_in_file_gently() uses write_in_full() which in turn uses xwrite(), but the latter has the following comment on it: /* * xwrite() is the same a write(), but it automatically restarts write() * operations with a recoverable error (EAGAIN and EINTR). xwrite() DOES NOT * GUARANTEE that "len" bytes is written even if the operation is successful. */ I suspect that at this point I am not adding much value here, so I will leave it at this. >> I freed up space and things worked, so I somehow doubt the filesystem >> is at fault. When I then filled up the disk and retried the error was >> repeatable. > > Yeah, agreed. This really does look like a bug. FWIW, where it bit me turned out to be harmless. So while no doubt this could be a real PITA for someone it wasn't for me. Yves -- perl -Mre=debug -e "/just|another|perl|hacker/"