2009-12-17 16:12:44 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "references.hh"
|
|
|
|
#include "pathlocks.hh"
|
|
|
|
#include "misc.hh"
|
|
|
|
#include "globals.hh"
|
2006-11-30 19:43:04 +02:00
|
|
|
#include "local-store.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
#include "util.hh"
|
2009-10-22 11:28:33 +03:00
|
|
|
#include "archive.hh"
|
2012-02-18 02:23:52 +02:00
|
|
|
#include "immutable.hh"
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2003-07-20 22:29:38 +03:00
|
|
|
#include <map>
|
2005-10-17 18:33:24 +03:00
|
|
|
#include <sstream>
|
2009-03-23 03:05:54 +02:00
|
|
|
#include <algorithm>
|
2004-06-18 21:09:32 +03:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2004-06-25 18:36:09 +03:00
|
|
|
#include <boost/weak_ptr.hpp>
|
2004-06-18 21:09:32 +03:00
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2006-12-08 17:44:00 +02:00
|
|
|
#include <time.h>
|
2006-05-30 14:37:21 +03:00
|
|
|
#include <sys/time.h>
|
2009-09-23 15:57:15 +03:00
|
|
|
#include <sys/wait.h>
|
2004-05-11 21:05:44 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2004-07-01 14:11:16 +03:00
|
|
|
#include <errno.h>
|
2009-09-24 10:21:29 +03:00
|
|
|
#include <stdio.h>
|
2010-06-24 20:51:04 +03:00
|
|
|
#include <cstring>
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
|
2012-05-30 17:12:29 +03:00
|
|
|
#include <bzlib.h>
|
|
|
|
|
2007-10-29 12:03:07 +02:00
|
|
|
|
|
|
|
/* Includes required for chroot support. */
|
|
|
|
#if HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
2007-10-27 19:51:55 +03:00
|
|
|
#if HAVE_SYS_MOUNT_H
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#endif
|
2008-12-11 19:00:12 +02:00
|
|
|
#if HAVE_SCHED_H
|
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
2007-10-27 19:51:55 +03:00
|
|
|
|
2012-08-20 22:55:49 +03:00
|
|
|
#define CHROOT_ENABLED HAVE_CHROOT && HAVE_UNSHARE && HAVE_SYS_MOUNT_H && defined(MS_BIND) && defined(MS_PRIVATE) && defined(CLONE_NEWNS)
|
2007-10-27 19:51:55 +03:00
|
|
|
|
2012-06-23 07:28:35 +03:00
|
|
|
#if CHROOT_ENABLED
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/ip.h>
|
|
|
|
#endif
|
|
|
|
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2009-01-12 18:30:32 +02:00
|
|
|
#if HAVE_SYS_PERSONALITY_H
|
|
|
|
#include <sys/personality.h>
|
|
|
|
#define CAN_DO_LINUX32_BUILDS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
using std::map;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
static string pathNullDevice = "/dev/null";
|
|
|
|
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
static const uid_t rootUserId = 0;
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Forward definition. */
|
|
|
|
class Worker;
|
2010-08-25 23:44:28 +03:00
|
|
|
class HookInstance;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* A pointer to a goal. */
|
|
|
|
class Goal;
|
2006-09-05 00:06:23 +03:00
|
|
|
typedef boost::shared_ptr<Goal> GoalPtr;
|
|
|
|
typedef boost::weak_ptr<Goal> WeakGoalPtr;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* Set of goals. */
|
2004-06-18 21:09:32 +03:00
|
|
|
typedef set<GoalPtr> Goals;
|
2004-06-25 18:36:09 +03:00
|
|
|
typedef set<WeakGoalPtr> WeakGoals;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* A map of paths to goals (and the other way around). */
|
2004-06-25 18:36:09 +03:00
|
|
|
typedef map<Path, WeakGoalPtr> WeakGoalMap;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
class Goal : public boost::enable_shared_from_this<Goal>
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2005-02-23 13:19:27 +02:00
|
|
|
public:
|
2012-07-09 01:39:24 +03:00
|
|
|
typedef enum {ecBusy, ecSuccess, ecFailed, ecNoSubstituters} ExitCode;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
protected:
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Backlink to the worker. */
|
|
|
|
Worker & worker;
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* Goals that this goal is waiting for. */
|
|
|
|
Goals waitees;
|
|
|
|
|
|
|
|
/* Goals waiting for this one to finish. Must use weak pointers
|
|
|
|
here to prevent cycles. */
|
|
|
|
WeakGoals waiters;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-08-30 14:51:36 +03:00
|
|
|
/* Number of goals we are/were waiting for that have failed. */
|
2004-06-25 13:21:44 +03:00
|
|
|
unsigned int nrFailed;
|
|
|
|
|
2012-07-09 01:39:24 +03:00
|
|
|
/* Number of substitution goals we are/were waiting for that
|
|
|
|
failed because there are no substituters. */
|
|
|
|
unsigned int nrNoSubstituters;
|
|
|
|
|
2005-02-18 11:50:20 +02:00
|
|
|
/* Name of this goal for debugging purposes. */
|
|
|
|
string name;
|
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
/* Whether the goal is finished. */
|
|
|
|
ExitCode exitCode;
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
Goal(Worker & worker) : worker(worker)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2012-07-09 01:39:24 +03:00
|
|
|
nrFailed = nrNoSubstituters = 0;
|
2005-02-23 13:19:27 +02:00
|
|
|
exitCode = ecBusy;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~Goal()
|
|
|
|
{
|
2005-02-18 11:50:20 +02:00
|
|
|
trace("goal destroyed");
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void work() = 0;
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
void addWaitee(GoalPtr waitee);
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
virtual void waiteeDone(GoalPtr waitee, ExitCode result);
|
2004-06-25 13:21:44 +03:00
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
virtual void handleChildOutput(int fd, const string & data)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void handleEOF(int fd)
|
2004-06-29 12:41:50 +03:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
void trace(const format & f);
|
2005-02-18 11:50:20 +02:00
|
|
|
|
|
|
|
string getName()
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
ExitCode getExitCode()
|
|
|
|
{
|
|
|
|
return exitCode;
|
|
|
|
}
|
2005-10-17 18:33:24 +03:00
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
/* Cancel the goal. It should wake up its waiters, get rid of any
|
|
|
|
running child processes that are being monitored by the worker
|
|
|
|
(important!), etc. */
|
|
|
|
virtual void cancel() = 0;
|
2006-12-08 19:26:21 +02:00
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
protected:
|
2006-12-08 19:26:21 +02:00
|
|
|
void amDone(ExitCode result);
|
2004-06-18 21:09:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* A mapping used to remember for each child process to what goal it
|
2005-10-17 18:33:24 +03:00
|
|
|
belongs, and file descriptors for receiving log data and output
|
|
|
|
path creation commands. */
|
2004-06-20 00:45:04 +03:00
|
|
|
struct Child
|
|
|
|
{
|
2004-06-25 18:36:09 +03:00
|
|
|
WeakGoalPtr goal;
|
2005-10-17 18:33:24 +03:00
|
|
|
set<int> fds;
|
2010-02-03 23:38:41 +02:00
|
|
|
bool monitorForSilence;
|
2004-06-20 00:45:04 +03:00
|
|
|
bool inBuildSlot;
|
2006-12-08 17:44:00 +02:00
|
|
|
time_t lastOutput; /* time we last got output on stdout/stderr */
|
2004-06-20 00:45:04 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef map<pid_t, Child> Children;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
|
|
|
|
/* The worker class. */
|
|
|
|
class Worker
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* Note: the worker should only have strong pointers to the
|
|
|
|
top-level goals. */
|
|
|
|
|
|
|
|
/* The top-level goals of the worker. */
|
|
|
|
Goals topGoals;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Goals that are ready to do some work. */
|
2004-06-25 18:36:09 +03:00
|
|
|
WeakGoals awake;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Goals waiting for a build slot. */
|
2004-06-25 18:36:09 +03:00
|
|
|
WeakGoals wantingToBuild;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Child processes currently running. */
|
|
|
|
Children children;
|
|
|
|
|
2009-04-01 00:14:07 +03:00
|
|
|
/* Number of build slots occupied. This includes local builds and
|
|
|
|
substitutions but not remote builds via the build hook. */
|
|
|
|
unsigned int nrLocalBuilds;
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
/* Maps used to prevent multiple instantiations of a goal for the
|
2005-01-20 18:01:07 +02:00
|
|
|
same derivation / path. */
|
2005-01-19 13:16:11 +02:00
|
|
|
WeakGoalMap derivationGoals;
|
2004-06-25 18:36:09 +03:00
|
|
|
WeakGoalMap substitutionGoals;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2007-08-28 14:36:17 +03:00
|
|
|
/* Goals waiting for busy paths to be unlocked. */
|
|
|
|
WeakGoals waitingForAnyGoal;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
/* Goals sleeping for a few seconds (polling a lock). */
|
|
|
|
WeakGoals waitingForAWhile;
|
|
|
|
|
|
|
|
/* Last time the goals in `waitingForAWhile' where woken up. */
|
|
|
|
time_t lastWokenUp;
|
2011-06-30 18:19:13 +03:00
|
|
|
|
|
|
|
/* Last time `waitForInput' was last called. */
|
|
|
|
time_t lastWait;
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
public:
|
|
|
|
|
2010-12-13 18:53:23 +02:00
|
|
|
/* Set if at least one derivation had a BuildError (i.e. permanent
|
|
|
|
failure). */
|
|
|
|
bool permanentFailure;
|
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
LocalStore & store;
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
boost::shared_ptr<HookInstance> hook;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
Worker(LocalStore & store);
|
2004-06-18 21:09:32 +03:00
|
|
|
~Worker();
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* Make a goal (with caching). */
|
2012-10-03 00:13:46 +03:00
|
|
|
GoalPtr makeDerivationGoal(const Path & drvPath, bool repair = false);
|
2012-10-02 21:08:59 +03:00
|
|
|
GoalPtr makeSubstitutionGoal(const Path & storePath, bool repair = false);
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* Remove a dead goal. */
|
2004-06-18 21:09:32 +03:00
|
|
|
void removeGoal(GoalPtr goal);
|
|
|
|
|
|
|
|
/* Wake up a goal (i.e., there is something for it to do). */
|
|
|
|
void wakeUp(GoalPtr goal);
|
|
|
|
|
2009-04-01 00:14:07 +03:00
|
|
|
/* Return the number of local build and substitution processes
|
|
|
|
currently running (but not remote builds via the build
|
|
|
|
hook). */
|
|
|
|
unsigned int getNrLocalBuilds();
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Registers a running child process. `inBuildSlot' means that
|
|
|
|
the process counts towards the jobs limit. */
|
2005-10-17 18:33:24 +03:00
|
|
|
void childStarted(GoalPtr goal, pid_t pid,
|
2010-02-03 23:38:41 +02:00
|
|
|
const set<int> & fds, bool inBuildSlot, bool monitorForSilence);
|
2006-12-08 19:26:21 +02:00
|
|
|
|
|
|
|
/* Unregisters a running child process. `wakeSleepers' should be
|
|
|
|
false if there is no sense in waking up goals that are sleeping
|
|
|
|
because they can't run yet (e.g., there is no free build slot,
|
|
|
|
or the hook would still say `postpone'). */
|
2004-07-01 19:24:35 +03:00
|
|
|
void childTerminated(pid_t pid, bool wakeSleepers = true);
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Put `goal' to sleep until a build slot becomes available (which
|
|
|
|
might be right away). */
|
|
|
|
void waitForBuildSlot(GoalPtr goal);
|
|
|
|
|
2007-08-28 14:36:17 +03:00
|
|
|
/* Wait for any goal to finish. Pretty indiscriminate way to
|
|
|
|
wait for some resource that some other goal is holding. */
|
|
|
|
void waitForAnyGoal(GoalPtr goal);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
/* Wait for a few seconds and then retry this goal. Used when
|
|
|
|
waiting for a lock held by another process. This kind of
|
|
|
|
polling is inefficient, but POSIX doesn't really provide a way
|
|
|
|
to wait for multiple locks in the main select() loop. */
|
|
|
|
void waitForAWhile(GoalPtr goal);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
/* Loop until the specified top-level goals have finished. */
|
|
|
|
void run(const Goals & topGoals);
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Wait for input to become available. */
|
|
|
|
void waitForInput();
|
2010-12-13 18:53:23 +02:00
|
|
|
|
|
|
|
unsigned int exitStatus();
|
2004-06-18 21:09:32 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
void Goal::addWaitee(GoalPtr waitee)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2004-06-25 18:36:09 +03:00
|
|
|
waitees.insert(waitee);
|
|
|
|
waitee->waiters.insert(shared_from_this());
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
void Goal::waiteeDone(GoalPtr waitee, ExitCode result)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2004-06-25 18:36:09 +03:00
|
|
|
assert(waitees.find(waitee) != waitees.end());
|
|
|
|
waitees.erase(waitee);
|
2005-02-18 11:50:20 +02:00
|
|
|
|
|
|
|
trace(format("waitee `%1%' done; %2% left") %
|
|
|
|
waitee->name % waitees.size());
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-09 01:39:24 +03:00
|
|
|
if (result == ecFailed || result == ecNoSubstituters) ++nrFailed;
|
|
|
|
|
|
|
|
if (result == ecNoSubstituters) ++nrNoSubstituters;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (waitees.empty() || (result == ecFailed && !settings.keepGoing)) {
|
2004-06-28 13:42:57 +03:00
|
|
|
|
|
|
|
/* If we failed and keepGoing is not set, we remove all
|
|
|
|
remaining waitees. */
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Goals::iterator, i, waitees) {
|
2004-06-28 13:42:57 +03:00
|
|
|
GoalPtr goal = *i;
|
|
|
|
WeakGoals waiters2;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (WeakGoals::iterator, j, goal->waiters)
|
|
|
|
if (j->lock() != shared_from_this()) waiters2.insert(*j);
|
2004-06-28 13:42:57 +03:00
|
|
|
goal->waiters = waiters2;
|
|
|
|
}
|
|
|
|
waitees.clear();
|
2004-07-01 19:24:35 +03:00
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-06-28 13:42:57 +03:00
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
void Goal::amDone(ExitCode result)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2004-06-25 18:36:09 +03:00
|
|
|
trace("done");
|
2005-02-23 13:19:27 +02:00
|
|
|
assert(exitCode == ecBusy);
|
2012-07-09 01:39:24 +03:00
|
|
|
assert(result == ecSuccess || result == ecFailed || result == ecNoSubstituters);
|
2006-12-08 19:26:21 +02:00
|
|
|
exitCode = result;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (WeakGoals::iterator, i, waiters) {
|
2004-06-25 18:36:09 +03:00
|
|
|
GoalPtr goal = i->lock();
|
2006-12-08 19:26:21 +02:00
|
|
|
if (goal) goal->waiteeDone(shared_from_this(), result);
|
2004-06-25 18:36:09 +03:00
|
|
|
}
|
|
|
|
waiters.clear();
|
2004-06-18 21:09:32 +03:00
|
|
|
worker.removeGoal(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
void Goal::trace(const format & f)
|
|
|
|
{
|
2005-02-18 11:50:20 +02:00
|
|
|
debug(format("%1%: %2%") % name % f);
|
2004-06-25 18:36:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-06-22 13:21:44 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
/* Common initialisation performed in child processes. */
|
|
|
|
void commonChildInit(Pipe & logPipe)
|
|
|
|
{
|
2006-02-03 16:20:59 +02:00
|
|
|
/* Put the child in a separate session (and thus a separate
|
|
|
|
process group) so that it has no controlling terminal (meaning
|
|
|
|
that e.g. ssh cannot open /dev/tty) and it doesn't receive
|
|
|
|
terminal signals. */
|
|
|
|
if (setsid() == -1)
|
|
|
|
throw SysError(format("creating a new session"));
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-22 13:21:44 +03:00
|
|
|
/* Dup the write side of the logger pipe into stderr. */
|
|
|
|
if (dup2(logPipe.writeSide, STDERR_FILENO) == -1)
|
|
|
|
throw SysError("cannot pipe standard error into log file");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-02-03 16:20:59 +02:00
|
|
|
/* Dup stderr to stdout. */
|
2004-06-22 13:21:44 +03:00
|
|
|
if (dup2(STDERR_FILENO, STDOUT_FILENO) == -1)
|
|
|
|
throw SysError("cannot dup stderr into stdout");
|
|
|
|
|
|
|
|
/* Reroute stdin to /dev/null. */
|
|
|
|
int fdDevNull = open(pathNullDevice.c_str(), O_RDWR);
|
|
|
|
if (fdDevNull == -1)
|
|
|
|
throw SysError(format("cannot open `%1%'") % pathNullDevice);
|
|
|
|
if (dup2(fdDevNull, STDIN_FILENO) == -1)
|
|
|
|
throw SysError("cannot dup null device into stdin");
|
2012-03-05 21:28:09 +02:00
|
|
|
close(fdDevNull);
|
2004-06-22 13:21:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
/* Convert a string list to an array of char pointers. Careful: the
|
|
|
|
string list should outlive the array. */
|
2004-06-22 13:21:44 +03:00
|
|
|
const char * * strings2CharPtrs(const Strings & ss)
|
|
|
|
{
|
|
|
|
const char * * arr = new const char * [ss.size() + 1];
|
|
|
|
const char * * p = arr;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Strings::const_iterator, i, ss) *p++ = i->c_str();
|
2004-06-22 13:21:44 +03:00
|
|
|
*p = 0;
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-14 17:46:45 +02:00
|
|
|
/* Restore default handling of SIGPIPE, otherwise some programs will
|
|
|
|
randomly say "Broken pipe". */
|
2012-07-27 16:59:18 +03:00
|
|
|
static void restoreSIGPIPE()
|
2008-11-14 17:46:45 +02:00
|
|
|
{
|
|
|
|
struct sigaction act, oact;
|
|
|
|
act.sa_handler = SIG_DFL;
|
|
|
|
act.sa_flags = 0;
|
|
|
|
if (sigaction(SIGPIPE, &act, &oact)) throw SysError("resetting SIGPIPE");
|
|
|
|
}
|
2006-06-19 19:24:15 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
class UserLock
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
/* POSIX locks suck. If we have a lock on a file, and we open and
|
|
|
|
close that file again (without closing the original file
|
|
|
|
descriptor), we lose the lock. So we have to be *very* careful
|
|
|
|
not to open a lock file on which we are holding a lock. */
|
|
|
|
static PathSet lockedPaths; /* !!! not thread-safe */
|
|
|
|
|
|
|
|
Path fnUserLock;
|
|
|
|
AutoCloseFD fdUserLock;
|
|
|
|
|
2006-12-07 13:27:32 +02:00
|
|
|
string user;
|
2005-10-20 19:58:34 +03:00
|
|
|
uid_t uid;
|
2006-12-06 22:00:15 +02:00
|
|
|
gid_t gid;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
public:
|
|
|
|
UserLock();
|
|
|
|
~UserLock();
|
|
|
|
|
|
|
|
void acquire();
|
|
|
|
void release();
|
|
|
|
|
2006-12-07 18:33:31 +02:00
|
|
|
void kill();
|
|
|
|
|
2006-12-07 13:27:32 +02:00
|
|
|
string getUser() { return user; }
|
|
|
|
uid_t getUID() { return uid; }
|
|
|
|
uid_t getGID() { return gid; }
|
2006-12-07 02:16:07 +02:00
|
|
|
|
2006-12-07 13:27:32 +02:00
|
|
|
bool enabled() { return uid != 0; }
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
PathSet UserLock::lockedPaths;
|
|
|
|
|
|
|
|
|
|
|
|
UserLock::UserLock()
|
|
|
|
{
|
2006-12-06 22:00:15 +02:00
|
|
|
uid = gid = 0;
|
2005-10-20 19:58:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UserLock::~UserLock()
|
|
|
|
{
|
|
|
|
release();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UserLock::acquire()
|
|
|
|
{
|
|
|
|
assert(uid == 0);
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
assert(settings.buildUsersGroup != "");
|
2006-12-06 22:00:15 +02:00
|
|
|
|
|
|
|
/* Get the members of the build-users-group. */
|
2012-07-31 02:55:41 +03:00
|
|
|
struct group * gr = getgrnam(settings.buildUsersGroup.c_str());
|
2006-12-06 22:00:15 +02:00
|
|
|
if (!gr)
|
|
|
|
throw Error(format("the group `%1%' specified in `build-users-group' does not exist")
|
2012-07-31 02:55:41 +03:00
|
|
|
% settings.buildUsersGroup);
|
2006-12-06 22:00:15 +02:00
|
|
|
gid = gr->gr_gid;
|
|
|
|
|
|
|
|
/* Copy the result of getgrnam. */
|
|
|
|
Strings users;
|
|
|
|
for (char * * p = gr->gr_mem; *p; ++p) {
|
|
|
|
debug(format("found build user `%1%'") % *p);
|
|
|
|
users.push_back(*p);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (users.empty())
|
|
|
|
throw Error(format("the build users group `%1%' has no members")
|
2012-07-31 02:55:41 +03:00
|
|
|
% settings.buildUsersGroup);
|
2005-10-20 19:58:34 +03:00
|
|
|
|
2006-12-06 22:00:15 +02:00
|
|
|
/* Find a user account that isn't currently in use for another
|
|
|
|
build. */
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Strings::iterator, i, users) {
|
2006-12-05 21:01:19 +02:00
|
|
|
debug(format("trying user `%1%'") % *i);
|
2005-10-20 19:58:34 +03:00
|
|
|
|
|
|
|
struct passwd * pw = getpwnam(i->c_str());
|
|
|
|
if (!pw)
|
2006-12-06 22:00:15 +02:00
|
|
|
throw Error(format("the user `%1%' in the group `%2%' does not exist")
|
2012-07-31 02:55:41 +03:00
|
|
|
% *i % settings.buildUsersGroup);
|
2009-09-23 20:05:51 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
createDirs(settings.nixStateDir + "/userpool");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
fnUserLock = (format("%1%/userpool/%2%") % settings.nixStateDir % pw->pw_uid).str();
|
2005-10-20 19:58:34 +03:00
|
|
|
|
|
|
|
if (lockedPaths.find(fnUserLock) != lockedPaths.end())
|
|
|
|
/* We already have a lock on this one. */
|
|
|
|
continue;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
AutoCloseFD fd = open(fnUserLock.c_str(), O_RDWR | O_CREAT, 0600);
|
|
|
|
if (fd == -1)
|
|
|
|
throw SysError(format("opening user lock `%1%'") % fnUserLock);
|
2012-03-05 21:29:00 +02:00
|
|
|
closeOnExec(fd);
|
2005-10-20 19:58:34 +03:00
|
|
|
|
|
|
|
if (lockFile(fd, ltWrite, false)) {
|
|
|
|
fdUserLock = fd.borrow();
|
|
|
|
lockedPaths.insert(fnUserLock);
|
2006-12-07 13:27:32 +02:00
|
|
|
user = *i;
|
2005-10-20 19:58:34 +03:00
|
|
|
uid = pw->pw_uid;
|
2006-12-07 02:19:27 +02:00
|
|
|
|
|
|
|
/* Sanity check... */
|
|
|
|
if (uid == getuid() || uid == geteuid())
|
|
|
|
throw Error(format("the Nix user should not be a member of `%1%'")
|
2012-07-31 02:55:41 +03:00
|
|
|
% settings.buildUsersGroup);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-18 16:48:42 +02:00
|
|
|
throw Error(format("all build users are currently in use; "
|
2006-12-06 22:00:15 +02:00
|
|
|
"consider creating additional users and adding them to the `%1%' group")
|
2012-07-31 02:55:41 +03:00
|
|
|
% settings.buildUsersGroup);
|
2005-10-20 19:58:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UserLock::release()
|
|
|
|
{
|
|
|
|
if (uid == 0) return;
|
|
|
|
fdUserLock.close(); /* releases lock */
|
|
|
|
assert(lockedPaths.find(fnUserLock) != lockedPaths.end());
|
|
|
|
lockedPaths.erase(fnUserLock);
|
|
|
|
fnUserLock = "";
|
|
|
|
uid = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-07 18:33:31 +02:00
|
|
|
static void runSetuidHelper(const string & command,
|
|
|
|
const string & arg)
|
2006-12-07 16:14:35 +02:00
|
|
|
{
|
2007-03-21 00:04:25 +02:00
|
|
|
Path program = getEnv("NIX_SETUID_HELPER",
|
2012-07-31 02:55:41 +03:00
|
|
|
settings.nixLibexecDir + "/nix-setuid-helper");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-07 16:14:35 +02:00
|
|
|
/* Fork. */
|
|
|
|
Pid pid;
|
|
|
|
pid = fork();
|
|
|
|
switch (pid) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0: /* child */
|
|
|
|
try {
|
2007-02-21 16:31:42 +02:00
|
|
|
std::vector<const char *> args; /* careful with c_str()! */
|
2006-12-07 16:14:35 +02:00
|
|
|
args.push_back(program.c_str());
|
2006-12-07 18:33:31 +02:00
|
|
|
args.push_back(command.c_str());
|
|
|
|
args.push_back(arg.c_str());
|
2006-12-07 16:14:35 +02:00
|
|
|
args.push_back(0);
|
|
|
|
|
2008-11-14 17:46:45 +02:00
|
|
|
restoreSIGPIPE();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-07 16:14:35 +02:00
|
|
|
execve(program.c_str(), (char * *) &args[0], 0);
|
|
|
|
throw SysError(format("executing `%1%'") % program);
|
|
|
|
}
|
|
|
|
catch (std::exception & e) {
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr("error: " + string(e.what()) + "\n");
|
2006-12-07 16:14:35 +02:00
|
|
|
}
|
2012-11-09 17:42:10 +02:00
|
|
|
_exit(1);
|
2006-12-07 16:14:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Parent. */
|
|
|
|
|
|
|
|
/* Wait for the child to finish. */
|
|
|
|
int status = pid.wait(true);
|
|
|
|
if (!statusOk(status))
|
|
|
|
throw Error(format("program `%1%' %2%")
|
|
|
|
% program % statusToString(status));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-07 18:33:31 +02:00
|
|
|
void UserLock::kill()
|
|
|
|
{
|
|
|
|
assert(enabled());
|
|
|
|
if (amPrivileged())
|
|
|
|
killUser(uid);
|
|
|
|
else
|
|
|
|
runSetuidHelper("kill", user);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool amPrivileged()
|
|
|
|
{
|
|
|
|
return geteuid() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void getOwnership(const Path & path)
|
|
|
|
{
|
|
|
|
runSetuidHelper("get-ownership", path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-02 05:34:46 +03:00
|
|
|
void deletePathWrapped(const Path & path, unsigned long long & bytesFreed)
|
2006-12-07 16:14:35 +02:00
|
|
|
{
|
2006-12-09 02:26:24 +02:00
|
|
|
try {
|
|
|
|
/* First try to delete it ourselves. */
|
2012-08-02 05:34:46 +03:00
|
|
|
deletePath(path, bytesFreed);
|
2006-12-09 02:26:24 +02:00
|
|
|
} catch (SysError & e) {
|
|
|
|
/* If this failed due to a permission error, then try it with
|
|
|
|
the setuid helper. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.buildUsersGroup != "" && !amPrivileged()) {
|
2006-12-09 02:26:24 +02:00
|
|
|
getOwnership(path);
|
2012-08-02 05:34:46 +03:00
|
|
|
deletePath(path, bytesFreed);
|
2006-12-09 02:26:24 +02:00
|
|
|
} else
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void deletePathWrapped(const Path & path)
|
|
|
|
{
|
2012-08-02 05:34:46 +03:00
|
|
|
unsigned long long dummy1;
|
|
|
|
deletePathWrapped(path, dummy1);
|
2006-12-07 16:14:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
struct HookInstance
|
|
|
|
{
|
|
|
|
/* Pipes for talking to the build hook. */
|
|
|
|
Pipe toHook;
|
|
|
|
|
|
|
|
/* Pipe for the hook's standard output/error. */
|
|
|
|
Pipe fromHook;
|
|
|
|
|
2010-08-30 17:53:03 +03:00
|
|
|
/* Pipe for the builder's standard output/error. */
|
|
|
|
Pipe builderOut;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* The process ID of the hook. */
|
|
|
|
Pid pid;
|
|
|
|
|
|
|
|
HookInstance();
|
|
|
|
|
|
|
|
~HookInstance();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
HookInstance::HookInstance()
|
|
|
|
{
|
|
|
|
debug("starting build hook");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
Path buildHook = absPath(getEnv("NIX_BUILD_HOOK"));
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Create a pipe to get the output of the child. */
|
|
|
|
fromHook.create();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Create the communication pipes. */
|
|
|
|
toHook.create();
|
|
|
|
|
2010-08-30 17:53:03 +03:00
|
|
|
/* Create a pipe to get the output of the builder. */
|
|
|
|
builderOut.create();
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Fork the hook. */
|
2012-11-09 19:00:33 +02:00
|
|
|
pid = maybeVfork();
|
2010-08-25 23:44:28 +03:00
|
|
|
switch (pid) {
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
|
|
|
commonChildInit(fromHook);
|
|
|
|
|
|
|
|
if (chdir("/") == -1) throw SysError("changing into `/");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Dup the communication pipes. */
|
|
|
|
if (dup2(toHook.readSide, STDIN_FILENO) == -1)
|
|
|
|
throw SysError("dupping to-hook read side");
|
|
|
|
|
2010-08-30 17:53:03 +03:00
|
|
|
/* Use fd 4 for the builder's stdout/stderr. */
|
|
|
|
if (dup2(builderOut.writeSide, 4) == -1)
|
|
|
|
throw SysError("dupping builder's stdout/stderr");
|
2011-06-30 18:19:13 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
execl(buildHook.c_str(), buildHook.c_str(), settings.thisSystem.c_str(),
|
|
|
|
(format("%1%") % settings.maxSilentTime).str().c_str(),
|
|
|
|
(format("%1%") % settings.printBuildTrace).str().c_str(),
|
2012-09-12 19:15:47 +03:00
|
|
|
(format("%1%") % settings.buildTimeout).str().c_str(),
|
2010-08-31 15:36:24 +03:00
|
|
|
NULL);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
throw SysError(format("executing `%1%'") % buildHook);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
} catch (std::exception & e) {
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr("build hook error: " + string(e.what()) + "\n");
|
2010-08-25 23:44:28 +03:00
|
|
|
}
|
2012-11-09 17:42:10 +02:00
|
|
|
_exit(1);
|
2010-08-25 23:44:28 +03:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* parent */
|
|
|
|
pid.setSeparatePG(true);
|
|
|
|
pid.setKillSignal(SIGTERM);
|
|
|
|
fromHook.writeSide.close();
|
|
|
|
toHook.readSide.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
HookInstance::~HookInstance()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
/* Cleanly shut down the hook by closing its stdin if it's not
|
|
|
|
already building. Otherwise pid's destructor will kill
|
|
|
|
it. */
|
|
|
|
if (pid != -1 && toHook.writeSide != -1) {
|
|
|
|
toHook.writeSide.close();
|
|
|
|
pid.wait(true);
|
|
|
|
}
|
|
|
|
} catch (...) {
|
|
|
|
ignoreException();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2012-09-12 01:39:22 +03:00
|
|
|
typedef map<string, string> HashRewrites;
|
|
|
|
|
|
|
|
|
|
|
|
string rewriteHashes(string s, const HashRewrites & rewrites)
|
|
|
|
{
|
|
|
|
foreach (HashRewrites::const_iterator, i, rewrites) {
|
|
|
|
assert(i->first.size() == i->second.size());
|
|
|
|
size_t j = 0;
|
|
|
|
while ((j = s.find(i->first, j)) != string::npos) {
|
|
|
|
debug(format("rewriting @ %1%") % j);
|
|
|
|
s.replace(j, i->second.size(), i->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
typedef enum {rpAccept, rpDecline, rpPostpone} HookReply;
|
|
|
|
|
2012-07-09 01:39:24 +03:00
|
|
|
class SubstitutionGoal;
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
class DerivationGoal : public Goal
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
private:
|
2005-01-20 18:01:07 +02:00
|
|
|
/* The path of the derivation. */
|
2005-01-19 13:16:11 +02:00
|
|
|
Path drvPath;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2005-01-20 18:01:07 +02:00
|
|
|
/* The derivation stored at drvPath. */
|
2005-01-19 13:16:11 +02:00
|
|
|
Derivation drv;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* The remainder is state held during the build. */
|
|
|
|
|
|
|
|
/* Locks on the output paths. */
|
|
|
|
PathLocks outputLocks;
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
/* All input paths (that is, the union of FS closures of the
|
|
|
|
immediate input paths). */
|
2012-07-27 16:59:18 +03:00
|
|
|
PathSet inputPaths;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
/* Referenceable paths (i.e., input and output paths). */
|
|
|
|
PathSet allPaths;
|
|
|
|
|
2012-09-11 23:59:59 +03:00
|
|
|
/* Outputs that are already valid. */
|
|
|
|
PathSet validPaths;
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
/* User selected for running the builder. */
|
2005-10-20 19:58:34 +03:00
|
|
|
UserLock buildUser;
|
2005-10-17 18:33:24 +03:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* The process ID of the builder. */
|
2004-06-22 12:51:44 +03:00
|
|
|
Pid pid;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
/* The temporary directory. */
|
|
|
|
Path tmpDir;
|
|
|
|
|
|
|
|
/* File descriptor for the log file. */
|
2012-05-30 17:12:29 +03:00
|
|
|
FILE * fLogFile;
|
|
|
|
BZFILE * bzLogFile;
|
2012-07-17 16:40:12 +03:00
|
|
|
AutoCloseFD fdLogFile;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
/* Pipe for the builder's standard output/error. */
|
2010-08-30 17:53:03 +03:00
|
|
|
Pipe builderOut;
|
2004-05-13 22:14:49 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* The build hook. */
|
|
|
|
boost::shared_ptr<HookInstance> hook;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2007-10-27 03:46:59 +03:00
|
|
|
/* Whether we're currently doing a chroot build. */
|
|
|
|
bool useChroot;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-12-11 20:57:10 +02:00
|
|
|
Path chrootRootDir;
|
2007-10-27 03:46:59 +03:00
|
|
|
|
2008-12-11 19:00:12 +02:00
|
|
|
/* RAII object to delete the chroot directory. */
|
|
|
|
boost::shared_ptr<AutoDelete> autoDelChroot;
|
2009-03-25 23:05:42 +02:00
|
|
|
|
2012-02-18 02:23:52 +02:00
|
|
|
/* All inputs that are regular files. */
|
|
|
|
PathSet regularInputPaths;
|
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
/* Whether this is a fixed-output derivation. */
|
|
|
|
bool fixedOutput;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
typedef void (DerivationGoal::*GoalState)();
|
2004-06-18 21:09:32 +03:00
|
|
|
GoalState state;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Stuff we need to pass to initChild(). */
|
|
|
|
PathSet dirsInChroot;
|
|
|
|
typedef map<string, string> Environment;
|
|
|
|
Environment env;
|
|
|
|
|
2012-09-12 01:39:22 +03:00
|
|
|
/* Hash rewriting. */
|
|
|
|
HashRewrites rewritesToTmp, rewritesFromTmp;
|
|
|
|
PathSet redirectedOutputs;
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
/* Whether we're repairing. If set, a derivation will be rebuilt
|
|
|
|
if its outputs are valid but corrupt or missing. */
|
|
|
|
bool repair;
|
|
|
|
map<Path, Path> redirectedBadOutputs;
|
|
|
|
|
2012-09-29 04:26:36 +03:00
|
|
|
/* Magic exit code denoting that setting up the child environment
|
|
|
|
failed. (It's possible that the child actually returns the
|
|
|
|
exit code, but ah well.) */
|
|
|
|
const static int childSetupFailed = 189;
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
public:
|
2012-10-03 00:13:46 +03:00
|
|
|
DerivationGoal(const Path & drvPath, Worker & worker, bool repair = false);
|
2005-01-19 13:16:11 +02:00
|
|
|
~DerivationGoal();
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
void cancel();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
void work();
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
Path getDrvPath()
|
|
|
|
{
|
|
|
|
return drvPath;
|
|
|
|
}
|
2008-01-15 06:32:08 +02:00
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
private:
|
2004-06-18 21:09:32 +03:00
|
|
|
/* The states. */
|
|
|
|
void init();
|
2006-12-08 01:58:36 +02:00
|
|
|
void haveDerivation();
|
2005-01-25 12:55:33 +02:00
|
|
|
void outputsSubstituted();
|
2012-10-03 17:38:09 +03:00
|
|
|
void closureRepaired();
|
2005-01-19 13:16:11 +02:00
|
|
|
void inputsRealised();
|
2004-06-18 21:09:32 +03:00
|
|
|
void tryToBuild();
|
|
|
|
void buildDone();
|
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
/* Is the build hook willing to perform the build? */
|
|
|
|
HookReply tryBuildHook();
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Start building a derivation. */
|
|
|
|
void startBuilder();
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Initialise the builder's process. */
|
|
|
|
void initChild();
|
|
|
|
|
|
|
|
friend int childEntry(void *);
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Must be called after the output paths have become valid (either
|
|
|
|
due to a successful build or hook, or because they already
|
|
|
|
were). */
|
2005-01-19 13:16:11 +02:00
|
|
|
void computeClosure();
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Open a log file and a pipe to it. */
|
2008-11-12 13:08:27 +02:00
|
|
|
Path openLogFile();
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2012-05-30 17:12:29 +03:00
|
|
|
/* Close the log file. */
|
|
|
|
void closeLogFile();
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Delete the temporary directory, if we have one. */
|
2004-05-11 21:05:44 +03:00
|
|
|
void deleteTmpDir(bool force);
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-06-29 12:41:50 +03:00
|
|
|
/* Callback used by the worker to write to the log. */
|
2005-10-17 18:33:24 +03:00
|
|
|
void handleChildOutput(int fd, const string & data);
|
|
|
|
void handleEOF(int fd);
|
2004-06-29 12:41:50 +03:00
|
|
|
|
2005-01-25 12:55:33 +02:00
|
|
|
/* Return the set of (in)valid paths. */
|
2012-10-03 00:13:46 +03:00
|
|
|
PathSet checkPathValidity(bool returnValid, bool checkHash);
|
2006-12-08 20:41:48 +02:00
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
/* Abort the goal if `path' failed to build. */
|
|
|
|
bool pathFailed(const Path & path);
|
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
/* Forcibly kill the child process, if any. */
|
|
|
|
void killChild();
|
2012-10-03 00:13:46 +03:00
|
|
|
|
|
|
|
Path addHashRewrite(const Path & path);
|
2012-10-03 17:38:09 +03:00
|
|
|
|
|
|
|
void repairClosure();
|
2004-05-11 21:05:44 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
DerivationGoal::DerivationGoal(const Path & drvPath, Worker & worker, bool repair)
|
2005-01-19 13:16:11 +02:00
|
|
|
: Goal(worker)
|
2012-05-30 17:12:29 +03:00
|
|
|
, fLogFile(0)
|
|
|
|
, bzLogFile(0)
|
2012-02-24 21:57:54 +02:00
|
|
|
, useChroot(false)
|
2012-10-03 00:13:46 +03:00
|
|
|
, repair(repair)
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2005-01-19 13:16:11 +02:00
|
|
|
this->drvPath = drvPath;
|
|
|
|
state = &DerivationGoal::init;
|
2005-02-18 11:50:20 +02:00
|
|
|
name = (format("building of `%1%'") % drvPath).str();
|
|
|
|
trace("created");
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
DerivationGoal::~DerivationGoal()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
|
|
|
/* Careful: we should never ever throw an exception from a
|
|
|
|
destructor. */
|
|
|
|
try {
|
2006-12-08 20:41:48 +02:00
|
|
|
killChild();
|
2004-05-11 21:05:44 +03:00
|
|
|
deleteTmpDir(false);
|
2012-05-30 17:12:29 +03:00
|
|
|
closeLogFile();
|
2007-05-01 18:16:17 +03:00
|
|
|
} catch (...) {
|
|
|
|
ignoreException();
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
void DerivationGoal::killChild()
|
|
|
|
{
|
|
|
|
if (pid != -1) {
|
|
|
|
worker.childTerminated(pid);
|
|
|
|
|
|
|
|
if (buildUser.enabled()) {
|
|
|
|
/* We can't use pid.kill(), since we may not have the
|
|
|
|
appropriate privilege. I.e., if we're not root, then
|
|
|
|
setuid helper should do it).
|
|
|
|
|
|
|
|
Also, if we're using a build user, then there is a
|
|
|
|
tricky race condition: if we kill the build user before
|
|
|
|
the child has done its setuid() to the build user uid,
|
|
|
|
then it won't be killed, and we'll potentially lock up
|
|
|
|
in pid.wait(). So also send a conventional kill to the
|
|
|
|
child. */
|
|
|
|
::kill(-pid, SIGKILL); /* ignore the result */
|
|
|
|
buildUser.kill();
|
|
|
|
pid.wait(true);
|
|
|
|
} else
|
|
|
|
pid.kill();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
assert(pid == -1);
|
|
|
|
}
|
2010-08-25 23:44:28 +03:00
|
|
|
|
|
|
|
hook.reset();
|
2006-12-08 20:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::cancel()
|
|
|
|
{
|
|
|
|
killChild();
|
|
|
|
amDone(ecFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::work()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
(this->*state)();
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::init()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2004-06-22 17:48:59 +03:00
|
|
|
trace("init");
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.readOnlyMode)
|
2009-12-09 19:45:22 +02:00
|
|
|
throw Error(format("cannot build derivation `%1%' - no write access to the Nix store") % drvPath);
|
|
|
|
|
2005-01-20 18:01:07 +02:00
|
|
|
/* The first thing to do is to make sure that the derivation
|
2004-06-18 21:09:32 +03:00
|
|
|
exists. If it doesn't, it may be created through a
|
|
|
|
substitute. */
|
2005-01-19 13:16:11 +02:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(drvPath));
|
2003-08-01 17:11:19 +03:00
|
|
|
|
2006-12-08 01:58:36 +02:00
|
|
|
state = &DerivationGoal::haveDerivation;
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 01:58:36 +02:00
|
|
|
void DerivationGoal::haveDerivation()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2005-01-19 13:16:11 +02:00
|
|
|
trace("loading derivation");
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
if (nrFailed != 0) {
|
2008-12-11 20:57:10 +02:00
|
|
|
printMsg(lvlError, format("cannot build missing derivation `%1%'") % drvPath);
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecFailed);
|
2004-06-25 13:21:44 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-12 19:14:57 +02:00
|
|
|
/* `drvPath' should already be a root, but let's be on the safe
|
|
|
|
side: if the user forgot to make it a root, we wouldn't want
|
|
|
|
things being garbage collected while we're busy. */
|
|
|
|
worker.store.addTempRoot(drvPath);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
assert(worker.store.isValidPath(drvPath));
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
/* Get the derivation. */
|
2011-09-01 00:11:50 +03:00
|
|
|
drv = derivationFromPath(worker.store, drvPath);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2008-06-09 16:52:45 +03:00
|
|
|
worker.store.addTempRoot(i->second.path);
|
2005-01-31 12:27:25 +02:00
|
|
|
|
2005-01-25 12:55:33 +02:00
|
|
|
/* Check what outputs paths are not already valid. */
|
2012-10-03 00:13:46 +03:00
|
|
|
PathSet invalidOutputs = checkPathValidity(false, repair);
|
2005-01-25 12:55:33 +02:00
|
|
|
|
|
|
|
/* If they are all valid, then we're done. */
|
2012-10-03 00:13:46 +03:00
|
|
|
if (invalidOutputs.size() == 0 && !repair) {
|
2009-03-18 16:48:42 +02:00
|
|
|
amDone(ecSuccess);
|
|
|
|
return;
|
2005-01-25 12:55:33 +02:00
|
|
|
}
|
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
/* Check whether any output previously failed to build. If so,
|
|
|
|
don't bother. */
|
|
|
|
foreach (PathSet::iterator, i, invalidOutputs)
|
|
|
|
if (pathFailed(*i)) return;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-01-25 12:55:33 +02:00
|
|
|
/* We are first going to try to create the invalid output paths
|
|
|
|
through substitutes. If that doesn't work, we'll build
|
|
|
|
them. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.useSubstitutes)
|
2012-07-09 01:39:24 +03:00
|
|
|
foreach (PathSet::iterator, i, invalidOutputs)
|
2012-10-03 00:13:46 +03:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i, repair));
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-01-25 12:55:33 +02:00
|
|
|
if (waitees.empty()) /* to prevent hang (no wake-up event) */
|
|
|
|
outputsSubstituted();
|
|
|
|
else
|
|
|
|
state = &DerivationGoal::outputsSubstituted;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::outputsSubstituted()
|
|
|
|
{
|
|
|
|
trace("all outputs substituted (maybe)");
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (nrFailed > 0 && nrFailed > nrNoSubstituters && !settings.tryFallback)
|
2005-01-25 15:00:12 +02:00
|
|
|
throw Error(format("some substitutes for the outputs of derivation `%1%' failed; try `--fallback'") % drvPath);
|
|
|
|
|
2012-07-09 01:39:24 +03:00
|
|
|
nrFailed = nrNoSubstituters = 0;
|
2005-01-25 15:00:12 +02:00
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
if (checkPathValidity(false, repair).size() == 0) {
|
2012-10-03 17:38:09 +03:00
|
|
|
if (repair) repairClosure(); else amDone(ecSuccess);
|
2009-03-18 16:48:42 +02:00
|
|
|
return;
|
2004-05-14 15:24:29 +03:00
|
|
|
}
|
2003-08-01 17:11:19 +03:00
|
|
|
|
2005-01-25 12:55:33 +02:00
|
|
|
/* Otherwise, at least one of the output paths could not be
|
|
|
|
produced using a substitute. So we have to build instead. */
|
|
|
|
|
|
|
|
/* The inputs must be built before we can build this goal. */
|
2009-03-18 16:48:42 +02:00
|
|
|
foreach (DerivationInputs::iterator, i, drv.inputDrvs)
|
2012-10-03 17:38:09 +03:00
|
|
|
addWaitee(worker.makeDerivationGoal(i->first, repair));
|
2003-08-01 17:11:19 +03:00
|
|
|
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (PathSet::iterator, i, drv.inputSrcs)
|
2005-01-19 13:16:11 +02:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i));
|
|
|
|
|
2010-08-24 14:45:44 +03:00
|
|
|
if (waitees.empty()) /* to prevent hang (no wake-up event) */
|
|
|
|
inputsRealised();
|
|
|
|
else
|
|
|
|
state = &DerivationGoal::inputsRealised;
|
2004-05-13 22:14:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 17:38:09 +03:00
|
|
|
void DerivationGoal::repairClosure()
|
|
|
|
{
|
|
|
|
/* If we're repairing, we now know that our own outputs are valid.
|
|
|
|
Now check whether the other paths in the outputs closure are
|
|
|
|
good. If not, then start derivation goals for the derivations
|
|
|
|
that produced those outputs. */
|
|
|
|
|
|
|
|
/* Get the output closure. */
|
|
|
|
PathSet outputClosure;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
computeFSClosure(worker.store, i->second.path, outputClosure);
|
|
|
|
|
|
|
|
/* Filter out our own outputs (which we have already checked). */
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
outputClosure.erase(i->second.path);
|
|
|
|
|
|
|
|
/* Get all dependencies of this derivation so that we know which
|
|
|
|
derivation is responsible for which path in the output
|
|
|
|
closure. */
|
|
|
|
PathSet inputClosure;
|
|
|
|
computeFSClosure(worker.store, drvPath, inputClosure);
|
|
|
|
std::map<Path, Path> outputsToDrv;
|
|
|
|
foreach (PathSet::iterator, i, inputClosure)
|
|
|
|
if (isDerivation(*i)) {
|
|
|
|
Derivation drv = derivationFromPath(worker.store, *i);
|
|
|
|
foreach (DerivationOutputs::iterator, j, drv.outputs)
|
|
|
|
outputsToDrv[j->second.path] = *i;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check each path (slow!). */
|
|
|
|
PathSet broken;
|
|
|
|
foreach (PathSet::iterator, i, outputClosure) {
|
|
|
|
if (worker.store.pathContentsGood(*i)) continue;
|
|
|
|
printMsg(lvlError, format("found corrupted or missing path `%1%' in the output closure of `%2%'") % *i % drvPath);
|
|
|
|
Path drvPath2 = outputsToDrv[*i];
|
2012-10-03 22:35:42 +03:00
|
|
|
if (drvPath2 == "")
|
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i, true));
|
|
|
|
else
|
|
|
|
addWaitee(worker.makeDerivationGoal(drvPath2, true));
|
2012-10-03 17:38:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (waitees.empty()) {
|
|
|
|
amDone(ecSuccess);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = &DerivationGoal::closureRepaired;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::closureRepaired()
|
|
|
|
{
|
|
|
|
trace("closure repaired");
|
|
|
|
if (nrFailed > 0)
|
|
|
|
throw Error(format("some paths in the output closure of derivation `%1%' could not be repaired") % drvPath);
|
|
|
|
amDone(ecSuccess);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::inputsRealised()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2004-06-22 17:48:59 +03:00
|
|
|
trace("all inputs realised");
|
2004-05-13 22:14:49 +03:00
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
if (nrFailed != 0) {
|
|
|
|
printMsg(lvlError,
|
2005-01-19 13:16:11 +02:00
|
|
|
format("cannot build derivation `%1%': "
|
2009-03-18 16:48:42 +02:00
|
|
|
"%2% dependencies couldn't be built")
|
2005-01-19 13:16:11 +02:00
|
|
|
% drvPath % nrFailed);
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecFailed);
|
2004-06-25 13:21:44 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-18 16:48:42 +02:00
|
|
|
/* Gather information necessary for computing the closure and/or
|
|
|
|
running the build hook. */
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-18 16:48:42 +02:00
|
|
|
/* The outputs are referenceable paths. */
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
|
|
|
debug(format("building path `%1%'") % i->second.path);
|
|
|
|
allPaths.insert(i->second.path);
|
2008-01-15 06:32:08 +02:00
|
|
|
}
|
|
|
|
|
2009-03-18 16:48:42 +02:00
|
|
|
/* Determine the full set of input paths. */
|
|
|
|
|
|
|
|
/* First, the input derivations. */
|
|
|
|
foreach (DerivationInputs::iterator, i, drv.inputDrvs) {
|
|
|
|
/* Add the relevant output closures of the input derivation
|
|
|
|
`*i' as input paths. Only add the closures of output paths
|
|
|
|
that are specified as inputs. */
|
|
|
|
assert(worker.store.isValidPath(i->first));
|
2011-09-01 00:11:50 +03:00
|
|
|
Derivation inDrv = derivationFromPath(worker.store, i->first);
|
2009-03-18 16:48:42 +02:00
|
|
|
foreach (StringSet::iterator, j, i->second)
|
|
|
|
if (inDrv.outputs.find(*j) != inDrv.outputs.end())
|
2011-09-01 00:11:50 +03:00
|
|
|
computeFSClosure(worker.store, inDrv.outputs[*j].path, inputPaths);
|
2009-03-18 16:48:42 +02:00
|
|
|
else
|
|
|
|
throw Error(
|
|
|
|
format("derivation `%1%' requires non-existent output `%2%' from input derivation `%3%'")
|
|
|
|
% drvPath % *j % i->first);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Second, the input sources. */
|
|
|
|
foreach (PathSet::iterator, i, drv.inputSrcs)
|
2011-09-01 00:11:50 +03:00
|
|
|
computeFSClosure(worker.store, *i, inputPaths);
|
2009-03-18 16:48:42 +02:00
|
|
|
|
|
|
|
debug(format("added input paths %1%") % showPaths(inputPaths));
|
|
|
|
|
|
|
|
allPaths.insert(inputPaths.begin(), inputPaths.end());
|
|
|
|
|
2009-03-28 18:12:27 +02:00
|
|
|
/* Is this a fixed-output derivation? */
|
|
|
|
fixedOutput = true;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (i->second.hash == "") fixedOutput = false;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
/* Okay, try to build. Note that here we don't wait for a build
|
|
|
|
slot to become available, since we don't need one if there is a
|
|
|
|
build hook. */
|
2005-01-19 13:16:11 +02:00
|
|
|
state = &DerivationGoal::tryToBuild;
|
2004-06-20 00:45:04 +03:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-05-13 22:14:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
PathSet outputPaths(const DerivationOutputs & outputs)
|
|
|
|
{
|
|
|
|
PathSet paths;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (DerivationOutputs::const_iterator, i, outputs)
|
2009-03-23 01:53:05 +02:00
|
|
|
paths.insert(i->second.path);
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-04 15:13:58 +03:00
|
|
|
static bool canBuildLocally(const string & platform)
|
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
return platform == settings.thisSystem
|
2010-08-04 15:13:58 +03:00
|
|
|
#ifdef CAN_DO_LINUX32_BUILDS
|
2012-07-31 02:55:41 +03:00
|
|
|
|| (platform == "i686-linux" && settings.thisSystem == "x86_64-linux")
|
2010-08-04 15:13:58 +03:00
|
|
|
#endif
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::tryToBuild()
|
2004-05-13 22:14:49 +03:00
|
|
|
{
|
2004-06-22 17:48:59 +03:00
|
|
|
trace("trying to build");
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
/* Check for the possibility that some other goal in this process
|
|
|
|
has locked the output since we checked in haveDerivation().
|
|
|
|
(It can't happen between here and the lockPaths() call below
|
|
|
|
because we're not allowing multi-threading.) If so, put this
|
|
|
|
goal to sleep until another goal finishes, then try again. */
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (pathIsLockedByMe(i->second.path)) {
|
|
|
|
debug(format("putting derivation `%1%' to sleep because `%2%' is locked by another goal")
|
|
|
|
% drvPath % i->second.path);
|
2009-03-18 16:48:42 +02:00
|
|
|
worker.waitForAnyGoal(shared_from_this());
|
|
|
|
return;
|
2009-03-23 01:53:05 +02:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
/* Obtain locks on all output paths. The locks are automatically
|
2009-03-23 03:05:54 +02:00
|
|
|
released when we exit this function or Nix crashes. If we
|
|
|
|
can't acquire the lock, then continue; hopefully some other
|
|
|
|
goal can start a build, and if not, the main loop will sleep a
|
|
|
|
few seconds and then retry this goal. */
|
|
|
|
if (!outputLocks.lockPaths(outputPaths(drv.outputs), "", false)) {
|
|
|
|
worker.waitForAWhile(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
2009-03-23 01:53:05 +02:00
|
|
|
|
|
|
|
/* Now check again whether the outputs are valid. This is because
|
|
|
|
another process may have started building in parallel. After
|
|
|
|
it has finished and released the locks, we can (and should)
|
|
|
|
reuse its results. (Strictly speaking the first check can be
|
|
|
|
omitted, but that would be less efficient.) Note that since we
|
|
|
|
now hold the locks on the output paths, no other process can
|
|
|
|
build this derivation, so no further checks are necessary. */
|
2012-10-03 00:13:46 +03:00
|
|
|
validPaths = checkPathValidity(true, repair);
|
2009-03-23 01:53:05 +02:00
|
|
|
if (validPaths.size() == drv.outputs.size()) {
|
|
|
|
debug(format("skipping build of derivation `%1%', someone beat us to it")
|
|
|
|
% drvPath);
|
|
|
|
outputLocks.setDeletion(true);
|
|
|
|
amDone(ecSuccess);
|
|
|
|
return;
|
2009-03-18 16:48:42 +02:00
|
|
|
}
|
2004-06-25 13:21:44 +03:00
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
/* If any of the outputs already exist but are not valid, delete
|
|
|
|
them. */
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
|
|
|
Path path = i->second.path;
|
2012-09-11 23:59:59 +03:00
|
|
|
if (worker.store.isValidPath(path)) continue;
|
|
|
|
if (!pathExists(path)) continue;
|
|
|
|
debug(format("removing unregistered path `%1%'") % path);
|
|
|
|
deletePathWrapped(path);
|
2009-03-23 01:53:05 +02:00
|
|
|
}
|
2009-03-18 16:48:42 +02:00
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
/* Check again whether any output previously failed to build,
|
|
|
|
because some other process may have tried and failed before we
|
|
|
|
acquired the lock. */
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (pathFailed(i->second.path)) return;
|
|
|
|
|
2010-08-04 15:13:58 +03:00
|
|
|
/* Don't do a remote build if the derivation has the attribute
|
|
|
|
`preferLocalBuild' set. */
|
|
|
|
bool preferLocalBuild =
|
|
|
|
drv.env["preferLocalBuild"] == "1" && canBuildLocally(drv.platform);
|
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
/* Is the build hook willing to accept this job? */
|
2010-08-04 15:13:58 +03:00
|
|
|
if (!preferLocalBuild) {
|
|
|
|
switch (tryBuildHook()) {
|
|
|
|
case rpAccept:
|
|
|
|
/* Yes, it has started doing so. Wait until we get
|
|
|
|
EOF from the hook. */
|
|
|
|
state = &DerivationGoal::buildDone;
|
|
|
|
return;
|
|
|
|
case rpPostpone:
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Not now; wait until at least one child finishes or
|
|
|
|
the wake-up timeout expires. */
|
2010-08-04 15:13:58 +03:00
|
|
|
worker.waitForAWhile(shared_from_this());
|
|
|
|
outputLocks.unlock();
|
|
|
|
return;
|
|
|
|
case rpDecline:
|
|
|
|
/* We should do it ourselves. */
|
|
|
|
break;
|
|
|
|
}
|
2009-03-23 01:53:05 +02:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-04 15:13:58 +03:00
|
|
|
/* Make sure that we are allowed to start a build. If this
|
|
|
|
derivation prefers to be done locally, do it even if
|
|
|
|
maxBuildJobs is 0. */
|
|
|
|
unsigned int curBuilds = worker.getNrLocalBuilds();
|
2012-07-31 02:55:41 +03:00
|
|
|
if (curBuilds >= settings.maxBuildJobs && !(preferLocalBuild && curBuilds == 0)) {
|
2009-03-23 01:53:05 +02:00
|
|
|
worker.waitForBuildSlot(shared_from_this());
|
|
|
|
outputLocks.unlock();
|
|
|
|
return;
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-23 01:53:05 +02:00
|
|
|
try {
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
/* Okay, we have to build. */
|
|
|
|
startBuilder();
|
2003-08-01 17:11:19 +03:00
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
} catch (BuildError & e) {
|
|
|
|
printMsg(lvlError, e.msg());
|
2009-02-16 11:24:20 +02:00
|
|
|
outputLocks.unlock();
|
|
|
|
buildUser.release();
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace)
|
2009-03-23 01:53:05 +02:00
|
|
|
printMsg(lvlError, format("@ build-failed %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % 0 % e.msg());
|
2010-12-13 18:53:23 +02:00
|
|
|
worker.permanentFailure = true;
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecFailed);
|
2004-06-20 00:45:04 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This state will be reached when we get EOF on the child's
|
|
|
|
log pipe. */
|
2005-01-19 13:16:11 +02:00
|
|
|
state = &DerivationGoal::buildDone;
|
2004-06-20 00:45:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
void replaceValidPath(const Path & storePath, const Path tmpPath)
|
|
|
|
{
|
|
|
|
/* We can't atomically replace storePath (the original) with
|
|
|
|
tmpPath (the replacement), so we have to move it out of the
|
|
|
|
way first. We'd better not be interrupted here, because if
|
|
|
|
we're repairing (say) Glibc, we end up with a broken system. */
|
|
|
|
Path oldPath = (format("%1%.old-%2%-%3%") % storePath % getpid() % rand()).str();
|
|
|
|
if (pathExists(storePath)) {
|
|
|
|
makeMutable(storePath);
|
|
|
|
rename(storePath.c_str(), oldPath.c_str());
|
|
|
|
}
|
|
|
|
if (rename(tmpPath.c_str(), storePath.c_str()) == -1)
|
|
|
|
throw SysError(format("moving `%1%' to `%2%'") % tmpPath % storePath);
|
|
|
|
if (pathExists(oldPath))
|
|
|
|
deletePathWrapped(oldPath);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::buildDone()
|
2004-06-20 00:45:04 +03:00
|
|
|
{
|
2004-06-22 17:48:59 +03:00
|
|
|
trace("build done");
|
2004-06-20 00:45:04 +03:00
|
|
|
|
|
|
|
/* Since we got an EOF on the logger pipe, the builder is presumed
|
|
|
|
to have terminated. In fact, the builder could also have
|
|
|
|
simply have closed its end of the pipe --- just don't do that
|
|
|
|
:-) */
|
2010-08-25 23:44:28 +03:00
|
|
|
int status;
|
|
|
|
pid_t savedPid;
|
|
|
|
if (hook) {
|
|
|
|
savedPid = hook->pid;
|
|
|
|
status = hook->pid.wait(true);
|
|
|
|
} else {
|
|
|
|
/* !!! this could block! security problem! solution: kill the
|
|
|
|
child */
|
|
|
|
savedPid = pid;
|
|
|
|
status = pid.wait(true);
|
|
|
|
}
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2006-12-08 02:19:50 +02:00
|
|
|
debug(format("builder process for `%1%' finished") % drvPath);
|
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
/* So the child is gone now. */
|
2004-06-22 12:51:44 +03:00
|
|
|
worker.childTerminated(savedPid);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 02:19:50 +02:00
|
|
|
/* Close the read side of the logger pipe. */
|
2010-08-30 17:53:03 +03:00
|
|
|
if (hook) {
|
|
|
|
hook->builderOut.readSide.close();
|
|
|
|
hook->fromHook.readSide.close();
|
|
|
|
}
|
|
|
|
else builderOut.readSide.close();
|
2006-12-08 02:19:50 +02:00
|
|
|
|
|
|
|
/* Close the log file. */
|
2012-05-30 17:12:29 +03:00
|
|
|
closeLogFile();
|
2006-12-08 02:19:50 +02:00
|
|
|
|
2005-10-17 20:43:21 +03:00
|
|
|
/* When running under a build user, make sure that all processes
|
|
|
|
running under that uid are gone. This is to prevent a
|
|
|
|
malicious user from leaving behind a process that keeps files
|
|
|
|
open and modifies them after they have been chown'ed to
|
|
|
|
root. */
|
2009-03-18 16:48:42 +02:00
|
|
|
if (buildUser.enabled()) buildUser.kill();
|
2005-10-17 20:43:21 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
try {
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Some cleanup per path. We do this here and not in
|
|
|
|
computeClosure() for convenience when the build has
|
|
|
|
failed. */
|
2009-03-25 23:05:42 +02:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
2006-12-08 19:26:21 +02:00
|
|
|
Path path = i->second.path;
|
2008-12-11 20:57:10 +02:00
|
|
|
|
2012-09-12 01:39:22 +03:00
|
|
|
/* If the output was already valid, just skip (discard) it. */
|
|
|
|
if (validPaths.find(path) != validPaths.end()) continue;
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
if (useChroot && pathExists(chrootRootDir + path)) {
|
2012-09-12 01:39:22 +03:00
|
|
|
/* Move output paths from the chroot to the Nix store. */
|
2012-10-03 00:13:46 +03:00
|
|
|
if (repair)
|
|
|
|
replaceValidPath(path, chrootRootDir + path);
|
|
|
|
else
|
|
|
|
if (rename((chrootRootDir + path).c_str(), path.c_str()) == -1)
|
|
|
|
throw SysError(format("moving build output `%1%' from the chroot to the Nix store") % path);
|
|
|
|
}
|
|
|
|
|
|
|
|
Path redirected;
|
|
|
|
if (repair && (redirected = redirectedBadOutputs[path]) != "" && pathExists(redirected))
|
|
|
|
replaceValidPath(path, redirected);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
if (!pathExists(path)) continue;
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
if (lstat(path.c_str(), &st) == -1)
|
|
|
|
throw SysError(format("getting attributes of path `%1%'") % path);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 02:19:50 +02:00
|
|
|
#ifndef __CYGWIN__
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Check that the output is not group or world writable,
|
|
|
|
as that means that someone else can have interfered
|
|
|
|
with the build. Also, the output should be owned by
|
|
|
|
the build user. */
|
2006-12-13 01:05:01 +02:00
|
|
|
if ((!S_ISLNK(st.st_mode) && (st.st_mode & (S_IWGRP | S_IWOTH))) ||
|
2006-12-08 19:26:21 +02:00
|
|
|
(buildUser.enabled() && st.st_uid != buildUser.getUID()))
|
|
|
|
throw BuildError(format("suspicious ownership or permission on `%1%'; rejecting this build output") % path);
|
2006-12-08 02:19:50 +02:00
|
|
|
#endif
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2012-09-12 01:39:22 +03:00
|
|
|
/* Apply hash rewriting if necessary. */
|
|
|
|
if (!rewritesFromTmp.empty()) {
|
|
|
|
printMsg(lvlError, format("warning: rewriting hashes in `%1%'; cross fingers") % path);
|
|
|
|
/* FIXME: this is in-memory. */
|
|
|
|
StringSink sink;
|
|
|
|
dumpPath(path, sink);
|
|
|
|
deletePath(path);
|
2012-09-12 02:09:01 +03:00
|
|
|
sink.s = rewriteHashes(sink.s, rewritesFromTmp);
|
|
|
|
StringSource source(sink.s);
|
2012-09-12 01:39:22 +03:00
|
|
|
restorePath(path, source);
|
|
|
|
}
|
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Gain ownership of the build result using the setuid
|
|
|
|
wrapper if we're not root. If we *are* root, then
|
|
|
|
canonicalisePathMetaData() will take care of this later
|
|
|
|
on. */
|
|
|
|
if (buildUser.enabled() && !amPrivileged())
|
|
|
|
getOwnership(path);
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Check the exit status. */
|
|
|
|
if (!statusOk(status)) {
|
|
|
|
deleteTmpDir(false);
|
2012-09-29 04:26:36 +03:00
|
|
|
if (WIFEXITED(status) && WEXITSTATUS(status) == childSetupFailed)
|
|
|
|
throw Error(format("failed to set up the build environment for `%1%'") % drvPath);
|
2006-12-08 19:26:21 +02:00
|
|
|
throw BuildError(format("builder for `%1%' %2%")
|
|
|
|
% drvPath % statusToString(status));
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-12-11 19:00:12 +02:00
|
|
|
/* Delete the chroot (if we were using one). */
|
|
|
|
autoDelChroot.reset(); /* this runs the destructor */
|
2012-02-18 02:23:52 +02:00
|
|
|
|
2012-09-12 01:39:22 +03:00
|
|
|
/* Delete redirected outputs (when doing hash rewriting). */
|
|
|
|
foreach (PathSet::iterator, i, redirectedOutputs)
|
|
|
|
deletePath(*i);
|
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
/* Compute the FS closure of the outputs and register them as
|
|
|
|
being valid. */
|
2005-01-19 13:16:11 +02:00
|
|
|
computeClosure();
|
2008-11-12 13:08:27 +02:00
|
|
|
|
2012-09-18 17:11:42 +03:00
|
|
|
deleteTmpDir(true);
|
|
|
|
|
2011-12-25 18:38:37 +02:00
|
|
|
/* It is now safe to delete the lock files, since all future
|
|
|
|
lockers will see that the output paths are valid; they will
|
|
|
|
not create new lock files with the same names as the old
|
|
|
|
(unlinked) lock files. */
|
|
|
|
outputLocks.setDeletion(true);
|
|
|
|
outputLocks.unlock();
|
|
|
|
|
2004-06-25 13:21:44 +03:00
|
|
|
} catch (BuildError & e) {
|
|
|
|
printMsg(lvlError, e.msg());
|
2009-02-16 11:24:20 +02:00
|
|
|
outputLocks.unlock();
|
|
|
|
buildUser.release();
|
2009-04-15 09:25:02 +03:00
|
|
|
|
|
|
|
/* When using a build hook, the hook will return a remote
|
|
|
|
build failure using exit code 100. Anything else is a hook
|
|
|
|
problem. */
|
2010-08-25 23:44:28 +03:00
|
|
|
bool hookError = hook &&
|
2009-04-15 09:25:02 +03:00
|
|
|
(!WIFEXITED(status) || WEXITSTATUS(status) != 100);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2010-08-25 23:44:28 +03:00
|
|
|
if (hook && hookError)
|
2009-01-13 13:39:09 +02:00
|
|
|
printMsg(lvlError, format("@ hook-failed %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % status % e.msg());
|
|
|
|
else
|
|
|
|
printMsg(lvlError, format("@ build-failed %1% %2% %3% %4%")
|
2009-03-18 16:48:42 +02:00
|
|
|
% drvPath % drv.outputs["out"].path % 1 % e.msg());
|
2008-11-12 13:08:27 +02:00
|
|
|
}
|
2009-03-25 23:05:42 +02:00
|
|
|
|
|
|
|
/* Register the outputs of this build as "failed" so we won't
|
|
|
|
try to build them again (negative caching). However, don't
|
|
|
|
do this for fixed-output derivations, since they're likely
|
|
|
|
to fail for transient reasons (e.g., fetchurl not being
|
2009-04-15 09:25:02 +03:00
|
|
|
able to access the network). Hook errors (like
|
|
|
|
communication problems with the remote machine) shouldn't
|
|
|
|
be cached either. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.cacheFailure && !hookError && !fixedOutput)
|
2009-03-25 23:05:42 +02:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
worker.store.registerFailedPath(i->second.path);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-12-13 18:53:23 +02:00
|
|
|
worker.permanentFailure = !hookError && !fixedOutput;
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecFailed);
|
2004-06-25 13:21:44 +03:00
|
|
|
return;
|
|
|
|
}
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2005-10-20 19:58:34 +03:00
|
|
|
/* Release the build user, if applicable. */
|
|
|
|
buildUser.release();
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2008-11-12 13:08:27 +02:00
|
|
|
printMsg(lvlError, format("@ build-succeeded %1% %2%")
|
|
|
|
% drvPath % drv.outputs["out"].path);
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecSuccess);
|
2004-06-20 00:45:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
HookReply DerivationGoal::tryBuildHook()
|
2004-06-20 00:45:04 +03:00
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
if (!settings.useBuildHook || getEnv("NIX_BUILD_HOOK") == "") return rpDecline;
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
if (!worker.hook)
|
|
|
|
worker.hook = boost::shared_ptr<HookInstance>(new HookInstance);
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2010-08-27 16:18:13 +03:00
|
|
|
/* Tell the hook about system features (beyond the system type)
|
|
|
|
required from the build machine. (The hook could parse the
|
|
|
|
drv file itself, but this is easier.) */
|
2012-09-19 22:43:23 +03:00
|
|
|
Strings features = tokenizeString<Strings>(drv.env["requiredSystemFeatures"]);
|
2010-08-27 16:18:13 +03:00
|
|
|
foreach (Strings::iterator, i, features) checkStoreName(*i); /* !!! abuse */
|
|
|
|
|
|
|
|
/* Send the request to the hook. */
|
|
|
|
writeLine(worker.hook->toHook.writeSide, (format("%1% %2% %3% %4%")
|
2012-07-31 02:55:41 +03:00
|
|
|
% (worker.getNrLocalBuilds() < settings.maxBuildJobs ? "1" : "0")
|
2010-08-27 16:18:13 +03:00
|
|
|
% drv.platform % drvPath % concatStringsSep(",", features)).str());
|
2004-06-20 00:45:04 +03:00
|
|
|
|
|
|
|
/* Read the first line of input, which should be a word indicating
|
2009-03-28 21:29:55 +02:00
|
|
|
whether the hook wishes to perform the build. */
|
2004-06-20 00:45:04 +03:00
|
|
|
string reply;
|
2010-08-25 23:44:28 +03:00
|
|
|
while (true) {
|
|
|
|
string s = readLine(worker.hook->fromHook.readSide);
|
|
|
|
if (string(s, 0, 2) == "# ") {
|
|
|
|
reply = string(s, 2);
|
|
|
|
break;
|
2009-03-28 21:29:55 +02:00
|
|
|
}
|
2010-08-31 15:36:24 +03:00
|
|
|
s += "\n";
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr(s);
|
2004-06-20 00:45:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
debug(format("hook reply is `%1%'") % reply);
|
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
if (reply == "decline" || reply == "postpone")
|
2004-06-20 00:45:04 +03:00
|
|
|
return reply == "decline" ? rpDecline : rpPostpone;
|
2010-08-25 23:44:28 +03:00
|
|
|
else if (reply != "accept")
|
|
|
|
throw Error(format("bad hook reply `%1%'") % reply);
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
printMsg(lvlTalkative, format("using hook to build path(s) %1%")
|
|
|
|
% showPaths(outputPaths(drv.outputs)));
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
hook = worker.hook;
|
|
|
|
worker.hook.reset();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Tell the hook all the inputs that have to be copied to the
|
|
|
|
remote system. This unfortunately has to contain the entire
|
|
|
|
derivation closure to ensure that the validity invariant holds
|
|
|
|
on the remote system. (I.e., it's unfortunate that we have to
|
|
|
|
list it since the remote system *probably* already has it.) */
|
|
|
|
PathSet allInputs;
|
|
|
|
allInputs.insert(inputPaths.begin(), inputPaths.end());
|
2011-09-01 00:11:50 +03:00
|
|
|
computeFSClosure(worker.store, drvPath, allInputs);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
string s;
|
|
|
|
foreach (PathSet::iterator, i, allInputs) s += *i + " ";
|
|
|
|
writeLine(hook->toHook.writeSide, s);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Tell the hooks the outputs that have to be copied back from the
|
|
|
|
remote system. */
|
|
|
|
s = "";
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
s += i->second.path + " ";
|
|
|
|
writeLine(hook->toHook.writeSide, s);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
hook->toHook.writeSide.close();
|
2004-06-20 00:45:04 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Create the log file and pipe. */
|
|
|
|
Path logFile = openLogFile();
|
2010-08-30 17:53:03 +03:00
|
|
|
|
|
|
|
set<int> fds;
|
|
|
|
fds.insert(hook->fromHook.readSide);
|
|
|
|
fds.insert(hook->builderOut.readSide);
|
|
|
|
worker.childStarted(shared_from_this(), hook->pid, fds, false, false);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace)
|
2010-08-25 23:44:28 +03:00
|
|
|
printMsg(lvlError, format("@ build-started %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % drv.platform % logFile);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
|
|
|
return rpAccept;
|
2004-06-20 00:45:04 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-19 23:32:42 +03:00
|
|
|
void chmod_(const Path & path, mode_t mode)
|
2008-12-11 20:57:10 +02:00
|
|
|
{
|
2012-08-19 23:32:42 +03:00
|
|
|
if (chmod(path.c_str(), mode) == -1)
|
2008-12-11 20:57:10 +02:00
|
|
|
throw SysError(format("setting permissions on `%1%'") % path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
int childEntry(void * arg)
|
|
|
|
{
|
|
|
|
((DerivationGoal *) arg)->initChild();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::startBuilder()
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2012-09-13 17:06:24 +03:00
|
|
|
PathSet missing = outputPaths(drv.outputs);
|
|
|
|
foreach (PathSet::iterator, i, validPaths) missing.erase(*i);
|
|
|
|
startNest(nest, lvlInfo, format("building path(s) %1%") % showPaths(missing));
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-05-12 17:20:32 +03:00
|
|
|
/* Right platform? */
|
2010-08-04 15:13:58 +03:00
|
|
|
if (!canBuildLocally(drv.platform))
|
2009-03-18 16:48:42 +02:00
|
|
|
throw Error(
|
2004-06-25 13:21:44 +03:00
|
|
|
format("a `%1%' is required to build `%3%', but I am a `%2%'")
|
2012-07-31 02:55:41 +03:00
|
|
|
% drv.platform % settings.thisSystem % drvPath);
|
2004-05-12 17:20:32 +03:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* Construct the environment passed to the builder. */
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2003-08-18 17:54:54 +03:00
|
|
|
/* Most shells initialise PATH to some default (/bin:/usr/bin:...) when
|
|
|
|
PATH is not set. We don't want this, so we fill it in with some dummy
|
|
|
|
value. */
|
|
|
|
env["PATH"] = "/path-not-set";
|
|
|
|
|
2003-08-22 23:12:44 +03:00
|
|
|
/* Set HOME to a non-existing path to prevent certain programs from using
|
|
|
|
/etc/passwd (or NIS, or whatever) to locate the home directory (for
|
|
|
|
example, wget looks for ~/.wgetrc). I.e., these tools use /etc/passwd
|
|
|
|
if HOME is not set, but they will just assume that the settings file
|
|
|
|
they are looking for does not exist if HOME is set but points to some
|
|
|
|
non-existing path. */
|
|
|
|
env["HOME"] = "/homeless-shelter";
|
|
|
|
|
2004-03-12 12:45:08 +02:00
|
|
|
/* Tell the builder where the Nix store is. Usually they
|
|
|
|
shouldn't care, but this is useful for purity checking (e.g.,
|
|
|
|
the compiler or linker might only want to accept paths to files
|
|
|
|
in the store or in the build directory). */
|
2012-07-31 02:55:41 +03:00
|
|
|
env["NIX_STORE"] = settings.nixStore;
|
2004-03-12 12:45:08 +02:00
|
|
|
|
2010-06-23 17:34:08 +03:00
|
|
|
/* The maximum number of cores to utilize for parallel building. */
|
2012-07-31 02:55:41 +03:00
|
|
|
env["NIX_BUILD_CORES"] = (format("%d") % settings.buildCores).str();
|
2010-06-23 17:34:08 +03:00
|
|
|
|
2005-01-20 18:01:07 +02:00
|
|
|
/* Add all bindings specified in the derivation. */
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (StringPairs::iterator, i, drv.env)
|
2003-07-20 22:29:38 +03:00
|
|
|
env[i->first] = i->second;
|
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* Create a temporary directory where the build will take
|
|
|
|
place. */
|
2012-10-11 21:03:06 +03:00
|
|
|
tmpDir = createTempDir("", "nix-build-" + storePathToName(drvPath), false, false, 0700);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
/* For convenience, set an environment pointing to the top build
|
|
|
|
directory. */
|
2004-06-18 21:09:32 +03:00
|
|
|
env["NIX_BUILD_TOP"] = tmpDir;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
/* Also set TMPDIR and variants to point to this directory. */
|
2004-06-18 21:09:32 +03:00
|
|
|
env["TMPDIR"] = env["TEMPDIR"] = env["TMP"] = env["TEMP"] = tmpDir;
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2008-08-27 20:20:25 +03:00
|
|
|
/* Explicitly set PWD to prevent problems with chroot builds. In
|
|
|
|
particular, dietlibc cannot figure out the cwd because the
|
|
|
|
inode of the current directory doesn't appear in .. (because
|
|
|
|
getdents returns the inode of the mount point). */
|
|
|
|
env["PWD"] = tmpDir;
|
|
|
|
|
2005-02-22 17:23:24 +02:00
|
|
|
/* Compatibility hack with Nix <= 0.7: if this is a fixed-output
|
|
|
|
derivation, tell the builder, so that for instance `fetchurl'
|
|
|
|
can skip checking the output. On older Nixes, this environment
|
|
|
|
variable won't be set, so `fetchurl' will do the check. */
|
2009-03-28 18:12:27 +02:00
|
|
|
if (fixedOutput) env["NIX_OUTPUT_CHECKED"] = "1";
|
2006-05-31 12:51:45 +03:00
|
|
|
|
|
|
|
/* *Only* if this is a fixed-output derivation, propagate the
|
|
|
|
values of the environment variables specified in the
|
|
|
|
`impureEnvVars' attribute to the builder. This allows for
|
|
|
|
instance environment variables for proxy configuration such as
|
|
|
|
`http_proxy' to be easily passed to downloaders like
|
|
|
|
`fetchurl'. Passing such environment variables from the caller
|
|
|
|
to the builder is generally impure, but the output of
|
|
|
|
fixed-output derivations is by definition pure (since we
|
|
|
|
already know the cryptographic hash of the output). */
|
|
|
|
if (fixedOutput) {
|
2012-09-19 22:43:23 +03:00
|
|
|
Strings varNames = tokenizeString<Strings>(drv.env["impureEnvVars"]);
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Strings::iterator, i, varNames) env[*i] = getEnv(*i);
|
2006-05-31 12:51:45 +03:00
|
|
|
}
|
2005-10-17 18:33:24 +03:00
|
|
|
|
2006-11-13 20:18:13 +02:00
|
|
|
/* The `exportReferencesGraph' feature allows the references graph
|
|
|
|
to be passed to a builder. This attribute should be a list of
|
|
|
|
pairs [name1 path1 name2 path2 ...]. The references graph of
|
|
|
|
each `pathN' will be stored in a text file `nameN' in the
|
|
|
|
temporary build directory. The text files have the format used
|
|
|
|
by `nix-store --register-validity'. However, the deriver
|
|
|
|
fields are left empty. */
|
|
|
|
string s = drv.env["exportReferencesGraph"];
|
2012-09-19 22:43:23 +03:00
|
|
|
Strings ss = tokenizeString<Strings>(s);
|
2006-11-13 20:18:13 +02:00
|
|
|
if (ss.size() % 2 != 0)
|
2006-12-08 19:26:21 +02:00
|
|
|
throw BuildError(format("odd number of tokens in `exportReferencesGraph': `%1%'") % s);
|
2006-11-13 20:18:13 +02:00
|
|
|
for (Strings::iterator i = ss.begin(); i != ss.end(); ) {
|
|
|
|
string fileName = *i++;
|
2007-01-23 18:57:43 +02:00
|
|
|
checkStoreName(fileName); /* !!! abuse of this function */
|
|
|
|
|
|
|
|
/* Check that the store path is valid. */
|
2006-11-13 20:18:13 +02:00
|
|
|
Path storePath = *i++;
|
2007-01-23 18:57:43 +02:00
|
|
|
if (!isInStore(storePath))
|
|
|
|
throw BuildError(format("`exportReferencesGraph' contains a non-store path `%1%'")
|
|
|
|
% storePath);
|
|
|
|
storePath = toStorePath(storePath);
|
2008-06-09 16:52:45 +03:00
|
|
|
if (!worker.store.isValidPath(storePath))
|
2007-01-23 18:57:43 +02:00
|
|
|
throw BuildError(format("`exportReferencesGraph' contains an invalid path `%1%'")
|
2006-11-13 20:18:13 +02:00
|
|
|
% storePath);
|
2007-01-23 18:57:43 +02:00
|
|
|
|
2009-03-18 19:36:42 +02:00
|
|
|
/* If there are derivations in the graph, then include their
|
|
|
|
outputs as well. This is useful if you want to do things
|
|
|
|
like passing all build-time dependencies of some path to a
|
|
|
|
derivation that builds a NixOS DVD image. */
|
|
|
|
PathSet paths, paths2;
|
2011-09-01 00:11:50 +03:00
|
|
|
computeFSClosure(worker.store, storePath, paths);
|
2009-03-18 19:36:42 +02:00
|
|
|
paths2 = paths;
|
|
|
|
|
|
|
|
foreach (PathSet::iterator, j, paths2) {
|
|
|
|
if (isDerivation(*j)) {
|
2011-09-01 00:11:50 +03:00
|
|
|
Derivation drv = derivationFromPath(worker.store, *j);
|
2009-03-18 19:36:42 +02:00
|
|
|
foreach (DerivationOutputs::iterator, k, drv.outputs)
|
2011-09-01 00:11:50 +03:00
|
|
|
computeFSClosure(worker.store, k->second.path, paths);
|
2009-03-18 19:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
2007-12-30 11:30:56 +02:00
|
|
|
|
|
|
|
/* Write closure info to `fileName'. */
|
2010-01-29 14:22:58 +02:00
|
|
|
writeFile(tmpDir + "/" + fileName,
|
2010-11-16 19:11:46 +02:00
|
|
|
worker.store.makeValidityRegistration(paths, false, false));
|
2007-12-30 11:30:56 +02:00
|
|
|
}
|
2009-03-18 19:36:42 +02:00
|
|
|
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-06 22:00:15 +02:00
|
|
|
/* If `build-users-group' is not empty, then we have to build as
|
|
|
|
one of the members of that group. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.buildUsersGroup != "") {
|
2005-10-20 19:58:34 +03:00
|
|
|
buildUser.acquire();
|
|
|
|
assert(buildUser.getUID() != 0);
|
2006-12-06 22:00:15 +02:00
|
|
|
assert(buildUser.getGID() != 0);
|
2005-10-17 20:35:37 +03:00
|
|
|
|
|
|
|
/* Make sure that no other processes are executing under this
|
|
|
|
uid. */
|
2006-12-07 18:33:31 +02:00
|
|
|
buildUser.kill();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-07 02:16:07 +02:00
|
|
|
/* Change ownership of the temporary build directory, if we're
|
|
|
|
root. If we're not root, then the setuid helper will do it
|
|
|
|
just before it starts the builder. */
|
|
|
|
if (amPrivileged()) {
|
|
|
|
if (chown(tmpDir.c_str(), buildUser.getUID(), buildUser.getGID()) == -1)
|
|
|
|
throw SysError(format("cannot change ownership of `%1%'") % tmpDir);
|
|
|
|
}
|
2005-10-17 19:52:29 +03:00
|
|
|
|
|
|
|
/* Check that the Nix store has the appropriate permissions,
|
2006-12-06 22:00:15 +02:00
|
|
|
i.e., owned by root and mode 1775 (sticky bit on so that
|
2005-10-17 19:52:29 +03:00
|
|
|
the builder can create its output but not mess with the
|
|
|
|
outputs of other processes). */
|
|
|
|
struct stat st;
|
2012-07-31 02:55:41 +03:00
|
|
|
if (stat(settings.nixStore.c_str(), &st) == -1)
|
|
|
|
throw SysError(format("cannot stat `%1%'") % settings.nixStore);
|
2005-10-17 19:52:29 +03:00
|
|
|
if (!(st.st_mode & S_ISVTX) ||
|
2006-12-03 17:32:38 +02:00
|
|
|
((st.st_mode & S_IRWXG) != S_IRWXG) ||
|
2006-12-06 22:00:15 +02:00
|
|
|
(st.st_gid != buildUser.getGID()))
|
2005-10-17 19:52:29 +03:00
|
|
|
throw Error(format(
|
2006-12-07 02:16:07 +02:00
|
|
|
"builder does not have write permission to `%2%'; "
|
2006-12-03 17:32:38 +02:00
|
|
|
"try `chgrp %1% %2%; chmod 1775 %2%'")
|
2012-07-31 02:55:41 +03:00
|
|
|
% buildUser.getGID() % settings.nixStore);
|
2005-10-17 18:33:24 +03:00
|
|
|
}
|
|
|
|
|
2007-10-27 03:46:59 +03:00
|
|
|
|
2008-08-25 18:49:22 +03:00
|
|
|
/* Are we doing a chroot build? Note that fixed-output
|
|
|
|
derivations are never done in a chroot, mainly so that
|
|
|
|
functions like fetchurl (which needs a proper /etc/resolv.conf)
|
|
|
|
work properly. Purity checking for fixed-output derivations
|
|
|
|
is somewhat pointless anyway. */
|
2012-07-31 02:55:41 +03:00
|
|
|
useChroot = settings.useChroot;
|
2007-10-27 19:51:55 +03:00
|
|
|
|
2008-08-25 18:49:22 +03:00
|
|
|
if (fixedOutput) useChroot = false;
|
|
|
|
|
2010-06-01 13:01:14 +03:00
|
|
|
/* Hack to allow derivations to disable chroot builds. */
|
|
|
|
if (drv.env["__noChroot"] == "1") useChroot = false;
|
|
|
|
|
2007-10-27 03:46:59 +03:00
|
|
|
if (useChroot) {
|
2007-10-27 19:51:55 +03:00
|
|
|
#if CHROOT_ENABLED
|
2007-10-27 19:06:38 +03:00
|
|
|
/* Create a temporary directory in which we set up the chroot
|
2008-12-12 19:14:57 +02:00
|
|
|
environment using bind-mounts. We put it in the Nix store
|
|
|
|
to ensure that we can create hard-links to non-directory
|
|
|
|
inputs in the fake Nix store in the chroot (see below). */
|
|
|
|
chrootRootDir = drvPath + ".chroot";
|
2008-12-16 01:55:11 +02:00
|
|
|
if (pathExists(chrootRootDir)) deletePath(chrootRootDir);
|
2007-10-27 19:06:38 +03:00
|
|
|
|
2008-12-11 19:00:12 +02:00
|
|
|
/* Clean up the chroot directory automatically. */
|
|
|
|
autoDelChroot = boost::shared_ptr<AutoDelete>(new AutoDelete(chrootRootDir));
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-08-27 19:03:03 +03:00
|
|
|
printMsg(lvlChatty, format("setting up chroot environment in `%1%'") % chrootRootDir);
|
2007-10-27 03:46:59 +03:00
|
|
|
|
2008-08-27 19:03:03 +03:00
|
|
|
/* Create a writable /tmp in the chroot. Many builders need
|
|
|
|
this. (Of course they should really respect $TMPDIR
|
|
|
|
instead.) */
|
|
|
|
Path chrootTmpDir = chrootRootDir + "/tmp";
|
|
|
|
createDirs(chrootTmpDir);
|
2012-08-19 23:32:42 +03:00
|
|
|
chmod_(chrootTmpDir, 01777);
|
2008-08-27 19:03:03 +03:00
|
|
|
|
2010-03-11 12:21:23 +02:00
|
|
|
/* Create a /etc/passwd with entries for the build user and the
|
|
|
|
nobody account. The latter is kind of a hack to support
|
2010-03-11 17:45:05 +02:00
|
|
|
Samba-in-QEMU. */
|
2008-12-11 19:44:02 +02:00
|
|
|
createDirs(chrootRootDir + "/etc");
|
|
|
|
|
2010-01-29 14:22:58 +02:00
|
|
|
writeFile(chrootRootDir + "/etc/passwd",
|
2008-12-11 19:44:02 +02:00
|
|
|
(format(
|
2010-03-11 12:33:04 +02:00
|
|
|
"nixbld:x:%1%:%2%:Nix build user:/:/noshell\n"
|
2008-12-11 19:44:02 +02:00
|
|
|
"nobody:x:65534:65534:Nobody:/:/noshell\n")
|
2010-03-11 12:33:04 +02:00
|
|
|
% (buildUser.enabled() ? buildUser.getUID() : getuid())
|
2010-03-11 12:52:52 +02:00
|
|
|
% (buildUser.enabled() ? buildUser.getGID() : getgid())).str());
|
2008-12-11 19:44:02 +02:00
|
|
|
|
2012-07-27 16:59:18 +03:00
|
|
|
/* Declare the build user's group so that programs get a consistent
|
|
|
|
view of the system (e.g., "id -gn"). */
|
2010-03-11 17:45:05 +02:00
|
|
|
writeFile(chrootRootDir + "/etc/group",
|
|
|
|
(format("nixbld:!:%1%:\n")
|
|
|
|
% (buildUser.enabled() ? buildUser.getGID() : getgid())).str());
|
2010-03-11 16:47:04 +02:00
|
|
|
|
2011-11-21 17:19:51 +02:00
|
|
|
/* Create /etc/hosts with localhost entry. */
|
|
|
|
writeFile(chrootRootDir + "/etc/hosts", "127.0.0.1 localhost\n");
|
|
|
|
|
2008-08-27 19:03:03 +03:00
|
|
|
/* Bind-mount a user-configurable set of directories from the
|
2012-07-31 02:55:41 +03:00
|
|
|
host file system. */
|
|
|
|
dirsInChroot = settings.dirsInChroot;
|
2008-12-12 13:49:42 +02:00
|
|
|
dirsInChroot.insert(tmpDir);
|
2008-12-11 20:57:10 +02:00
|
|
|
|
|
|
|
/* Make the closure of the inputs available in the chroot,
|
|
|
|
rather than the whole Nix store. This prevents any access
|
|
|
|
to undeclared dependencies. Directories are bind-mounted,
|
|
|
|
while other inputs are hard-linked (since only directories
|
|
|
|
can be bind-mounted). !!! As an extra security
|
|
|
|
precaution, make the fake Nix store only writable by the
|
|
|
|
build user. */
|
2012-07-31 02:55:41 +03:00
|
|
|
createDirs(chrootRootDir + settings.nixStore);
|
2012-08-27 18:09:07 +03:00
|
|
|
chmod_(chrootRootDir + settings.nixStore, 01777);
|
2008-12-11 20:57:10 +02:00
|
|
|
|
|
|
|
foreach (PathSet::iterator, i, inputPaths) {
|
|
|
|
struct stat st;
|
|
|
|
if (lstat(i->c_str(), &st))
|
|
|
|
throw SysError(format("getting attributes of path `%1%'") % *i);
|
|
|
|
if (S_ISDIR(st.st_mode))
|
2008-12-12 13:49:42 +02:00
|
|
|
dirsInChroot.insert(*i);
|
2008-12-11 20:57:10 +02:00
|
|
|
else {
|
2012-02-18 02:23:52 +02:00
|
|
|
/* Creating a hard link to *i is impossible if its
|
|
|
|
immutable bit is set. So clear it first. */
|
|
|
|
makeMutable(*i);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-12-11 20:57:10 +02:00
|
|
|
Path p = chrootRootDir + *i;
|
2009-10-22 11:28:33 +03:00
|
|
|
if (link(i->c_str(), p.c_str()) == -1) {
|
|
|
|
/* Hard-linking fails if we exceed the maximum
|
|
|
|
link count on a file (e.g. 32000 of ext3),
|
|
|
|
which is quite possible after a `nix-store
|
2012-09-19 23:17:54 +03:00
|
|
|
--optimise'. */
|
|
|
|
if (errno != EMLINK)
|
2009-10-22 11:28:33 +03:00
|
|
|
throw SysError(format("linking `%1%' to `%2%'") % p % *i);
|
|
|
|
StringSink sink;
|
|
|
|
dumpPath(*i, sink);
|
|
|
|
StringSource source(sink.s);
|
|
|
|
restorePath(p, source);
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-02-18 02:23:52 +02:00
|
|
|
regularInputPaths.insert(*i);
|
2008-12-11 20:57:10 +02:00
|
|
|
}
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-10-03 18:20:16 +03:00
|
|
|
/* If we're repairing, it's possible that we're rebuilding a
|
|
|
|
path that is in settings.dirsInChroot (typically the
|
|
|
|
dependencies of /bin/sh). Throw them out. */
|
|
|
|
if (repair)
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
dirsInChroot.erase(i->second.path);
|
|
|
|
|
2007-10-27 19:51:55 +03:00
|
|
|
#else
|
|
|
|
throw Error("chroot builds are not supported on this platform");
|
|
|
|
#endif
|
2012-09-12 01:39:22 +03:00
|
|
|
}
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
else {
|
|
|
|
|
|
|
|
/* We're not doing a chroot build, but we have some valid
|
|
|
|
output paths. Since we can't just overwrite or delete
|
|
|
|
them, we have to do hash rewriting: i.e. in the
|
|
|
|
environment/arguments passed to the build, we replace the
|
|
|
|
hashes of the valid outputs with unique dummy strings;
|
|
|
|
after the build, we discard the redirected outputs
|
|
|
|
corresponding to the valid outputs, and rewrite the
|
|
|
|
contents of the new outputs to replace the dummy strings
|
|
|
|
with the actual hashes. */
|
|
|
|
if (validPaths.size() > 0)
|
|
|
|
//throw Error(format("derivation `%1%' is blocked by its output path(s) %2%") % drvPath % showPaths(validPaths));
|
|
|
|
foreach (PathSet::iterator, i, validPaths)
|
|
|
|
redirectedOutputs.insert(addHashRewrite(*i));
|
|
|
|
|
|
|
|
/* If we're repairing, then we don't want to delete the
|
|
|
|
corrupt outputs in advance. So rewrite them as well. */
|
|
|
|
if (repair)
|
|
|
|
foreach (PathSet::iterator, i, missing)
|
|
|
|
if (worker.store.isValidPath(*i) && pathExists(*i))
|
|
|
|
redirectedBadOutputs[*i] = addHashRewrite(*i);
|
2007-10-27 03:46:59 +03:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* Run the builder. */
|
|
|
|
printMsg(lvlChatty, format("executing builder `%1%'") %
|
2005-01-19 13:16:11 +02:00
|
|
|
drv.builder);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2010-08-25 23:44:28 +03:00
|
|
|
/* Create the log file. */
|
2008-11-12 13:08:27 +02:00
|
|
|
Path logFile = openLogFile();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-08-30 17:53:03 +03:00
|
|
|
/* Create a pipe to get the output of the builder. */
|
|
|
|
builderOut.create();
|
2010-08-25 23:44:28 +03:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
/* Fork a child to build the package. Note that while we
|
|
|
|
currently use forks to run and wait for the children, it
|
|
|
|
shouldn't be hard to use threads for this on systems where
|
2012-06-25 22:45:16 +03:00
|
|
|
fork() is unavailable or inefficient.
|
|
|
|
|
|
|
|
If we're building in a chroot, then also set up private
|
|
|
|
namespaces for the build:
|
|
|
|
|
|
|
|
- The PID namespace causes the build to start as PID 1.
|
|
|
|
Processes outside of the chroot are not visible to those on
|
|
|
|
the inside, but processes inside the chroot are visible from
|
|
|
|
the outside (though with different PIDs).
|
|
|
|
|
|
|
|
- The private mount namespace ensures that all the bind mounts
|
|
|
|
we do will only show up in this process and its children, and
|
|
|
|
will disappear automatically when we're done.
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
- The private network namespace ensures that the builder cannot
|
|
|
|
talk to the outside world (or vice versa). It only has a
|
|
|
|
private loopback interface.
|
|
|
|
|
|
|
|
- The IPC namespace prevents the builder from communicating
|
|
|
|
with outside processes using SysV IPC mechanisms (shared
|
|
|
|
memory, message queues, semaphores). It also ensures that
|
|
|
|
all IPC objects are destroyed when the builder exits.
|
2012-07-17 17:06:20 +03:00
|
|
|
|
|
|
|
- The UTS namespace ensures that builders see a hostname of
|
|
|
|
localhost rather than the actual hostname.
|
2012-06-25 22:45:16 +03:00
|
|
|
*/
|
|
|
|
#if CHROOT_ENABLED
|
|
|
|
if (useChroot) {
|
|
|
|
char stack[32 * 1024];
|
|
|
|
pid = clone(childEntry, stack + sizeof(stack) - 8,
|
|
|
|
CLONE_NEWPID | CLONE_NEWNS | CLONE_NEWNET | CLONE_NEWIPC | CLONE_NEWUTS | SIGCHLD, this);
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
pid = fork();
|
|
|
|
if (pid == 0) initChild();
|
|
|
|
}
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2012-06-27 16:52:06 +03:00
|
|
|
if (pid == -1) throw SysError("unable to fork");
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* parent */
|
|
|
|
pid.setSeparatePG(true);
|
|
|
|
builderOut.writeSide.close();
|
|
|
|
worker.childStarted(shared_from_this(), pid,
|
|
|
|
singleton<set<int> >(builderOut.readSide), true, true);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2012-06-25 22:45:16 +03:00
|
|
|
printMsg(lvlError, format("@ build-started %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % drv.platform % logFile);
|
|
|
|
}
|
|
|
|
}
|
2004-05-11 21:05:44 +03:00
|
|
|
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
void DerivationGoal::initChild()
|
|
|
|
{
|
|
|
|
/* Warning: in the child we should absolutely not make any SQLite
|
|
|
|
calls! */
|
|
|
|
|
2012-09-29 04:26:36 +03:00
|
|
|
bool inSetup = true;
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
try { /* child */
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2007-10-27 19:51:55 +03:00
|
|
|
#if CHROOT_ENABLED
|
2012-06-25 22:45:16 +03:00
|
|
|
if (useChroot) {
|
|
|
|
/* Initialise the loopback interface. */
|
|
|
|
AutoCloseFD fd(socket(PF_INET, SOCK_DGRAM, IPPROTO_IP));
|
|
|
|
if (fd == -1) throw SysError("cannot open IP socket");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
struct ifreq ifr;
|
|
|
|
strcpy(ifr.ifr_name, "lo");
|
|
|
|
ifr.ifr_flags = IFF_UP | IFF_LOOPBACK | IFF_RUNNING;
|
|
|
|
if (ioctl(fd, SIOCSIFFLAGS, &ifr) == -1)
|
|
|
|
throw SysError("cannot set loopback interface flags");
|
|
|
|
|
|
|
|
fd.close();
|
|
|
|
|
|
|
|
/* Set the hostname etc. to fixed values. */
|
|
|
|
char hostname[] = "localhost";
|
|
|
|
sethostname(hostname, sizeof(hostname));
|
|
|
|
char domainname[] = "(none)"; // kernel default
|
|
|
|
setdomainname(domainname, sizeof(domainname));
|
|
|
|
|
2012-08-20 22:27:30 +03:00
|
|
|
/* Make all filesystems private. This is necessary
|
|
|
|
because subtrees may have been mounted as "shared"
|
|
|
|
(MS_SHARED). (Systemd does this, for instance.) Even
|
|
|
|
though we have a private mount namespace, mounting
|
|
|
|
filesystems on top of a shared subtree still propagates
|
|
|
|
outside of the namespace. Making a subtree private is
|
|
|
|
local to the namespace, though, so setting MS_PRIVATE
|
|
|
|
does not affect the outside world. */
|
2012-09-19 22:43:23 +03:00
|
|
|
Strings mounts = tokenizeString<Strings>(readFile("/proc/self/mountinfo", true), "\n");
|
2012-08-20 22:27:30 +03:00
|
|
|
foreach (Strings::iterator, i, mounts) {
|
2012-09-19 22:43:23 +03:00
|
|
|
vector<string> fields = tokenizeString<vector<string> >(*i, " ");
|
2012-09-29 04:39:30 +03:00
|
|
|
string fs = decodeOctalEscaped(fields.at(4));
|
|
|
|
if (mount(0, fs.c_str(), 0, MS_PRIVATE, 0) == -1)
|
|
|
|
throw SysError(format("unable to make filesystem `%1%' private") % fs);
|
2012-08-20 22:27:30 +03:00
|
|
|
}
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Bind-mount all the directories from the "host"
|
|
|
|
filesystem that we want in the chroot
|
|
|
|
environment. */
|
|
|
|
foreach (PathSet::iterator, i, dirsInChroot) {
|
|
|
|
Path source = *i;
|
|
|
|
Path target = chrootRootDir + source;
|
2012-08-20 22:27:00 +03:00
|
|
|
if (source == "/proc") continue; // backwards compatibility
|
2012-06-25 22:45:16 +03:00
|
|
|
debug(format("bind mounting `%1%' to `%2%'") % source % target);
|
|
|
|
createDirs(target);
|
|
|
|
if (mount(source.c_str(), target.c_str(), "", MS_BIND, 0) == -1)
|
|
|
|
throw SysError(format("bind mount from `%1%' to `%2%' failed") % source % target);
|
2008-12-11 19:00:12 +02:00
|
|
|
}
|
2012-06-25 22:45:16 +03:00
|
|
|
|
|
|
|
/* Bind a new instance of procfs on /proc to reflect our
|
|
|
|
private PID namespace. */
|
2012-08-20 22:27:00 +03:00
|
|
|
createDirs(chrootRootDir + "/proc");
|
2012-06-25 22:45:16 +03:00
|
|
|
if (mount("none", (chrootRootDir + "/proc").c_str(), "proc", 0, 0) == -1)
|
|
|
|
throw SysError("mounting /proc");
|
2012-06-27 16:52:27 +03:00
|
|
|
|
|
|
|
/* Mount a new tmpfs on /dev/shm to ensure that whatever
|
|
|
|
the builder puts in /dev/shm is cleaned up automatically. */
|
|
|
|
if (pathExists("/dev/shm"))
|
|
|
|
if (mount("none", (chrootRootDir + "/dev/shm").c_str(), "tmpfs", 0, 0) == -1)
|
|
|
|
throw SysError("mounting /dev/shm");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Do the chroot(). Below we do a chdir() to the
|
|
|
|
temporary build directory to make sure the current
|
|
|
|
directory is in the chroot. (Actually the order
|
|
|
|
doesn't matter, since due to the bind mount tmpDir and
|
|
|
|
tmpRootDit/tmpDir are the same directories.) */
|
|
|
|
if (chroot(chrootRootDir.c_str()) == -1)
|
|
|
|
throw SysError(format("cannot change root directory to `%1%'") % chrootRootDir);
|
|
|
|
}
|
2007-10-27 19:51:55 +03:00
|
|
|
#endif
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
commonChildInit(builderOut);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
if (chdir(tmpDir.c_str()) == -1)
|
|
|
|
throw SysError(format("changing into `%1%'") % tmpDir);
|
2010-08-25 23:44:28 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Close all other file descriptors. */
|
|
|
|
closeMostFDs(set<int>());
|
2012-04-15 01:20:32 +03:00
|
|
|
|
2009-01-12 18:30:32 +02:00
|
|
|
#ifdef CAN_DO_LINUX32_BUILDS
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Change the personality to 32-bit if we're doing an
|
|
|
|
i686-linux build on an x86_64-linux machine. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (drv.platform == "i686-linux" && settings.thisSystem == "x86_64-linux") {
|
2012-06-25 22:45:16 +03:00
|
|
|
if (personality(0x0008 | 0x8000000 /* == PER_LINUX32_3GB */) == -1)
|
|
|
|
throw SysError("cannot set i686-linux personality");
|
|
|
|
}
|
2012-04-05 14:03:19 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Impersonate a Linux 2.6 machine to get some determinism in
|
|
|
|
builds that depend on the kernel version. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if ((drv.platform == "i686-linux" || drv.platform == "x86_64-linux") && settings.impersonateLinux26) {
|
2012-06-25 22:45:16 +03:00
|
|
|
int cur = personality(0xffffffff);
|
|
|
|
if (cur != -1) personality(cur | 0x0020000 /* == UNAME26 */);
|
|
|
|
}
|
2009-01-12 18:30:32 +02:00
|
|
|
#endif
|
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Fill in the environment. */
|
|
|
|
Strings envStrs;
|
|
|
|
foreach (Environment::const_iterator, i, env)
|
2012-09-12 01:39:22 +03:00
|
|
|
envStrs.push_back(rewriteHashes(i->first + "=" + i->second, rewritesToTmp));
|
2012-06-25 22:45:16 +03:00
|
|
|
const char * * envArr = strings2CharPtrs(envStrs);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
Path program = drv.builder.c_str();
|
|
|
|
std::vector<const char *> args; /* careful with c_str()! */
|
|
|
|
string user; /* must be here for its c_str()! */
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* If we are running in `build-users' mode, then switch to the
|
|
|
|
user we allocated above. Make sure that we drop all root
|
|
|
|
privileges. Note that above we have closed all file
|
|
|
|
descriptors except std*, so that's safe. Also note that
|
|
|
|
setuid() when run as root sets the real, effective and
|
|
|
|
saved UIDs. */
|
|
|
|
if (buildUser.enabled()) {
|
|
|
|
printMsg(lvlChatty, format("switching to user `%1%'") % buildUser.getUser());
|
|
|
|
|
|
|
|
if (amPrivileged()) {
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
if (setgroups(0, 0) == -1)
|
|
|
|
throw SysError("cannot clear the set of supplementary groups");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
if (setgid(buildUser.getGID()) == -1 ||
|
|
|
|
getgid() != buildUser.getGID() ||
|
|
|
|
getegid() != buildUser.getGID())
|
|
|
|
throw SysError("setgid failed");
|
|
|
|
|
|
|
|
if (setuid(buildUser.getUID()) == -1 ||
|
|
|
|
getuid() != buildUser.getUID() ||
|
|
|
|
geteuid() != buildUser.getUID())
|
|
|
|
throw SysError("setuid failed");
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
} else {
|
|
|
|
/* Let the setuid helper take care of it. */
|
2012-07-31 02:55:41 +03:00
|
|
|
program = settings.nixLibexecDir + "/nix-setuid-helper";
|
2012-06-25 22:45:16 +03:00
|
|
|
args.push_back(program.c_str());
|
|
|
|
args.push_back("run-builder");
|
|
|
|
user = buildUser.getUser().c_str();
|
|
|
|
args.push_back(user.c_str());
|
|
|
|
args.push_back(drv.builder.c_str());
|
2005-10-17 18:33:24 +03:00
|
|
|
}
|
2012-06-25 22:45:16 +03:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Fill in the arguments. */
|
|
|
|
string builderBasename = baseNameOf(drv.builder);
|
|
|
|
args.push_back(builderBasename.c_str());
|
|
|
|
foreach (Strings::iterator, i, drv.args)
|
2012-09-12 01:39:22 +03:00
|
|
|
args.push_back(rewriteHashes(*i, rewritesToTmp).c_str());
|
2012-06-25 22:45:16 +03:00
|
|
|
args.push_back(0);
|
2006-12-07 02:42:30 +02:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
restoreSIGPIPE();
|
2008-11-14 17:46:45 +02:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
/* Execute the program. This should not return. */
|
2012-09-29 04:26:36 +03:00
|
|
|
inSetup = false;
|
2012-06-25 22:45:16 +03:00
|
|
|
execve(program.c_str(), (char * *) &args[0], (char * *) envArr);
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2012-09-29 04:26:36 +03:00
|
|
|
throw SysError(format("executing `%1%'") % drv.builder);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-06-25 22:45:16 +03:00
|
|
|
} catch (std::exception & e) {
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr("build error: " + string(e.what()) + "\n");
|
2012-11-09 17:42:10 +02:00
|
|
|
_exit(inSetup ? childSetupFailed : 1);
|
2008-11-12 13:08:27 +02:00
|
|
|
}
|
2012-09-29 04:26:36 +03:00
|
|
|
|
|
|
|
abort(); /* never reached */
|
2004-05-14 01:52:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-19 19:09:24 +03:00
|
|
|
/* Parse a list of reference specifiers. Each element must either be
|
|
|
|
a store path, or the symbolic name of the output of the derivation
|
|
|
|
(such as `out'). */
|
|
|
|
PathSet parseReferenceSpecifiers(const Derivation & drv, string attr)
|
|
|
|
{
|
|
|
|
PathSet result;
|
2012-09-19 22:43:23 +03:00
|
|
|
Paths paths = tokenizeString<Paths>(attr);
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Strings::iterator, i, paths) {
|
2006-10-19 19:09:24 +03:00
|
|
|
if (isStorePath(*i))
|
|
|
|
result.insert(*i);
|
|
|
|
else if (drv.outputs.find(*i) != drv.outputs.end())
|
|
|
|
result.insert(drv.outputs.find(*i)->second.path);
|
2006-12-08 19:26:21 +02:00
|
|
|
else throw BuildError(
|
2006-10-19 19:09:24 +03:00
|
|
|
format("derivation contains an illegal reference specifier `%1%'")
|
|
|
|
% *i);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::computeClosure()
|
2004-05-18 17:52:35 +03:00
|
|
|
{
|
2005-01-19 13:16:11 +02:00
|
|
|
map<Path, PathSet> allReferences;
|
2010-11-16 19:11:46 +02:00
|
|
|
map<Path, HashResult> contentHashes;
|
2009-02-02 19:24:10 +02:00
|
|
|
|
|
|
|
/* When using a build hook, the build hook can register the output
|
|
|
|
as valid (by doing `nix-store --import'). If so we don't have
|
|
|
|
to do anything here. */
|
2010-08-25 23:44:28 +03:00
|
|
|
if (hook) {
|
2009-02-02 19:24:10 +02:00
|
|
|
bool allValid = true;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (!worker.store.isValidPath(i->second.path)) allValid = false;
|
|
|
|
if (allValid) return;
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Check whether the output paths were created, and grep each
|
|
|
|
output path to determine what other paths it references. Also make all
|
|
|
|
output paths read-only. */
|
2009-02-02 19:24:10 +02:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
* Removed the `id' attribute hack.
* Formalise the notion of fixed-output derivations, i.e., derivations
for which a cryptographic hash of the output is known in advance.
Changes to such derivations should not propagate upwards through the
dependency graph. Previously this was done by specifying the hash
component of the output path through the `id' attribute, but this is
insecure since you can lie about it (i.e., you can specify any hash
and then produce a completely different output). Now the
responsibility for checking the output is moved from the builder to
Nix itself.
A fixed-output derivation can be created by specifying the
`outputHash' and `outputHashAlgo' attributes, the latter taking
values `md5', `sha1', and `sha256', and the former specifying the
actual hash in hexadecimal or in base-32 (auto-detected by looking
at the length of the attribute value). MD5 is included for
compatibility but should be considered deprecated.
* Removed the `drvPath' pseudo-attribute in derivation results. It's
no longer necessary.
* Cleaned up the support for multiple output paths in derivation store
expressions. Each output now has a unique identifier (e.g., `out',
`devel', `docs'). Previously there was no way to tell output paths
apart at the store expression level.
* `nix-hash' now has a flag `--base32' to specify that the hash should
be printed in base-32 notation.
* `fetchurl' accepts parameters `sha256' and `sha1' in addition to
`md5'.
* `nix-prefetch-url' now prints out a SHA-1 hash in base-32. (TODO: a
flag to specify the hash.)
2005-01-17 18:55:19 +02:00
|
|
|
Path path = i->second.path;
|
2004-06-25 13:21:44 +03:00
|
|
|
if (!pathExists(path)) {
|
|
|
|
throw BuildError(
|
2004-07-06 14:21:34 +03:00
|
|
|
format("builder for `%1%' failed to produce output path `%2%'")
|
2005-01-19 13:16:11 +02:00
|
|
|
% drvPath % path);
|
2004-06-25 13:21:44 +03:00
|
|
|
}
|
2004-05-18 17:52:35 +03:00
|
|
|
|
2005-10-17 19:59:25 +03:00
|
|
|
struct stat st;
|
2006-12-08 19:26:21 +02:00
|
|
|
if (lstat(path.c_str(), &st) == -1)
|
2005-10-17 19:59:25 +03:00
|
|
|
throw SysError(format("getting attributes of path `%1%'") % path);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-04-11 11:07:41 +03:00
|
|
|
startNest(nest, lvlTalkative,
|
|
|
|
format("scanning for references inside `%1%'") % path);
|
|
|
|
|
2005-01-17 21:01:48 +02:00
|
|
|
/* Check that fixed-output derivations produced the right
|
|
|
|
outputs (i.e., the content hash should match the specified
|
2012-07-27 16:59:18 +03:00
|
|
|
hash). */
|
2005-01-17 21:01:48 +02:00
|
|
|
if (i->second.hash != "") {
|
2005-02-22 23:14:41 +02:00
|
|
|
|
2011-07-20 21:10:47 +03:00
|
|
|
bool recursive; HashType ht; Hash h;
|
|
|
|
i->second.parseHashInfo(recursive, ht, h);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-02-22 23:14:41 +02:00
|
|
|
if (!recursive) {
|
|
|
|
/* The output path should be a regular file without
|
|
|
|
execute permission. */
|
|
|
|
if (!S_ISREG(st.st_mode) || (st.st_mode & S_IXUSR) != 0)
|
2006-12-08 19:26:21 +02:00
|
|
|
throw BuildError(
|
2005-02-22 23:14:41 +02:00
|
|
|
format("output path `%1% should be a non-executable regular file")
|
|
|
|
% path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the hash. */
|
2010-11-16 19:11:46 +02:00
|
|
|
Hash h2 = recursive ? hashPath(ht, path).first : hashFile(ht, path);
|
2005-01-17 21:01:48 +02:00
|
|
|
if (h != h2)
|
2006-12-08 19:26:21 +02:00
|
|
|
throw BuildError(
|
2005-05-10 17:21:46 +03:00
|
|
|
format("output path `%1%' should have %2% hash `%3%', instead has `%4%'")
|
2012-10-23 19:05:50 +03:00
|
|
|
% path % i->second.hashAlgo % printHash16or32(h) % printHash16or32(h2));
|
2005-01-17 21:01:48 +02:00
|
|
|
}
|
|
|
|
|
2005-10-17 19:59:25 +03:00
|
|
|
/* Get rid of all weird permissions. */
|
2012-07-27 16:59:18 +03:00
|
|
|
canonicalisePathMetaData(path);
|
2004-05-13 22:14:49 +03:00
|
|
|
|
2012-07-27 16:59:18 +03:00
|
|
|
/* For this output path, find the references to other paths
|
|
|
|
contained in it. Compute the SHA-256 NAR hash at the same
|
|
|
|
time. The hash is stored in the database so that we can
|
|
|
|
verify later on whether nobody has messed with the store. */
|
2010-11-16 19:11:46 +02:00
|
|
|
HashResult hash;
|
2009-03-28 22:51:33 +02:00
|
|
|
PathSet references = scanForReferences(path, allPaths, hash);
|
|
|
|
contentHashes[path] = hash;
|
2006-11-13 20:19:05 +02:00
|
|
|
|
|
|
|
/* For debugging, print out the referenced and unreferenced
|
|
|
|
paths. */
|
2009-03-28 22:51:33 +02:00
|
|
|
foreach (PathSet::iterator, i, inputPaths) {
|
2006-11-13 20:19:05 +02:00
|
|
|
PathSet::iterator j = references.find(*i);
|
|
|
|
if (j == references.end())
|
|
|
|
debug(format("unreferenced input: `%1%'") % *i);
|
|
|
|
else
|
|
|
|
debug(format("referenced input: `%1%'") % *i);
|
2004-05-13 22:14:49 +03:00
|
|
|
}
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
allReferences[path] = references;
|
2005-01-19 18:39:47 +02:00
|
|
|
|
2006-10-19 19:09:24 +03:00
|
|
|
/* If the derivation specifies an `allowedReferences'
|
|
|
|
attribute (containing a list of paths that the output may
|
|
|
|
refer to), check that all references are in that list. !!!
|
|
|
|
allowedReferences should really be per-output. */
|
|
|
|
if (drv.env.find("allowedReferences") != drv.env.end()) {
|
|
|
|
PathSet allowed = parseReferenceSpecifiers(drv, drv.env["allowedReferences"]);
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (PathSet::iterator, i, references)
|
2006-10-19 19:09:24 +03:00
|
|
|
if (allowed.find(*i) == allowed.end())
|
2006-12-08 19:26:21 +02:00
|
|
|
throw BuildError(format("output is not allowed to refer to path `%1%'") % *i);
|
2006-10-19 19:09:24 +03:00
|
|
|
}
|
2012-07-23 22:02:52 +03:00
|
|
|
|
|
|
|
worker.store.optimisePath(path); // FIXME: combine with scanForReferences()
|
2012-10-03 17:38:09 +03:00
|
|
|
|
|
|
|
worker.store.markContentsGood(path);
|
2004-05-18 17:52:35 +03:00
|
|
|
}
|
2004-05-13 22:14:49 +03:00
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
/* Register each output path as valid, and register the sets of
|
2011-12-30 16:47:14 +02:00
|
|
|
paths referenced by each of them. If there are cycles in the
|
|
|
|
outputs, this will fail. */
|
2010-11-16 19:11:46 +02:00
|
|
|
ValidPathInfos infos;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
|
|
|
ValidPathInfo info;
|
|
|
|
info.path = i->second.path;
|
|
|
|
info.hash = contentHashes[i->second.path].first;
|
|
|
|
info.narSize = contentHashes[i->second.path].second;
|
|
|
|
info.references = allReferences[i->second.path];
|
|
|
|
info.deriver = drvPath;
|
|
|
|
infos.push_back(info);
|
|
|
|
}
|
|
|
|
worker.store.registerValidPaths(infos);
|
2004-05-14 01:52:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 19:33:54 +03:00
|
|
|
string drvsLogDir = "drvs";
|
2005-03-24 19:46:38 +02:00
|
|
|
|
|
|
|
|
2008-11-12 13:08:27 +02:00
|
|
|
Path DerivationGoal::openLogFile()
|
2004-05-13 22:14:49 +03:00
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
if (!settings.keepLog) return "";
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-05-13 22:14:49 +03:00
|
|
|
/* Create a log file. */
|
2012-07-31 02:55:41 +03:00
|
|
|
Path dir = (format("%1%/%2%") % settings.nixLogDir % drvsLogDir).str();
|
2005-03-24 19:46:38 +02:00
|
|
|
createDirs(dir);
|
2012-05-30 17:12:29 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.compressLog) {
|
2012-05-30 17:12:29 +03:00
|
|
|
|
2012-07-17 16:40:12 +03:00
|
|
|
Path logFileName = (format("%1%/%2%.bz2") % dir % baseNameOf(drvPath)).str();
|
|
|
|
AutoCloseFD fd = open(logFileName.c_str(), O_CREAT | O_WRONLY | O_TRUNC, 0666);
|
|
|
|
if (fd == -1) throw SysError(format("creating log file `%1%'") % logFileName);
|
|
|
|
closeOnExec(fd);
|
2012-05-30 17:12:29 +03:00
|
|
|
|
2012-07-17 16:40:12 +03:00
|
|
|
if (!(fLogFile = fdopen(fd.borrow(), "w")))
|
|
|
|
throw SysError(format("opening file `%1%'") % logFileName);
|
|
|
|
|
|
|
|
int err;
|
|
|
|
if (!(bzLogFile = BZ2_bzWriteOpen(&err, fLogFile, 9, 0, 0)))
|
|
|
|
throw Error(format("cannot open compressed log file `%1%'") % logFileName);
|
2012-05-30 17:12:29 +03:00
|
|
|
|
2012-07-17 16:40:12 +03:00
|
|
|
return logFileName;
|
2004-05-13 22:14:49 +03:00
|
|
|
|
2012-07-17 16:40:12 +03:00
|
|
|
} else {
|
|
|
|
Path logFileName = (format("%1%/%2%") % dir % baseNameOf(drvPath)).str();
|
|
|
|
fdLogFile = open(logFileName.c_str(), O_CREAT | O_WRONLY | O_TRUNC, 0666);
|
|
|
|
if (fdLogFile == -1) throw SysError(format("creating log file `%1%'") % logFileName);
|
|
|
|
closeOnExec(fdLogFile);
|
|
|
|
return logFileName;
|
|
|
|
}
|
2004-05-13 22:14:49 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-30 17:12:29 +03:00
|
|
|
void DerivationGoal::closeLogFile()
|
|
|
|
{
|
|
|
|
if (bzLogFile) {
|
|
|
|
int err;
|
|
|
|
BZ2_bzWriteClose(&err, bzLogFile, 0, 0, 0);
|
|
|
|
bzLogFile = 0;
|
|
|
|
if (err != BZ_OK) throw Error(format("cannot close compressed log file (BZip2 error = %1%)") % err);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fLogFile) {
|
|
|
|
fclose(fLogFile);
|
|
|
|
fLogFile = 0;
|
|
|
|
}
|
2012-07-17 16:40:12 +03:00
|
|
|
|
|
|
|
fdLogFile.close();
|
2012-05-30 17:12:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 13:16:11 +02:00
|
|
|
void DerivationGoal::deleteTmpDir(bool force)
|
2004-05-13 22:14:49 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
if (tmpDir != "") {
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.keepFailed && !force) {
|
2012-07-27 17:56:33 +03:00
|
|
|
printMsg(lvlError,
|
2012-09-18 17:11:42 +03:00
|
|
|
format("note: keeping build directory `%2%'")
|
2005-01-19 13:16:11 +02:00
|
|
|
% drvPath % tmpDir);
|
2006-12-08 01:27:40 +02:00
|
|
|
if (buildUser.enabled() && !amPrivileged())
|
|
|
|
getOwnership(tmpDir);
|
2012-07-26 22:04:40 +03:00
|
|
|
chmod(tmpDir.c_str(), 0755);
|
2006-12-08 01:27:40 +02:00
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
else
|
2006-12-07 16:14:35 +02:00
|
|
|
deletePathWrapped(tmpDir);
|
2004-06-18 21:09:32 +03:00
|
|
|
tmpDir = "";
|
|
|
|
}
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
void DerivationGoal::handleChildOutput(int fd, const string & data)
|
2004-06-29 12:41:50 +03:00
|
|
|
{
|
2010-08-30 17:53:03 +03:00
|
|
|
if ((hook && fd == hook->builderOut.readSide) ||
|
|
|
|
(!hook && fd == builderOut.readSide))
|
2010-08-31 15:36:24 +03:00
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
if (verbosity >= settings.buildVerbosity)
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr(data);
|
2012-05-30 17:12:29 +03:00
|
|
|
if (bzLogFile) {
|
|
|
|
int err;
|
|
|
|
BZ2_bzWrite(&err, bzLogFile, (unsigned char *) data.data(), data.size());
|
|
|
|
if (err != BZ_OK) throw Error(format("cannot write to compressed log file (BZip2 error = %1%)") % err);
|
2012-07-17 16:40:12 +03:00
|
|
|
} else if (fdLogFile != -1)
|
|
|
|
writeFull(fdLogFile, (unsigned char *) data.data(), data.size());
|
2010-08-31 15:36:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (hook && fd == hook->fromHook.readSide)
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr(data);
|
2005-10-17 18:33:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::handleEOF(int fd)
|
|
|
|
{
|
2010-08-25 23:44:28 +03:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-06-29 12:41:50 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
PathSet DerivationGoal::checkPathValidity(bool returnValid, bool checkHash)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2005-01-25 12:55:33 +02:00
|
|
|
PathSet result;
|
2012-10-03 00:13:46 +03:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
|
|
|
bool good =
|
|
|
|
worker.store.isValidPath(i->second.path) &&
|
|
|
|
(!checkHash || worker.store.pathContentsGood(i->second.path));
|
|
|
|
if (good == returnValid) result.insert(i->second.path);
|
|
|
|
}
|
2005-01-25 12:55:33 +02:00
|
|
|
return result;
|
2004-06-28 13:42:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
bool DerivationGoal::pathFailed(const Path & path)
|
|
|
|
{
|
2012-07-31 02:55:41 +03:00
|
|
|
if (!settings.cacheFailure) return false;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-25 23:05:42 +02:00
|
|
|
if (!worker.store.hasPathFailed(path)) return false;
|
|
|
|
|
|
|
|
printMsg(lvlError, format("builder for `%1%' failed previously (cached)") % path);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace)
|
2009-03-25 23:05:42 +02:00
|
|
|
printMsg(lvlError, format("@ build-failed %1% %2% cached") % drvPath % path);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-17 22:55:30 +03:00
|
|
|
worker.permanentFailure = true;
|
2009-03-25 23:05:42 +02:00
|
|
|
amDone(ecFailed);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
Path DerivationGoal::addHashRewrite(const Path & path)
|
|
|
|
{
|
|
|
|
string h1 = string(path, settings.nixStore.size() + 1, 32);
|
|
|
|
string h2 = string(printHash32(hashString(htSHA256, "rewrite:" + drvPath + ":" + path)), 0, 32);
|
|
|
|
Path p = settings.nixStore + "/" + h2 + string(path, settings.nixStore.size() + 33);
|
|
|
|
if (pathExists(p)) deletePathWrapped(p);
|
|
|
|
assert(path.size() == p.size());
|
|
|
|
rewritesToTmp[h1] = h2;
|
|
|
|
rewritesFromTmp[h2] = h1;
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2003-07-20 22:29:38 +03:00
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
class SubstitutionGoal : public Goal
|
|
|
|
{
|
2007-08-12 03:29:28 +03:00
|
|
|
friend class Worker;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
private:
|
|
|
|
/* The store path that should be realised through a substitute. */
|
|
|
|
Path storePath;
|
2003-08-20 14:30:45 +03:00
|
|
|
|
2007-08-12 03:29:28 +03:00
|
|
|
/* The remaining substituters. */
|
|
|
|
Paths subs;
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2007-08-12 03:29:28 +03:00
|
|
|
/* The current substituter. */
|
|
|
|
Path sub;
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2012-07-09 01:39:24 +03:00
|
|
|
/* Whether any substituter can realise this path */
|
|
|
|
bool hasSubstitute;
|
|
|
|
|
2008-08-02 15:54:35 +03:00
|
|
|
/* Path info returned by the substituter's query info operation. */
|
|
|
|
SubstitutablePathInfo info;
|
2005-01-25 19:08:52 +02:00
|
|
|
|
2012-07-27 19:16:02 +03:00
|
|
|
/* Pipe for the substituter's standard output. */
|
|
|
|
Pipe outPipe;
|
|
|
|
|
|
|
|
/* Pipe for the substituter's standard error. */
|
2004-06-20 22:17:54 +03:00
|
|
|
Pipe logPipe;
|
|
|
|
|
|
|
|
/* The process ID of the builder. */
|
2004-06-22 12:51:44 +03:00
|
|
|
Pid pid;
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2004-06-21 12:35:50 +03:00
|
|
|
/* Lock on the store path. */
|
2006-09-05 00:06:23 +03:00
|
|
|
boost::shared_ptr<PathLocks> outputLock;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
/* Whether to try to repair a valid path. */
|
|
|
|
bool repair;
|
|
|
|
|
|
|
|
/* Location where we're downloading the substitute. Differs from
|
|
|
|
storePath when doing a repair. */
|
|
|
|
Path destPath;
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
typedef void (SubstitutionGoal::*GoalState)();
|
|
|
|
GoalState state;
|
2003-08-20 14:30:45 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
public:
|
2012-10-02 21:08:59 +03:00
|
|
|
SubstitutionGoal(const Path & storePath, Worker & worker, bool repair = false);
|
2004-06-25 18:36:09 +03:00
|
|
|
~SubstitutionGoal();
|
* Change the abstract syntax of slices. It used to be that ids were used as
keys to reference slice elements, e.g.,
Slice(["1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["8c99..."]), ...])
This was wrong, since ids represent contents, not locations. Therefore we
now have:
Slice(["/nix/store/1ef7..."], [("/nix/store/1ef7...-foo", "1ef7", ["/nix/store/8c99-..."]), ...])
* Fix a bug in the computation of slice closures that could cause slice
elements to be duplicated.
2003-08-20 15:39:56 +03:00
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
void cancel();
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
void work();
|
2003-08-20 14:30:45 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* The states. */
|
|
|
|
void init();
|
2004-06-20 22:17:54 +03:00
|
|
|
void tryNext();
|
2007-08-12 03:29:28 +03:00
|
|
|
void gotInfo();
|
|
|
|
void referencesValid();
|
2004-06-22 12:00:31 +03:00
|
|
|
void tryToRun();
|
2004-06-20 22:17:54 +03:00
|
|
|
void finished();
|
2004-06-22 20:04:10 +03:00
|
|
|
|
2004-06-29 12:41:50 +03:00
|
|
|
/* Callback used by the worker to write to the log. */
|
2005-10-17 18:33:24 +03:00
|
|
|
void handleChildOutput(int fd, const string & data);
|
|
|
|
void handleEOF(int fd);
|
2012-06-27 23:58:15 +03:00
|
|
|
|
|
|
|
Path getStorePath() { return storePath; }
|
2004-06-18 21:09:32 +03:00
|
|
|
};
|
2003-08-20 14:30:45 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
SubstitutionGoal::SubstitutionGoal(const Path & storePath, Worker & worker, bool repair)
|
2005-01-19 13:16:11 +02:00
|
|
|
: Goal(worker)
|
2012-07-09 01:39:24 +03:00
|
|
|
, hasSubstitute(false)
|
2012-10-02 21:08:59 +03:00
|
|
|
, repair(repair)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2005-01-19 13:16:11 +02:00
|
|
|
this->storePath = storePath;
|
2004-06-18 21:09:32 +03:00
|
|
|
state = &SubstitutionGoal::init;
|
2005-02-18 11:50:20 +02:00
|
|
|
name = (format("substitution of `%1%'") % storePath).str();
|
|
|
|
trace("created");
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
SubstitutionGoal::~SubstitutionGoal()
|
|
|
|
{
|
2006-12-08 20:41:48 +02:00
|
|
|
/* !!! Once we let substitution goals run under a build user, we
|
2009-03-18 19:36:42 +02:00
|
|
|
need to use the setuid helper just as in ~DerivationGoal().
|
2006-12-08 20:41:48 +02:00
|
|
|
Idem for cancel. */
|
2004-06-25 18:36:09 +03:00
|
|
|
if (pid != -1) worker.childTerminated(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 20:41:48 +02:00
|
|
|
void SubstitutionGoal::cancel()
|
|
|
|
{
|
|
|
|
if (pid != -1) {
|
|
|
|
pid_t savedPid = pid;
|
|
|
|
pid.kill();
|
|
|
|
worker.childTerminated(savedPid);
|
|
|
|
}
|
|
|
|
amDone(ecFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
void SubstitutionGoal::work()
|
|
|
|
{
|
|
|
|
(this->*state)();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::init()
|
|
|
|
{
|
2004-06-22 20:04:10 +03:00
|
|
|
trace("init");
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
worker.store.addTempRoot(storePath);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* If the path already exists we're done. */
|
2012-10-02 21:08:59 +03:00
|
|
|
if (!repair && worker.store.isValidPath(storePath)) {
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecSuccess);
|
2004-06-18 21:09:32 +03:00
|
|
|
return;
|
2003-08-20 14:30:45 +03:00
|
|
|
}
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.readOnlyMode)
|
2009-12-09 19:45:22 +02:00
|
|
|
throw Error(format("cannot substitute path `%1%' - no write access to the Nix store") % storePath);
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
subs = settings.substituters;
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2008-08-04 16:15:35 +03:00
|
|
|
tryNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::tryNext()
|
|
|
|
{
|
|
|
|
trace("trying next substituter");
|
|
|
|
|
|
|
|
if (subs.size() == 0) {
|
|
|
|
/* None left. Terminate this goal and let someone else deal
|
|
|
|
with it. */
|
2011-11-29 15:00:41 +02:00
|
|
|
debug(format("path `%1%' is required, but there is no substituter that can build it") % storePath);
|
2012-07-09 01:39:24 +03:00
|
|
|
/* Hack: don't indicate failure if there were no substituters.
|
|
|
|
In that case the calling derivation should just do a
|
|
|
|
build. */
|
|
|
|
amDone(hasSubstitute ? ecFailed : ecNoSubstituters);
|
2007-08-12 03:29:28 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-04 16:15:35 +03:00
|
|
|
sub = subs.front();
|
|
|
|
subs.pop_front();
|
|
|
|
|
download-from-binary-cache: parallelise fetching of NAR info files
Getting substitute information using the binary cache substituter has
non-trivial latency overhead. A package or NixOS system configuration
can have hundreds of dependencies, and in the worst case (when the
local info cache is empty) we have to do a separate HTTP request for
each of these. If the ping time to the server is t, getting N info
files will take tN seconds; e.g., with a ping time of 0.1s to
nixos.org, sequentially downloading 1000 info files (a typical NixOS
config) will take at least 100 seconds.
To fix this problem, the binary cache substituter can now perform
requests in parallel. This required changing the substituter
interface to support a function querySubstitutablePathInfos() that
queries multiple paths at the same time, and rewriting queryMissing()
to take advantage of parallelism. (Due to local caching,
parallelising queryMissing() is sufficient for most use cases, since
it's almost always called before building a derivation and thus fills
the local info cache.)
For example, parallelism speeds up querying all 1056 paths in a
particular NixOS system configuration from 116s to 2.6s. It works so
well because the eccentricity of the top-level derivation in the
dependency graph is only 9. So we only need 10 round-trips (when
using an unlimited number of parallel connections) to get everything.
Currently we do a maximum of 150 parallel connections to the server.
Thus it's important that the binary cache server (e.g. nixos.org) has
a high connection limit. Alternatively we could use HTTP pipelining,
but WWW::Curl doesn't support it and libcurl has a hard-coded limit of
5 requests per pipeline.
2012-07-07 02:08:20 +03:00
|
|
|
SubstitutablePathInfos infos;
|
|
|
|
PathSet dummy(singleton<PathSet>(storePath));
|
|
|
|
worker.store.querySubstitutablePathInfos(sub, dummy, infos);
|
|
|
|
SubstitutablePathInfos::iterator k = infos.find(storePath);
|
|
|
|
if (k == infos.end()) { tryNext(); return; }
|
|
|
|
info = k->second;
|
2012-07-09 01:39:24 +03:00
|
|
|
hasSubstitute = true;
|
2008-08-04 16:15:35 +03:00
|
|
|
|
2005-09-20 19:14:00 +03:00
|
|
|
/* To maintain the closure invariant, we first have to realise the
|
2005-01-25 19:08:52 +02:00
|
|
|
paths referenced by this one. */
|
2008-08-02 15:54:35 +03:00
|
|
|
foreach (PathSet::iterator, i, info.references)
|
2005-02-01 11:23:38 +02:00
|
|
|
if (*i != storePath) /* ignore self-references */
|
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i));
|
2005-01-25 19:08:52 +02:00
|
|
|
|
|
|
|
if (waitees.empty()) /* to prevent hang (no wake-up event) */
|
|
|
|
referencesValid();
|
|
|
|
else
|
|
|
|
state = &SubstitutionGoal::referencesValid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::referencesValid()
|
|
|
|
{
|
2007-08-12 03:29:28 +03:00
|
|
|
trace("all references realised");
|
2005-01-25 19:08:52 +02:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
if (nrFailed > 0) {
|
2011-11-29 15:00:41 +02:00
|
|
|
debug(format("some references of path `%1%' could not be realised") % storePath);
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecFailed);
|
|
|
|
return;
|
|
|
|
}
|
2005-01-25 19:08:52 +02:00
|
|
|
|
2008-08-02 15:54:35 +03:00
|
|
|
foreach (PathSet::iterator, i, info.references)
|
2005-02-01 11:23:38 +02:00
|
|
|
if (*i != storePath) /* ignore self-references */
|
2008-06-09 16:52:45 +03:00
|
|
|
assert(worker.store.isValidPath(*i));
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2004-06-22 12:00:31 +03:00
|
|
|
state = &SubstitutionGoal::tryToRun;
|
2009-04-01 00:14:07 +03:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-06-22 12:00:31 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::tryToRun()
|
|
|
|
{
|
2004-06-22 20:04:10 +03:00
|
|
|
trace("trying to run");
|
|
|
|
|
2009-04-01 00:14:07 +03:00
|
|
|
/* Make sure that we are allowed to start a build. Note that even
|
|
|
|
is maxBuildJobs == 0 (no local builds allowed), we still allow
|
|
|
|
a substituter to run. This is because substitutions cannot be
|
|
|
|
distributed to another machine via the build hook. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (worker.getNrLocalBuilds() >= (settings.maxBuildJobs == 0 ? 1 : settings.maxBuildJobs)) {
|
2004-06-22 12:00:31 +03:00
|
|
|
worker.waitForBuildSlot(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-28 14:36:17 +03:00
|
|
|
/* Maybe a derivation goal has already locked this path
|
|
|
|
(exceedingly unlikely, since it should have used a substitute
|
|
|
|
first, but let's be defensive). */
|
2007-08-28 19:22:08 +03:00
|
|
|
outputLock.reset(); // make sure this goal's lock is gone
|
2007-08-28 14:36:17 +03:00
|
|
|
if (pathIsLockedByMe(storePath)) {
|
|
|
|
debug(format("restarting substitution of `%1%' because it's locked by another goal")
|
|
|
|
% storePath);
|
|
|
|
worker.waitForAnyGoal(shared_from_this());
|
|
|
|
return; /* restart in the tryToRun() state when another goal finishes */
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-21 12:35:50 +03:00
|
|
|
/* Acquire a lock on the output path. */
|
2006-09-05 00:06:23 +03:00
|
|
|
outputLock = boost::shared_ptr<PathLocks>(new PathLocks);
|
2009-03-23 03:05:54 +02:00
|
|
|
if (!outputLock->lockPaths(singleton<PathSet>(storePath), "", false)) {
|
|
|
|
worker.waitForAWhile(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
2004-06-21 12:35:50 +03:00
|
|
|
|
|
|
|
/* Check again whether the path is invalid. */
|
2012-10-02 21:08:59 +03:00
|
|
|
if (!repair && worker.store.isValidPath(storePath)) {
|
2004-06-21 12:35:50 +03:00
|
|
|
debug(format("store path `%1%' has become valid") % storePath);
|
2004-06-24 16:40:38 +03:00
|
|
|
outputLock->setDeletion(true);
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecSuccess);
|
2004-06-21 12:35:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-29 15:00:41 +02:00
|
|
|
printMsg(lvlInfo, format("fetching path `%1%'...") % storePath);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-27 19:16:02 +03:00
|
|
|
outPipe.create();
|
2004-06-22 20:04:10 +03:00
|
|
|
logPipe.create();
|
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
destPath = repair ? storePath + ".tmp" : storePath;
|
|
|
|
|
2004-06-21 12:35:50 +03:00
|
|
|
/* Remove the (stale) output path if it exists. */
|
2012-10-02 21:08:59 +03:00
|
|
|
if (pathExists(destPath))
|
|
|
|
deletePathWrapped(destPath);
|
2004-06-21 12:35:50 +03:00
|
|
|
|
2012-11-09 19:00:33 +02:00
|
|
|
worker.store.setSubstituterEnv();
|
|
|
|
|
|
|
|
/* Fill in the arguments. */
|
|
|
|
Strings args;
|
|
|
|
args.push_back(baseNameOf(sub));
|
|
|
|
args.push_back("--substitute");
|
|
|
|
args.push_back(storePath);
|
|
|
|
args.push_back(destPath);
|
|
|
|
const char * * argArr = strings2CharPtrs(args);
|
|
|
|
|
2004-06-20 22:17:54 +03:00
|
|
|
/* Fork the substitute program. */
|
2012-11-09 19:00:33 +02:00
|
|
|
pid = maybeVfork();
|
|
|
|
|
2004-06-22 12:51:44 +03:00
|
|
|
switch (pid) {
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-20 22:17:54 +03:00
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
2004-06-22 13:21:44 +03:00
|
|
|
commonChildInit(logPipe);
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2012-07-27 19:16:02 +03:00
|
|
|
if (dup2(outPipe.writeSide, STDOUT_FILENO) == -1)
|
|
|
|
throw SysError("cannot dup output pipe into stdout");
|
|
|
|
|
2007-08-12 03:29:28 +03:00
|
|
|
execv(sub.c_str(), (char * *) argArr);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2007-08-12 03:29:28 +03:00
|
|
|
throw SysError(format("executing `%1%'") % sub);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
} catch (std::exception & e) {
|
2012-11-15 16:01:02 +02:00
|
|
|
writeToStderr("substitute error: " + string(e.what()) + "\n");
|
2004-06-20 22:17:54 +03:00
|
|
|
}
|
2012-11-09 17:42:10 +02:00
|
|
|
_exit(1);
|
2004-06-20 22:17:54 +03:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-20 22:17:54 +03:00
|
|
|
/* parent */
|
2004-06-22 12:51:44 +03:00
|
|
|
pid.setSeparatePG(true);
|
2007-03-19 14:48:45 +02:00
|
|
|
pid.setKillSignal(SIGTERM);
|
2012-07-27 19:16:02 +03:00
|
|
|
outPipe.writeSide.close();
|
2004-06-20 22:17:54 +03:00
|
|
|
logPipe.writeSide.close();
|
|
|
|
worker.childStarted(shared_from_this(),
|
2010-02-03 23:38:41 +02:00
|
|
|
pid, singleton<set<int> >(logPipe.readSide), true, true);
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
state = &SubstitutionGoal::finished;
|
2008-11-12 13:08:27 +02:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2008-11-12 13:08:27 +02:00
|
|
|
printMsg(lvlError, format("@ substituter-started %1% %2%")
|
|
|
|
% storePath % sub);
|
|
|
|
}
|
2004-06-20 22:17:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::finished()
|
|
|
|
{
|
2004-06-22 20:04:10 +03:00
|
|
|
trace("substitute finished");
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
/* Since we got an EOF on the logger pipe, the substitute is
|
|
|
|
presumed to have terminated. */
|
2004-06-22 12:51:44 +03:00
|
|
|
pid_t savedPid = pid;
|
|
|
|
int status = pid.wait(true);
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
/* So the child is gone now. */
|
2004-06-22 12:51:44 +03:00
|
|
|
worker.childTerminated(savedPid);
|
2004-06-20 22:17:54 +03:00
|
|
|
|
|
|
|
/* Close the read side of the logger pipe. */
|
|
|
|
logPipe.readSide.close();
|
|
|
|
|
2012-07-27 19:16:02 +03:00
|
|
|
/* Get the hash info from stdout. */
|
|
|
|
string expectedHashStr = statusOk(status) ? readLine(outPipe.readSide) : "";
|
|
|
|
outPipe.readSide.close();
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
/* Check the exit status and the build result. */
|
2012-07-27 19:16:02 +03:00
|
|
|
HashResult hash;
|
2004-06-24 16:40:38 +03:00
|
|
|
try {
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
if (!statusOk(status))
|
2011-11-29 15:00:41 +02:00
|
|
|
throw SubstError(format("fetching path `%1%' %2%")
|
2004-06-24 16:40:38 +03:00
|
|
|
% storePath % statusToString(status));
|
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
if (!pathExists(destPath))
|
|
|
|
throw SubstError(format("substitute did not produce path `%1%'") % destPath);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
hash = hashPath(htSHA256, destPath);
|
2012-07-27 19:16:02 +03:00
|
|
|
|
|
|
|
/* Verify the expected hash we got from the substituer. */
|
|
|
|
if (expectedHashStr != "") {
|
|
|
|
size_t n = expectedHashStr.find(':');
|
|
|
|
if (n == string::npos)
|
|
|
|
throw Error(format("bad hash from substituter: %1%") % expectedHashStr);
|
|
|
|
HashType hashType = parseHashType(string(expectedHashStr, 0, n));
|
|
|
|
if (hashType == htUnknown)
|
|
|
|
throw Error(format("unknown hash algorithm in `%1%'") % expectedHashStr);
|
|
|
|
Hash expectedHash = parseHash16or32(hashType, string(expectedHashStr, n + 1));
|
2012-10-02 21:08:59 +03:00
|
|
|
Hash actualHash = hashType == htSHA256 ? hash.first : hashPath(hashType, destPath).first;
|
2012-07-27 19:16:02 +03:00
|
|
|
if (expectedHash != actualHash)
|
|
|
|
throw SubstError(format("hash mismatch in downloaded path `%1%': expected %2%, got %3%")
|
|
|
|
% storePath % printHash(expectedHash) % printHash(actualHash));
|
|
|
|
}
|
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
} catch (SubstError & e) {
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2011-11-29 15:00:41 +02:00
|
|
|
printMsg(lvlInfo, e.msg());
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2008-11-12 13:08:27 +02:00
|
|
|
printMsg(lvlError, format("@ substituter-failed %1% %2% %3%")
|
|
|
|
% storePath % status % e.msg());
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
/* Try the next substitute. */
|
|
|
|
state = &SubstitutionGoal::tryNext;
|
|
|
|
worker.wakeUp(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
canonicalisePathMetaData(destPath);
|
2004-09-22 15:15:04 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
worker.store.optimisePath(destPath); // FIXME: combine with hashPath()
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
if (repair) replaceValidPath(storePath, destPath);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2010-11-16 19:11:46 +02:00
|
|
|
ValidPathInfo info2;
|
|
|
|
info2.path = storePath;
|
|
|
|
info2.hash = hash.first;
|
|
|
|
info2.narSize = hash.second;
|
|
|
|
info2.references = info.references;
|
|
|
|
info2.deriver = info.deriver;
|
|
|
|
worker.store.registerValidPath(info2);
|
2004-06-20 22:17:54 +03:00
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
outputLock->setDeletion(true);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-10-03 17:38:09 +03:00
|
|
|
worker.store.markContentsGood(storePath);
|
|
|
|
|
2004-06-24 16:40:38 +03:00
|
|
|
printMsg(lvlChatty,
|
|
|
|
format("substitution of path `%1%' succeeded") % storePath);
|
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.printBuildTrace) {
|
2008-11-12 13:08:27 +02:00
|
|
|
printMsg(lvlError, format("@ substituter-succeeded %1%") % storePath);
|
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
amDone(ecSuccess);
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
void SubstitutionGoal::handleChildOutput(int fd, const string & data)
|
2004-06-29 12:41:50 +03:00
|
|
|
{
|
|
|
|
assert(fd == logPipe.readSide);
|
2012-11-15 16:01:02 +02:00
|
|
|
if (verbosity >= settings.buildVerbosity) writeToStderr(data);
|
2004-06-29 12:41:50 +03:00
|
|
|
/* Don't write substitution output to a log file for now. We
|
|
|
|
probably should, though. */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
void SubstitutionGoal::handleEOF(int fd)
|
|
|
|
{
|
|
|
|
if (fd == logPipe.readSide) worker.wakeUp(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
static bool working = false;
|
|
|
|
|
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
Worker::Worker(LocalStore & store)
|
|
|
|
: store(store)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2012-07-27 16:59:18 +03:00
|
|
|
/* Debugging: prevent recursive workers. */
|
2004-06-18 21:09:32 +03:00
|
|
|
if (working) abort();
|
|
|
|
working = true;
|
2009-04-01 00:14:07 +03:00
|
|
|
nrLocalBuilds = 0;
|
2009-03-23 03:05:54 +02:00
|
|
|
lastWokenUp = 0;
|
2010-12-13 18:53:23 +02:00
|
|
|
permanentFailure = false;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Worker::~Worker()
|
|
|
|
{
|
|
|
|
working = false;
|
2004-06-25 18:36:09 +03:00
|
|
|
|
|
|
|
/* Explicitly get rid of all strong pointers now. After this all
|
|
|
|
goals that refer to this worker should be gone. (Otherwise we
|
|
|
|
are in trouble, since goals may call childTerminated() etc. in
|
|
|
|
their destructors). */
|
|
|
|
topGoals.clear();
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
GoalPtr Worker::makeDerivationGoal(const Path & path, bool repair)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2012-10-02 21:08:59 +03:00
|
|
|
GoalPtr goal = derivationGoals[path].lock();
|
2004-06-18 21:09:32 +03:00
|
|
|
if (!goal) {
|
2012-10-03 00:13:46 +03:00
|
|
|
goal = GoalPtr(new DerivationGoal(path, *this, repair));
|
2012-10-02 21:08:59 +03:00
|
|
|
derivationGoals[path] = goal;
|
|
|
|
wakeUp(goal);
|
2003-07-20 22:29:38 +03:00
|
|
|
}
|
2004-06-25 18:36:09 +03:00
|
|
|
return goal;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2003-08-01 18:41:47 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
GoalPtr Worker::makeSubstitutionGoal(const Path & path, bool repair)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2012-10-02 21:08:59 +03:00
|
|
|
GoalPtr goal = substitutionGoals[path].lock();
|
|
|
|
if (!goal) {
|
|
|
|
goal = GoalPtr(new SubstitutionGoal(path, *this, repair));
|
|
|
|
substitutionGoals[path] = goal;
|
|
|
|
wakeUp(goal);
|
|
|
|
}
|
|
|
|
return goal;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
static void removeGoal(GoalPtr goal, WeakGoalMap & goalMap)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2005-02-18 11:50:20 +02:00
|
|
|
/* !!! inefficient */
|
|
|
|
for (WeakGoalMap::iterator i = goalMap.begin();
|
|
|
|
i != goalMap.end(); )
|
|
|
|
if (i->second.lock() == goal) {
|
|
|
|
WeakGoalMap::iterator j = i; ++j;
|
|
|
|
goalMap.erase(i);
|
|
|
|
i = j;
|
|
|
|
}
|
|
|
|
else ++i;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
void Worker::removeGoal(GoalPtr goal)
|
|
|
|
{
|
2006-09-05 00:06:23 +03:00
|
|
|
nix::removeGoal(goal, derivationGoals);
|
|
|
|
nix::removeGoal(goal, substitutionGoals);
|
2005-02-23 13:19:27 +02:00
|
|
|
if (topGoals.find(goal) != topGoals.end()) {
|
|
|
|
topGoals.erase(goal);
|
|
|
|
/* If a top-level goal failed, then kill all other goals
|
|
|
|
(unless keepGoing was set). */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (goal->getExitCode() == Goal::ecFailed && !settings.keepGoing)
|
2005-02-23 13:19:27 +02:00
|
|
|
topGoals.clear();
|
|
|
|
}
|
2007-08-28 14:36:17 +03:00
|
|
|
|
|
|
|
/* Wake up goals waiting for any goal to finish. */
|
2009-03-23 03:05:54 +02:00
|
|
|
foreach (WeakGoals::iterator, i, waitingForAnyGoal) {
|
2007-08-28 14:36:17 +03:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
waitingForAnyGoal.clear();
|
2004-05-11 21:05:44 +03:00
|
|
|
}
|
2003-11-21 18:05:19 +02:00
|
|
|
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
void Worker::wakeUp(GoalPtr goal)
|
2004-05-11 21:05:44 +03:00
|
|
|
{
|
2004-06-25 18:36:09 +03:00
|
|
|
goal->trace("woken up");
|
2004-06-18 21:09:32 +03:00
|
|
|
awake.insert(goal);
|
|
|
|
}
|
2004-05-11 21:05:44 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2009-04-01 00:14:07 +03:00
|
|
|
unsigned Worker::getNrLocalBuilds()
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2009-04-01 00:14:07 +03:00
|
|
|
return nrLocalBuilds;
|
2003-07-20 22:29:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
void Worker::childStarted(GoalPtr goal,
|
2010-02-03 23:38:41 +02:00
|
|
|
pid_t pid, const set<int> & fds, bool inBuildSlot,
|
|
|
|
bool monitorForSilence)
|
2003-07-20 22:29:38 +03:00
|
|
|
{
|
2004-06-20 00:45:04 +03:00
|
|
|
Child child;
|
|
|
|
child.goal = goal;
|
2005-10-17 18:33:24 +03:00
|
|
|
child.fds = fds;
|
2006-12-08 17:44:00 +02:00
|
|
|
child.lastOutput = time(0);
|
2004-06-20 00:45:04 +03:00
|
|
|
child.inBuildSlot = inBuildSlot;
|
2010-02-03 23:38:41 +02:00
|
|
|
child.monitorForSilence = monitorForSilence;
|
2004-06-20 00:45:04 +03:00
|
|
|
children[pid] = child;
|
2009-04-01 00:14:07 +03:00
|
|
|
if (inBuildSlot) nrLocalBuilds++;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2004-07-01 19:24:35 +03:00
|
|
|
void Worker::childTerminated(pid_t pid, bool wakeSleepers)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2006-12-08 20:41:48 +02:00
|
|
|
assert(pid != -1); /* common mistake */
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-20 00:45:04 +03:00
|
|
|
Children::iterator i = children.find(pid);
|
|
|
|
assert(i != children.end());
|
|
|
|
|
|
|
|
if (i->second.inBuildSlot) {
|
2009-04-01 00:14:07 +03:00
|
|
|
assert(nrLocalBuilds > 0);
|
|
|
|
nrLocalBuilds--;
|
2004-06-20 00:45:04 +03:00
|
|
|
}
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
children.erase(pid);
|
|
|
|
|
2004-07-01 19:24:35 +03:00
|
|
|
if (wakeSleepers) {
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-07-01 19:24:35 +03:00
|
|
|
/* Wake up goals waiting for a build slot. */
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (WeakGoals::iterator, i, wantingToBuild) {
|
2004-07-01 19:24:35 +03:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wantingToBuild.clear();
|
2004-06-25 18:36:09 +03:00
|
|
|
}
|
2003-10-16 19:29:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 19:26:21 +02:00
|
|
|
void Worker::waitForBuildSlot(GoalPtr goal)
|
2003-10-16 19:29:57 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
debug("wait for build slot");
|
2012-07-31 02:55:41 +03:00
|
|
|
if (getNrLocalBuilds() < settings.maxBuildJobs)
|
2004-06-18 21:09:32 +03:00
|
|
|
wakeUp(goal); /* we can do it right away */
|
|
|
|
else
|
|
|
|
wantingToBuild.insert(goal);
|
|
|
|
}
|
2004-02-13 12:45:09 +02:00
|
|
|
|
2003-10-16 19:29:57 +03:00
|
|
|
|
2007-08-28 14:36:17 +03:00
|
|
|
void Worker::waitForAnyGoal(GoalPtr goal)
|
|
|
|
{
|
|
|
|
debug("wait for any goal");
|
|
|
|
waitingForAnyGoal.insert(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
void Worker::waitForAWhile(GoalPtr goal)
|
|
|
|
{
|
|
|
|
debug("wait for a while");
|
|
|
|
waitingForAWhile.insert(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
void Worker::run(const Goals & _topGoals)
|
2004-06-18 21:09:32 +03:00
|
|
|
{
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Goals::iterator, i, _topGoals) topGoals.insert(*i);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2004-06-22 17:48:59 +03:00
|
|
|
startNest(nest, lvlDebug, format("entered goal loop"));
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
2004-01-15 22:23:55 +02:00
|
|
|
checkInterrupt();
|
2004-06-18 21:09:32 +03:00
|
|
|
|
|
|
|
/* Call every wake goal. */
|
2005-02-23 13:19:27 +02:00
|
|
|
while (!awake.empty() && !topGoals.empty()) {
|
2004-06-25 18:36:09 +03:00
|
|
|
WeakGoals awake2(awake);
|
2004-06-18 21:09:32 +03:00
|
|
|
awake.clear();
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (WeakGoals::iterator, i, awake2) {
|
2004-06-18 21:09:32 +03:00
|
|
|
checkInterrupt();
|
2004-06-25 18:36:09 +03:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) goal->work();
|
2005-02-23 13:19:27 +02:00
|
|
|
if (topGoals.empty()) break;
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2003-10-16 19:29:57 +03:00
|
|
|
}
|
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
if (topGoals.empty()) break;
|
2003-10-16 19:29:57 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Wait for input. */
|
2009-03-23 03:05:54 +02:00
|
|
|
if (!children.empty() || !waitingForAWhile.empty())
|
2007-08-12 03:29:28 +03:00
|
|
|
waitForInput();
|
2009-03-29 21:06:00 +03:00
|
|
|
else {
|
2012-07-31 02:55:41 +03:00
|
|
|
if (awake.empty() && settings.maxBuildJobs == 0) throw Error(
|
2009-03-29 21:06:00 +03:00
|
|
|
"unable to start any build; either increase `--max-jobs' "
|
|
|
|
"or enable distributed builds");
|
2007-08-12 03:29:28 +03:00
|
|
|
assert(!awake.empty());
|
2009-03-29 21:06:00 +03:00
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2003-10-16 19:29:57 +03:00
|
|
|
|
2004-06-25 18:36:09 +03:00
|
|
|
/* If --keep-going is not set, it's possible that the main goal
|
|
|
|
exited while some of its subgoals were still active. But if
|
|
|
|
--keep-going *is* set, then they must all be finished now. */
|
2012-07-31 02:55:41 +03:00
|
|
|
assert(!settings.keepGoing || awake.empty());
|
|
|
|
assert(!settings.keepGoing || wantingToBuild.empty());
|
|
|
|
assert(!settings.keepGoing || children.empty());
|
2003-07-20 22:29:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
void Worker::waitForInput()
|
2003-07-20 22:29:38 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
printMsg(lvlVomit, "waiting for children");
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
/* Process output from the file descriptors attached to the
|
|
|
|
children, namely log output and output path creation commands.
|
|
|
|
We also use this to detect child termination: if we get EOF on
|
|
|
|
the logger pipe of a build, we assume that the builder has
|
|
|
|
terminated. */
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
bool useTimeout = false;
|
|
|
|
struct timeval timeout;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
time_t before = time(0);
|
2011-06-30 18:19:13 +03:00
|
|
|
|
|
|
|
/* If a global timeout has been set, sleep until it's done. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.buildTimeout != 0) {
|
2012-07-27 17:56:33 +03:00
|
|
|
useTimeout = true;
|
2011-06-30 18:19:13 +03:00
|
|
|
if (lastWait == 0 || lastWait > before) lastWait = before;
|
2012-07-31 02:55:41 +03:00
|
|
|
timeout.tv_sec = std::max((time_t) 0, lastWait + settings.buildTimeout - before);
|
2011-06-30 18:19:13 +03:00
|
|
|
}
|
|
|
|
|
2006-12-08 17:44:00 +02:00
|
|
|
/* If we're monitoring for silence on stdout/stderr, sleep until
|
|
|
|
the first deadline for any child. */
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.maxSilentTime != 0) {
|
2006-12-08 17:44:00 +02:00
|
|
|
time_t oldest = 0;
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (Children::iterator, i, children) {
|
2010-02-03 23:38:41 +02:00
|
|
|
if (i->second.monitorForSilence) {
|
|
|
|
oldest = oldest == 0 || i->second.lastOutput < oldest
|
|
|
|
? i->second.lastOutput : oldest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (oldest) {
|
2012-07-31 02:55:41 +03:00
|
|
|
time_t silenceTimeout = std::max((time_t) 0, oldest + settings.maxSilentTime - before);
|
2011-06-30 18:19:13 +03:00
|
|
|
timeout.tv_sec = useTimeout
|
2012-07-27 17:56:33 +03:00
|
|
|
? std::min(silenceTimeout, timeout.tv_sec)
|
|
|
|
: silenceTimeout;
|
2010-02-03 23:38:41 +02:00
|
|
|
useTimeout = true;
|
|
|
|
printMsg(lvlVomit, format("sleeping %1% seconds") % timeout.tv_sec);
|
2006-12-08 17:44:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
/* If we are polling goals that are waiting for a lock, then wake
|
|
|
|
up after a few seconds at most. */
|
|
|
|
if (!waitingForAWhile.empty()) {
|
|
|
|
useTimeout = true;
|
2009-03-24 16:07:37 +02:00
|
|
|
if (lastWokenUp == 0)
|
2009-03-30 14:34:03 +03:00
|
|
|
printMsg(lvlError, "waiting for locks or build slots...");
|
2009-03-23 03:05:54 +02:00
|
|
|
if (lastWokenUp == 0 || lastWokenUp > before) lastWokenUp = before;
|
2012-08-27 21:17:13 +03:00
|
|
|
timeout.tv_sec = std::max((time_t) 0, (time_t) (lastWokenUp + settings.pollInterval - before));
|
2009-03-23 03:05:54 +02:00
|
|
|
} else lastWokenUp = 0;
|
|
|
|
|
2010-06-24 20:51:04 +03:00
|
|
|
using namespace std;
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Use select() to wait for the input side of any logger pipe to
|
|
|
|
become `available'. Note that `available' (i.e., non-blocking)
|
|
|
|
includes EOF. */
|
|
|
|
fd_set fds;
|
|
|
|
FD_ZERO(&fds);
|
|
|
|
int fdMax = 0;
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (Children::iterator, i, children) {
|
|
|
|
foreach (set<int>::iterator, j, i->second.fds) {
|
2005-10-17 18:33:24 +03:00
|
|
|
FD_SET(*j, &fds);
|
|
|
|
if (*j >= fdMax) fdMax = *j + 1;
|
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
if (select(fdMax, &fds, 0, 0, useTimeout ? &timeout : 0) == -1) {
|
2004-06-18 21:09:32 +03:00
|
|
|
if (errno == EINTR) return;
|
|
|
|
throw SysError("waiting for input");
|
|
|
|
}
|
2003-07-20 22:29:38 +03:00
|
|
|
|
2009-03-23 03:05:54 +02:00
|
|
|
time_t after = time(0);
|
2006-12-08 17:44:00 +02:00
|
|
|
|
2011-06-30 18:19:13 +03:00
|
|
|
/* Keep track of when we were last called. */
|
|
|
|
lastWait = after;
|
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
/* Process all available file descriptors. */
|
2006-12-08 20:41:48 +02:00
|
|
|
|
|
|
|
/* Since goals may be canceled from inside the loop below (causing
|
|
|
|
them go be erased from the `children' map), we have to be
|
|
|
|
careful that we don't keep iterators alive across calls to
|
|
|
|
cancel(). */
|
|
|
|
set<pid_t> pids;
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (Children::iterator, i, children) pids.insert(i->first);
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (set<pid_t>::iterator, i, pids) {
|
2004-06-18 21:09:32 +03:00
|
|
|
checkInterrupt();
|
2006-12-08 20:41:48 +02:00
|
|
|
Children::iterator j = children.find(*i);
|
|
|
|
if (j == children.end()) continue; // child destroyed
|
|
|
|
GoalPtr goal = j->second.goal.lock();
|
2004-06-25 18:36:09 +03:00
|
|
|
assert(goal);
|
2006-12-08 20:41:48 +02:00
|
|
|
|
|
|
|
set<int> fds2(j->second.fds);
|
2009-03-17 13:42:55 +02:00
|
|
|
foreach (set<int>::iterator, k, fds2) {
|
2006-12-08 20:41:48 +02:00
|
|
|
if (FD_ISSET(*k, &fds)) {
|
2005-10-17 18:33:24 +03:00
|
|
|
unsigned char buffer[4096];
|
2006-12-08 20:41:48 +02:00
|
|
|
ssize_t rd = read(*k, buffer, sizeof(buffer));
|
2005-10-17 18:33:24 +03:00
|
|
|
if (rd == -1) {
|
|
|
|
if (errno != EINTR)
|
|
|
|
throw SysError(format("reading from %1%")
|
|
|
|
% goal->getName());
|
|
|
|
} else if (rd == 0) {
|
|
|
|
debug(format("%1%: got EOF") % goal->getName());
|
2006-12-08 20:41:48 +02:00
|
|
|
goal->handleEOF(*k);
|
|
|
|
j->second.fds.erase(*k);
|
2005-10-17 18:33:24 +03:00
|
|
|
} else {
|
|
|
|
printMsg(lvlVomit, format("%1%: read %2% bytes")
|
|
|
|
% goal->getName() % rd);
|
|
|
|
string data((char *) buffer, rd);
|
2006-12-08 20:41:48 +02:00
|
|
|
goal->handleChildOutput(*k, data);
|
2009-03-23 03:05:54 +02:00
|
|
|
j->second.lastOutput = after;
|
2005-10-17 18:33:24 +03:00
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
|
|
|
}
|
2006-12-08 17:44:00 +02:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.maxSilentTime != 0 &&
|
2010-02-03 23:38:41 +02:00
|
|
|
j->second.monitorForSilence &&
|
2012-07-31 02:55:41 +03:00
|
|
|
after - j->second.lastOutput >= (time_t) settings.maxSilentTime)
|
2006-12-08 19:26:21 +02:00
|
|
|
{
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("%1% timed out after %2% seconds of silence")
|
2012-07-31 02:55:41 +03:00
|
|
|
% goal->getName() % settings.maxSilentTime);
|
2006-12-08 19:26:21 +02:00
|
|
|
goal->cancel();
|
|
|
|
}
|
2011-06-30 18:19:13 +03:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (settings.buildTimeout != 0 &&
|
|
|
|
after - before >= (time_t) settings.buildTimeout)
|
2011-06-30 18:19:13 +03:00
|
|
|
{
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("%1% timed out after %2% seconds of activity")
|
2012-07-31 02:55:41 +03:00
|
|
|
% goal->getName() % settings.buildTimeout);
|
2011-06-30 18:19:13 +03:00
|
|
|
goal->cancel();
|
|
|
|
}
|
2004-06-18 21:09:32 +03:00
|
|
|
}
|
2009-03-23 03:05:54 +02:00
|
|
|
|
2012-07-31 02:55:41 +03:00
|
|
|
if (!waitingForAWhile.empty() && lastWokenUp + settings.pollInterval <= after) {
|
2009-03-23 03:05:54 +02:00
|
|
|
lastWokenUp = after;
|
|
|
|
foreach (WeakGoals::iterator, i, waitingForAWhile) {
|
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
waitingForAWhile.clear();
|
|
|
|
}
|
2003-07-20 22:29:38 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-12-13 18:53:23 +02:00
|
|
|
unsigned int Worker::exitStatus()
|
|
|
|
{
|
|
|
|
return permanentFailure ? 100 : 1;
|
|
|
|
}
|
|
|
|
|
2005-10-17 18:33:24 +03:00
|
|
|
|
2004-06-18 21:09:32 +03:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2012-10-03 00:13:46 +03:00
|
|
|
void LocalStore::buildPaths(const PathSet & drvPaths, bool repair)
|
2003-07-29 13:43:12 +03:00
|
|
|
{
|
2005-01-19 17:02:02 +02:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("building %1%") % showPaths(drvPaths));
|
2003-08-25 17:56:11 +03:00
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
Worker worker(*this);
|
2005-01-19 17:02:02 +02:00
|
|
|
|
|
|
|
Goals goals;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (PathSet::const_iterator, i, drvPaths)
|
2012-06-27 23:58:15 +03:00
|
|
|
if (isDerivation(*i))
|
2012-10-03 00:13:46 +03:00
|
|
|
goals.insert(worker.makeDerivationGoal(*i, repair));
|
2012-06-27 23:58:15 +03:00
|
|
|
else
|
2012-10-03 00:13:46 +03:00
|
|
|
goals.insert(worker.makeSubstitutionGoal(*i, repair));
|
2005-02-23 13:19:27 +02:00
|
|
|
|
|
|
|
worker.run(goals);
|
|
|
|
|
|
|
|
PathSet failed;
|
2009-04-21 14:52:16 +03:00
|
|
|
foreach (Goals::iterator, i, goals)
|
2005-02-23 13:19:27 +02:00
|
|
|
if ((*i)->getExitCode() == Goal::ecFailed) {
|
|
|
|
DerivationGoal * i2 = dynamic_cast<DerivationGoal *>(i->get());
|
2012-06-27 23:58:15 +03:00
|
|
|
if (i2) failed.insert(i2->getDrvPath());
|
|
|
|
else failed.insert(dynamic_cast<SubstitutionGoal *>(i->get())->getStorePath());
|
2005-02-23 13:19:27 +02:00
|
|
|
}
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2005-02-23 13:19:27 +02:00
|
|
|
if (!failed.empty())
|
2010-12-13 18:53:23 +02:00
|
|
|
throw Error(format("build of %1% failed") % showPaths(failed), worker.exitStatus());
|
2003-07-29 13:43:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 20:02:04 +02:00
|
|
|
void LocalStore::ensurePath(const Path & path)
|
2003-07-20 22:29:38 +03:00
|
|
|
{
|
2004-06-18 21:09:32 +03:00
|
|
|
/* If the path is already valid, we're done. */
|
2008-06-09 16:52:45 +03:00
|
|
|
if (isValidPath(path)) return;
|
2004-06-18 21:09:32 +03:00
|
|
|
|
2008-06-09 16:52:45 +03:00
|
|
|
Worker worker(*this);
|
2005-02-23 13:19:27 +02:00
|
|
|
GoalPtr goal = worker.makeSubstitutionGoal(path);
|
|
|
|
Goals goals = singleton<Goals>(goal);
|
|
|
|
|
|
|
|
worker.run(goals);
|
|
|
|
|
|
|
|
if (goal->getExitCode() != Goal::ecSuccess)
|
2010-12-13 18:53:23 +02:00
|
|
|
throw Error(format("path `%1%' does not exist and cannot be created") % path, worker.exitStatus());
|
2003-07-20 22:29:38 +03:00
|
|
|
}
|
2006-09-05 00:06:23 +03:00
|
|
|
|
2012-07-27 16:59:18 +03:00
|
|
|
|
2012-10-02 21:08:59 +03:00
|
|
|
void LocalStore::repairPath(const Path & path)
|
|
|
|
{
|
|
|
|
Worker worker(*this);
|
|
|
|
GoalPtr goal = worker.makeSubstitutionGoal(path, true);
|
|
|
|
Goals goals = singleton<Goals>(goal);
|
|
|
|
|
|
|
|
worker.run(goals);
|
|
|
|
|
|
|
|
if (goal->getExitCode() != Goal::ecSuccess)
|
|
|
|
throw Error(format("cannot repair path `%1%'") % path, worker.exitStatus());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-05 00:06:23 +03:00
|
|
|
}
|