[commit: ghc] master: compiler: Write .o files atomically. See #14533 (cfbedf1)
git at git.haskell.org
git at git.haskell.org
Sun Mar 10 14:31:35 UTC 2019
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/cfbedf1780002f4f76aa9c6c754818a436888e9f/ghc
>---------------------------------------------------------------
commit cfbedf1780002f4f76aa9c6c754818a436888e9f
Author: Niklas Hambüchen <mail at nh2.me>
Date: Sun Feb 17 20:48:45 2019 +0100
compiler: Write .o files atomically. See #14533
This issue was reproduced with, and the fix confirmed with,
the `hatrace` tool for syscall-based fault injection:
https://github.com/nh2/hatrace
The concrete test case for GHC is at
https://github.com/nh2/hatrace/blob/e23d35a2d2c79e8bf49e9e2266b3ff7094267f29/test/HatraceSpec.hs#L185
A previous, nondeterministic reproducer for the issue was provided by
Alexey Kuleshevich in
https://github.com/lehins/exec-kill-loop
Signed-off-by: Niklas Hambüchen <niklas at fpcomplete.com>
Reviewed-by: Alexey Kuleshevich <alexey at fpcomplete.com>
>---------------------------------------------------------------
cfbedf1780002f4f76aa9c6c754818a436888e9f
compiler/main/DriverPipeline.hs | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/compiler/main/DriverPipeline.hs b/compiler/main/DriverPipeline.hs
index 04576e7..70c2d7a 100644
--- a/compiler/main/DriverPipeline.hs
+++ b/compiler/main/DriverPipeline.hs
@@ -1339,7 +1339,12 @@ runPhase (RealPhase (As with_cpp)) input_fn dflags
])
liftIO $ debugTraceMsg dflags 4 (text "Running the assembler")
- runAssembler input_fn output_fn
+
+ -- Atomic write by writing to temp file and then renaming
+ let temp_output_fn = output_fn <.> "tmp"
+ runAssembler input_fn temp_output_fn
+ liftIO $ renameFile temp_output_fn output_fn
+
return (RealPhase next_phase, output_fn)
More information about the ghc-commits
mailing list