Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
fsync loose objects before moving into place
Browse files Browse the repository at this point in the history
When we write a loose object to disk, we simply close the
file object before moving it into place. If the machine
crashes shortly after our write, the contents may not have
been committed to disk (depending your filesystem, usually
the metadata is, and you end up with a corrupt, zero-length
loose object file).

This is especially bad because we report that the object is
successfully written, which means we may have updated refs
to point to it. A corrupt object at that point means not
only does the operation fail, but the repository is left in
a corrupted and unusable state.

We can fix this by calling fsync on the object file before
linking it into place. Between this and the previous commit,
our object writing should now behave exactly like git's
internal routines.
  • Loading branch information
peff committed Feb 22, 2013
1 parent 00a0054 commit cdf0fdb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/grit/git-ruby/internal/loose.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ def get_raw_object(buf)
def safe_write(path, content)
Tempfile.open("tmp_obj_", File.dirname(path), :opt => "wb") do |f|
f.write content
f.fsync
f.close
begin
File.link(f.path, path)
Expand Down

0 comments on commit cdf0fdb

Please sign in to comment.