From 3c1c6b8f0015a04b4bc156e2d632ceae183fce89 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 14 Apr 2016 13:39:14 +0200 Subject: [PATCH] Set RLIMIT_CORE to 0, infinity in builders This prevents the builder from being affected by whatever the host system limits happen to be. --- src/libstore/build.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/libstore/build.cc b/src/libstore/build.cc index c1eea87e3..ba3f3a371 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -2373,6 +2374,12 @@ void DerivationGoal::runChild() if (cur != -1) personality(cur | ADDR_NO_RANDOMIZE); #endif + /* Disable core dumps by default. */ + struct rlimit limit = { 0, RLIM_INFINITY }; + setrlimit(RLIMIT_CORE, &limit); + + // FIXME: set other limits to deterministic values? + /* Fill in the environment. */ Strings envStrs; for (auto & i : env)