Revision 05d1ed6148305d299693000856e4971e9f642662 authored by Ben Wijen on 22 August 2016, 12:47:55 UTC, committed by Junio C Hamano on 23 August 2016, 16:09:55 UTC
When the index is locked and child processes inherit the handle to
said lock and the parent process wants to remove the lock before the
child process exits, on Windows there is a problem: it won't work
because files cannot be deleted if a process holds a handle on them.
The symptom:

    Rename from 'xxx/.git/index.lock' to 'xxx/.git/index' failed.
    Should I try again? (y/n)

Spawning child processes with bInheritHandles==FALSE would not work
because no file handles would be inherited, not even the hStdXxx
handles in STARTUPINFO (stdin/stdout/stderr).

Opening every file with O_NOINHERIT does not work, either, as e.g.
git-upload-pack expects inherited file handles.

This leaves us with the only way out: creating temp files with the
O_NOINHERIT flag. This flag is Windows-specific, however. For our
purposes, it is equivalent to O_CLOEXEC (which does not exist on
Windows), so let's just open temporary files with the O_CLOEXEC flag and
map that flag to O_NOINHERIT on Windows.

As Eric Wong pointed out, we need to be careful to handle the case where
the Linux headers used to compile Git support O_CLOEXEC but the Linux
kernel used to run Git does not: it returns an EINVAL.

This fixes the test that we just introduced to demonstrate the problem.

Signed-off-by: Ben Wijen <ben@wijen.net>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent ad65f7e
History
File Mode Size
.gitignore -rw-r--r-- 7 bytes
README -rw-r--r-- 10.6 KB
TEAMS -rw-r--r-- 2.0 KB
bg.po -rw-r--r-- 478.2 KB
ca.po -rw-r--r-- 348.0 KB
de.po -rw-r--r-- 391.8 KB
fr.po -rw-r--r-- 386.3 KB
git.pot -rw-r--r-- 237.1 KB
is.po -rw-r--r-- 3.1 KB
it.po -rw-r--r-- 128.2 KB
ko.po -rw-r--r-- 382.7 KB
pt_PT.po -rw-r--r-- 367.4 KB
ru.po -rw-r--r-- 452.8 KB
sv.po -rw-r--r-- 373.9 KB
vi.po -rw-r--r-- 414.5 KB
zh_CN.po -rw-r--r-- 347.3 KB

README

back to top