1. 17 2月, 2017 1 次提交
    • J
      tempfile: avoid "ferror | fclose" trick · 0838cbc2
      Jeff King 提交于
      The current code wants to record an error condition from
      either ferror() or fclose(), but makes sure that we always
      call both functions. So it can't use logical-OR "||", which
      would short-circuit when ferror() is true. Instead, it uses
      bitwise-OR "|" to evaluate both functions and set one or
      more bits in the "err" flag if they reported a failure.
      
      Unlike logical-OR, though, bitwise-OR does not introduce a
      sequence point, and the order of evaluation for its operands
      is unspecified. So a compiler would be free to generate code
      which calls fclose() first, and then ferror() on the
      now-freed filehandle.
      
      There's no indication that this has happened in practice,
      but let's write it out in a way that follows the standard.
      Noticed-by: NAndreas Schwab <schwab@linux-m68k.org>
      Signed-off-by: NJeff King <peff@peff.net>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      0838cbc2
  2. 24 8月, 2016 1 次提交
    • B
      mingw: ensure temporary file handles are not inherited by child processes · 05d1ed61
      Ben Wijen 提交于
      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: NBen Wijen <ben@wijen.net>
      Signed-off-by: NJohannes Schindelin <johannes.schindelin@gmx.de>
      Signed-off-by: NJunio C Hamano <gitster@pobox.com>
      05d1ed61
  3. 11 8月, 2015 4 次提交