2009-12-17 15:12:44 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "references.hh"
|
|
|
|
#include "pathlocks.hh"
|
|
|
|
#include "misc.hh"
|
|
|
|
#include "globals.hh"
|
2006-11-30 18:43:04 +01:00
|
|
|
#include "local-store.hh"
|
2006-09-04 23:06:23 +02:00
|
|
|
#include "util.hh"
|
2009-10-22 10:28:33 +02:00
|
|
|
#include "archive.hh"
|
2006-09-04 23:06:23 +02:00
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
#include <map>
|
2006-03-01 18:44:28 +01:00
|
|
|
#include <iostream>
|
2005-10-17 17:33:24 +02:00
|
|
|
#include <sstream>
|
2009-03-23 02:05:54 +01:00
|
|
|
#include <algorithm>
|
2004-06-18 20:09:32 +02:00
|
|
|
#include <boost/shared_ptr.hpp>
|
2004-06-25 17:36:09 +02:00
|
|
|
#include <boost/weak_ptr.hpp>
|
2004-06-18 20:09:32 +02:00
|
|
|
#include <boost/enable_shared_from_this.hpp>
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2006-12-08 16:44:00 +01:00
|
|
|
#include <time.h>
|
2006-05-30 13:37:21 +02:00
|
|
|
#include <sys/time.h>
|
2009-09-23 14:57:15 +02:00
|
|
|
#include <sys/wait.h>
|
2004-05-11 20:05:44 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
2004-07-01 13:11:16 +02:00
|
|
|
#include <errno.h>
|
2009-09-24 09:21:29 +02:00
|
|
|
#include <stdio.h>
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <grp.h>
|
|
|
|
|
2007-10-29 11:03:07 +01:00
|
|
|
|
|
|
|
/* Includes required for chroot support. */
|
|
|
|
#if HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
2007-10-27 18:51:55 +02:00
|
|
|
#if HAVE_SYS_MOUNT_H
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#endif
|
2008-12-11 18:00:12 +01:00
|
|
|
#if HAVE_SCHED_H
|
|
|
|
#include <sched.h>
|
|
|
|
#endif
|
2007-10-27 18:51:55 +02:00
|
|
|
|
2008-12-12 14:41:36 +01:00
|
|
|
#define CHROOT_ENABLED HAVE_CHROOT && HAVE_UNSHARE && HAVE_SYS_MOUNT_H && defined(MS_BIND) && defined(CLONE_NEWNS)
|
2007-10-27 18:51:55 +02:00
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2009-01-12 17:30:32 +01:00
|
|
|
#if HAVE_SYS_PERSONALITY_H
|
|
|
|
#include <sys/personality.h>
|
|
|
|
#define CAN_DO_LINUX32_BUILDS
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
using std::map;
|
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
static string pathNullDevice = "/dev/null";
|
|
|
|
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
static const uid_t rootUserId = 0;
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* Forward definition. */
|
|
|
|
class Worker;
|
|
|
|
|
|
|
|
|
|
|
|
/* A pointer to a goal. */
|
|
|
|
class Goal;
|
2006-09-04 23:06:23 +02:00
|
|
|
typedef boost::shared_ptr<Goal> GoalPtr;
|
|
|
|
typedef boost::weak_ptr<Goal> WeakGoalPtr;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
/* Set of goals. */
|
2004-06-18 20:09:32 +02:00
|
|
|
typedef set<GoalPtr> Goals;
|
2004-06-25 17:36:09 +02:00
|
|
|
typedef set<WeakGoalPtr> WeakGoals;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* A map of paths to goals (and the other way around). */
|
2004-06-25 17:36:09 +02:00
|
|
|
typedef map<Path, WeakGoalPtr> WeakGoalMap;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
class Goal : public boost::enable_shared_from_this<Goal>
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2005-02-23 12:19:27 +01:00
|
|
|
public:
|
|
|
|
typedef enum {ecBusy, ecSuccess, ecFailed} ExitCode;
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
protected:
|
|
|
|
|
|
|
|
/* Backlink to the worker. */
|
|
|
|
Worker & worker;
|
|
|
|
|
2004-06-25 17:36:09 +02: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 20:09:32 +02:00
|
|
|
|
2004-08-30 13:51:36 +02:00
|
|
|
/* Number of goals we are/were waiting for that have failed. */
|
2004-06-25 12:21:44 +02:00
|
|
|
unsigned int nrFailed;
|
|
|
|
|
2005-02-18 10:50:20 +01:00
|
|
|
/* Name of this goal for debugging purposes. */
|
|
|
|
string name;
|
|
|
|
|
2005-02-23 12:19:27 +01:00
|
|
|
/* Whether the goal is finished. */
|
|
|
|
ExitCode exitCode;
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
Goal(Worker & worker) : worker(worker)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2004-08-30 13:51:36 +02:00
|
|
|
nrFailed = 0;
|
2005-02-23 12:19:27 +01:00
|
|
|
exitCode = ecBusy;
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~Goal()
|
|
|
|
{
|
2005-02-18 10:50:20 +01:00
|
|
|
trace("goal destroyed");
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual void work() = 0;
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
void addWaitee(GoalPtr waitee);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
virtual void waiteeDone(GoalPtr waitee, ExitCode result);
|
2004-06-25 12:21:44 +02:00
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
virtual void handleChildOutput(int fd, const string & data)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void handleEOF(int fd)
|
2004-06-29 11:41:50 +02:00
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
void trace(const format & f);
|
2005-02-18 10:50:20 +01:00
|
|
|
|
|
|
|
string getName()
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
2004-06-25 17:36:09 +02:00
|
|
|
|
2005-02-23 12:19:27 +01:00
|
|
|
ExitCode getExitCode()
|
|
|
|
{
|
|
|
|
return exitCode;
|
|
|
|
}
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2006-12-08 19:41:48 +01: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 18:26:21 +01:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
protected:
|
2006-12-08 18:26:21 +01:00
|
|
|
void amDone(ExitCode result);
|
2004-06-18 20:09:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* A mapping used to remember for each child process to what goal it
|
2005-10-17 17:33:24 +02:00
|
|
|
belongs, and file descriptors for receiving log data and output
|
|
|
|
path creation commands. */
|
2004-06-19 23:45:04 +02:00
|
|
|
struct Child
|
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
WeakGoalPtr goal;
|
2005-10-17 17:33:24 +02:00
|
|
|
set<int> fds;
|
2010-02-03 22:38:41 +01:00
|
|
|
bool monitorForSilence;
|
2004-06-19 23:45:04 +02:00
|
|
|
bool inBuildSlot;
|
2006-12-08 16:44:00 +01:00
|
|
|
time_t lastOutput; /* time we last got output on stdout/stderr */
|
2004-06-19 23:45:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef map<pid_t, Child> Children;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* The worker class. */
|
|
|
|
class Worker
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
2004-06-25 17:36:09 +02: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 20:09:32 +02:00
|
|
|
|
|
|
|
/* Goals that are ready to do some work. */
|
2004-06-25 17:36:09 +02:00
|
|
|
WeakGoals awake;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Goals waiting for a build slot. */
|
2004-06-25 17:36:09 +02:00
|
|
|
WeakGoals wantingToBuild;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Child processes currently running. */
|
|
|
|
Children children;
|
|
|
|
|
2009-03-31 23:14:07 +02: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-19 23:45:04 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
/* Maps used to prevent multiple instantiations of a goal for the
|
2005-01-20 17:01:07 +01:00
|
|
|
same derivation / path. */
|
2005-01-19 12:16:11 +01:00
|
|
|
WeakGoalMap derivationGoals;
|
2004-06-25 17:36:09 +02:00
|
|
|
WeakGoalMap substitutionGoals;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2007-08-28 13:36:17 +02:00
|
|
|
/* Goals waiting for busy paths to be unlocked. */
|
|
|
|
WeakGoals waitingForAnyGoal;
|
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
/* Goals sleeping for a few seconds (polling a lock). */
|
|
|
|
WeakGoals waitingForAWhile;
|
|
|
|
|
|
|
|
/* Last time the goals in `waitingForAWhile' where woken up. */
|
|
|
|
time_t lastWokenUp;
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
public:
|
|
|
|
|
2009-03-25 22:05:42 +01:00
|
|
|
bool cacheFailure;
|
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
LocalStore & store;
|
|
|
|
|
|
|
|
Worker(LocalStore & store);
|
2004-06-18 20:09:32 +02:00
|
|
|
~Worker();
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
/* Make a goal (with caching). */
|
2005-01-19 12:16:11 +01:00
|
|
|
GoalPtr makeDerivationGoal(const Path & drvPath);
|
2004-06-25 17:36:09 +02:00
|
|
|
GoalPtr makeSubstitutionGoal(const Path & storePath);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
/* Remove a dead goal. */
|
2004-06-18 20:09:32 +02:00
|
|
|
void removeGoal(GoalPtr goal);
|
|
|
|
|
|
|
|
/* Wake up a goal (i.e., there is something for it to do). */
|
|
|
|
void wakeUp(GoalPtr goal);
|
|
|
|
|
2009-03-31 23:14:07 +02: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 20:09:32 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
/* Registers a running child process. `inBuildSlot' means that
|
|
|
|
the process counts towards the jobs limit. */
|
2005-10-17 17:33:24 +02:00
|
|
|
void childStarted(GoalPtr goal, pid_t pid,
|
2010-02-03 22:38:41 +01:00
|
|
|
const set<int> & fds, bool inBuildSlot, bool monitorForSilence);
|
2006-12-08 18:26:21 +01: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 18:24:35 +02:00
|
|
|
void childTerminated(pid_t pid, bool wakeSleepers = true);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
/* Put `goal' to sleep until a build slot becomes available (which
|
|
|
|
might be right away). */
|
|
|
|
void waitForBuildSlot(GoalPtr goal);
|
|
|
|
|
2007-08-28 13:36:17 +02: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);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2009-03-23 02:05:54 +01: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);
|
|
|
|
|
2005-02-23 12:19:27 +01:00
|
|
|
/* Loop until the specified top-level goals have finished. */
|
|
|
|
void run(const Goals & topGoals);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Wait for input to become available. */
|
|
|
|
void waitForInput();
|
2007-08-12 02:29:28 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
MakeError(SubstError, Error)
|
2009-03-18 15:48:42 +01:00
|
|
|
MakeError(BuildError, Error) /* denoted a permanent build failure */
|
2004-06-25 12:21:44 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
void Goal::addWaitee(GoalPtr waitee)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
waitees.insert(waitee);
|
|
|
|
waitee->waiters.insert(shared_from_this());
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
void Goal::waiteeDone(GoalPtr waitee, ExitCode result)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
assert(waitees.find(waitee) != waitees.end());
|
|
|
|
waitees.erase(waitee);
|
2005-02-18 10:50:20 +01:00
|
|
|
|
|
|
|
trace(format("waitee `%1%' done; %2% left") %
|
|
|
|
waitee->name % waitees.size());
|
2004-06-28 12:42:57 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
if (result == ecFailed) ++nrFailed;
|
2004-06-28 12:42:57 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
if (waitees.empty() || (result == ecFailed && !keepGoing)) {
|
2004-06-28 12:42:57 +02:00
|
|
|
|
|
|
|
/* If we failed and keepGoing is not set, we remove all
|
|
|
|
remaining waitees. */
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Goals::iterator, i, waitees) {
|
2004-06-28 12:42:57 +02:00
|
|
|
GoalPtr goal = *i;
|
|
|
|
WeakGoals waiters2;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (WeakGoals::iterator, j, goal->waiters)
|
|
|
|
if (j->lock() != shared_from_this()) waiters2.insert(*j);
|
2004-06-28 12:42:57 +02:00
|
|
|
goal->waiters = waiters2;
|
|
|
|
}
|
|
|
|
waitees.clear();
|
2004-07-01 18:24:35 +02:00
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-06-28 12:42:57 +02:00
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
void Goal::amDone(ExitCode result)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
trace("done");
|
2005-02-23 12:19:27 +01:00
|
|
|
assert(exitCode == ecBusy);
|
2006-12-08 18:26:21 +01:00
|
|
|
assert(result == ecSuccess || result == ecFailed);
|
|
|
|
exitCode = result;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (WeakGoals::iterator, i, waiters) {
|
2004-06-25 17:36:09 +02:00
|
|
|
GoalPtr goal = i->lock();
|
2006-12-08 18:26:21 +01:00
|
|
|
if (goal) goal->waiteeDone(shared_from_this(), result);
|
2004-06-25 17:36:09 +02:00
|
|
|
}
|
|
|
|
waiters.clear();
|
2004-06-18 20:09:32 +02:00
|
|
|
worker.removeGoal(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
void Goal::trace(const format & f)
|
|
|
|
{
|
2005-02-18 10:50:20 +01:00
|
|
|
debug(format("%1%: %2%") % name % f);
|
2004-06-25 17:36:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2004-06-22 12:21:44 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
/* Common initialisation performed in child processes. */
|
|
|
|
void commonChildInit(Pipe & logPipe)
|
|
|
|
{
|
2006-02-03 15:20:59 +01: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"));
|
|
|
|
|
2004-06-22 12:21:44 +02: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");
|
|
|
|
logPipe.readSide.close();
|
|
|
|
|
2006-02-03 15:20:59 +01:00
|
|
|
/* Dup stderr to stdout. */
|
2004-06-22 12:21:44 +02: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");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
/* Convert a string list to an array of char pointers. Careful: the
|
|
|
|
string list should outlive the array. */
|
2004-06-22 12:21:44 +02:00
|
|
|
const char * * strings2CharPtrs(const Strings & ss)
|
|
|
|
{
|
|
|
|
const char * * arr = new const char * [ss.size() + 1];
|
|
|
|
const char * * p = arr;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Strings::const_iterator, i, ss) *p++ = i->c_str();
|
2004-06-22 12:21:44 +02:00
|
|
|
*p = 0;
|
|
|
|
return arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-14 16:46:45 +01:00
|
|
|
/* Restore default handling of SIGPIPE, otherwise some programs will
|
|
|
|
randomly say "Broken pipe". */
|
|
|
|
static void restoreSIGPIPE()
|
|
|
|
{
|
|
|
|
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 18:24:15 +02:00
|
|
|
|
2005-10-20 18:58:34 +02: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 12:27:32 +01:00
|
|
|
string user;
|
2005-10-20 18:58:34 +02:00
|
|
|
uid_t uid;
|
2006-12-06 21:00:15 +01:00
|
|
|
gid_t gid;
|
2005-10-20 18:58:34 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
UserLock();
|
|
|
|
~UserLock();
|
|
|
|
|
|
|
|
void acquire();
|
|
|
|
void release();
|
|
|
|
|
2006-12-07 17:33:31 +01:00
|
|
|
void kill();
|
|
|
|
|
2006-12-07 12:27:32 +01:00
|
|
|
string getUser() { return user; }
|
|
|
|
uid_t getUID() { return uid; }
|
|
|
|
uid_t getGID() { return gid; }
|
2006-12-07 01:16:07 +01:00
|
|
|
|
2006-12-07 12:27:32 +01:00
|
|
|
bool enabled() { return uid != 0; }
|
|
|
|
|
2005-10-20 18:58:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
PathSet UserLock::lockedPaths;
|
|
|
|
|
|
|
|
|
|
|
|
UserLock::UserLock()
|
|
|
|
{
|
2006-12-06 21:00:15 +01:00
|
|
|
uid = gid = 0;
|
2005-10-20 18:58:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UserLock::~UserLock()
|
|
|
|
{
|
|
|
|
release();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UserLock::acquire()
|
|
|
|
{
|
|
|
|
assert(uid == 0);
|
|
|
|
|
2006-12-06 21:00:15 +01:00
|
|
|
string buildUsersGroup = querySetting("build-users-group", "");
|
|
|
|
assert(buildUsersGroup != "");
|
|
|
|
|
|
|
|
/* Get the members of the build-users-group. */
|
|
|
|
struct group * gr = getgrnam(buildUsersGroup.c_str());
|
|
|
|
if (!gr)
|
|
|
|
throw Error(format("the group `%1%' specified in `build-users-group' does not exist")
|
|
|
|
% buildUsersGroup);
|
|
|
|
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")
|
|
|
|
% buildUsersGroup);
|
2005-10-20 18:58:34 +02:00
|
|
|
|
2006-12-06 21:00:15 +01:00
|
|
|
/* Find a user account that isn't currently in use for another
|
|
|
|
build. */
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Strings::iterator, i, users) {
|
2006-12-05 20:01:19 +01:00
|
|
|
debug(format("trying user `%1%'") % *i);
|
2005-10-20 18:58:34 +02:00
|
|
|
|
|
|
|
struct passwd * pw = getpwnam(i->c_str());
|
|
|
|
if (!pw)
|
2006-12-06 21:00:15 +01:00
|
|
|
throw Error(format("the user `%1%' in the group `%2%' does not exist")
|
|
|
|
% *i % buildUsersGroup);
|
2009-09-23 19:05:51 +02:00
|
|
|
|
|
|
|
createDirs(nixStateDir + "/userpool");
|
2006-12-07 01:19:27 +01:00
|
|
|
|
2005-10-20 18:58:34 +02:00
|
|
|
fnUserLock = (format("%1%/userpool/%2%") % nixStateDir % pw->pw_uid).str();
|
|
|
|
|
|
|
|
if (lockedPaths.find(fnUserLock) != lockedPaths.end())
|
|
|
|
/* We already have a lock on this one. */
|
|
|
|
continue;
|
|
|
|
|
|
|
|
AutoCloseFD fd = open(fnUserLock.c_str(), O_RDWR | O_CREAT, 0600);
|
|
|
|
if (fd == -1)
|
|
|
|
throw SysError(format("opening user lock `%1%'") % fnUserLock);
|
|
|
|
|
|
|
|
if (lockFile(fd, ltWrite, false)) {
|
|
|
|
fdUserLock = fd.borrow();
|
|
|
|
lockedPaths.insert(fnUserLock);
|
2006-12-07 12:27:32 +01:00
|
|
|
user = *i;
|
2005-10-20 18:58:34 +02:00
|
|
|
uid = pw->pw_uid;
|
2006-12-07 01:19:27 +01:00
|
|
|
|
|
|
|
/* Sanity check... */
|
|
|
|
if (uid == getuid() || uid == geteuid())
|
|
|
|
throw Error(format("the Nix user should not be a member of `%1%'")
|
|
|
|
% buildUsersGroup);
|
|
|
|
|
2005-10-20 18:58:34 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-18 15:48:42 +01:00
|
|
|
throw Error(format("all build users are currently in use; "
|
2006-12-06 21:00:15 +01:00
|
|
|
"consider creating additional users and adding them to the `%1%' group")
|
|
|
|
% buildUsersGroup);
|
2005-10-20 18:58:34 +02: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 17:33:31 +01:00
|
|
|
static void runSetuidHelper(const string & command,
|
|
|
|
const string & arg)
|
2006-12-07 15:14:35 +01:00
|
|
|
{
|
2007-03-20 23:04:25 +01:00
|
|
|
Path program = getEnv("NIX_SETUID_HELPER",
|
|
|
|
nixLibexecDir + "/nix-setuid-helper");
|
2006-12-07 15:14:35 +01:00
|
|
|
|
|
|
|
/* Fork. */
|
|
|
|
Pid pid;
|
|
|
|
pid = fork();
|
|
|
|
switch (pid) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0: /* child */
|
|
|
|
try {
|
2007-02-21 15:31:42 +01:00
|
|
|
std::vector<const char *> args; /* careful with c_str()! */
|
2006-12-07 15:14:35 +01:00
|
|
|
args.push_back(program.c_str());
|
2006-12-07 17:33:31 +01:00
|
|
|
args.push_back(command.c_str());
|
|
|
|
args.push_back(arg.c_str());
|
2006-12-07 15:14:35 +01:00
|
|
|
args.push_back(0);
|
|
|
|
|
2008-11-14 16:46:45 +01:00
|
|
|
restoreSIGPIPE();
|
|
|
|
|
2006-12-07 15:14:35 +01:00
|
|
|
execve(program.c_str(), (char * *) &args[0], 0);
|
|
|
|
throw SysError(format("executing `%1%'") % program);
|
|
|
|
}
|
|
|
|
catch (std::exception & e) {
|
|
|
|
std::cerr << "error: " << e.what() << std::endl;
|
|
|
|
}
|
|
|
|
quickExit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 17:33:31 +01:00
|
|
|
void UserLock::kill()
|
|
|
|
{
|
|
|
|
assert(enabled());
|
|
|
|
if (amPrivileged())
|
|
|
|
killUser(uid);
|
|
|
|
else
|
|
|
|
runSetuidHelper("kill", user);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool amPrivileged()
|
|
|
|
{
|
|
|
|
return geteuid() == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool haveBuildUsers()
|
|
|
|
{
|
|
|
|
return querySetting("build-users-group", "") != "";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void getOwnership(const Path & path)
|
|
|
|
{
|
|
|
|
runSetuidHelper("get-ownership", path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-09 01:26:24 +01:00
|
|
|
void deletePathWrapped(const Path & path,
|
2008-06-18 11:34:17 +02:00
|
|
|
unsigned long long & bytesFreed, unsigned long long & blocksFreed)
|
2006-12-07 15:14:35 +01:00
|
|
|
{
|
2006-12-09 01:26:24 +01:00
|
|
|
try {
|
|
|
|
/* First try to delete it ourselves. */
|
2008-06-18 11:34:17 +02:00
|
|
|
deletePath(path, bytesFreed, blocksFreed);
|
2006-12-09 01:26:24 +01:00
|
|
|
} catch (SysError & e) {
|
|
|
|
/* If this failed due to a permission error, then try it with
|
|
|
|
the setuid helper. */
|
|
|
|
if (haveBuildUsers() && !amPrivileged()) {
|
|
|
|
getOwnership(path);
|
2008-06-18 11:34:17 +02:00
|
|
|
deletePath(path, bytesFreed, blocksFreed);
|
2006-12-09 01:26:24 +01:00
|
|
|
} else
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void deletePathWrapped(const Path & path)
|
|
|
|
{
|
2008-06-18 11:34:17 +02:00
|
|
|
unsigned long long dummy1, dummy2;
|
|
|
|
deletePathWrapped(path, dummy1, dummy2);
|
2006-12-07 15:14:35 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
class DerivationGoal : public Goal
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
private:
|
2005-01-20 17:01:07 +01:00
|
|
|
/* The path of the derivation. */
|
2005-01-19 12:16:11 +01:00
|
|
|
Path drvPath;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2005-01-20 17:01:07 +01:00
|
|
|
/* The derivation stored at drvPath. */
|
2005-01-19 12:16:11 +01:00
|
|
|
Derivation drv;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* The remainder is state held during the build. */
|
|
|
|
|
|
|
|
/* Locks on the output paths. */
|
|
|
|
PathLocks outputLocks;
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
/* All input paths (that is, the union of FS closures of the
|
|
|
|
immediate input paths). */
|
|
|
|
PathSet inputPaths;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* Referenceable paths (i.e., input and output paths). */
|
|
|
|
PathSet allPaths;
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
/* User selected for running the builder. */
|
2005-10-20 18:58:34 +02:00
|
|
|
UserLock buildUser;
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* The process ID of the builder. */
|
2004-06-22 11:51:44 +02:00
|
|
|
Pid pid;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* The temporary directory. */
|
|
|
|
Path tmpDir;
|
|
|
|
|
|
|
|
/* File descriptor for the log file. */
|
2004-06-15 15:49:42 +02:00
|
|
|
AutoCloseFD fdLogFile;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* Pipe for the builder's standard output/error. */
|
2004-05-13 21:14:49 +02:00
|
|
|
Pipe logPipe;
|
|
|
|
|
2009-01-13 12:39:09 +01:00
|
|
|
/* Whether we're building using a build hook. */
|
|
|
|
bool usingBuildHook;
|
|
|
|
|
2004-05-13 21:14:49 +02:00
|
|
|
/* Pipes for talking to the build hook (if any). */
|
|
|
|
Pipe toHook;
|
|
|
|
|
2007-10-27 02:46:59 +02:00
|
|
|
/* Whether we're currently doing a chroot build. */
|
|
|
|
bool useChroot;
|
2008-12-11 19:57:10 +01:00
|
|
|
|
|
|
|
Path chrootRootDir;
|
2007-10-27 02:46:59 +02:00
|
|
|
|
2008-12-11 18:00:12 +01:00
|
|
|
/* RAII object to delete the chroot directory. */
|
|
|
|
boost::shared_ptr<AutoDelete> autoDelChroot;
|
2009-03-25 22:05:42 +01:00
|
|
|
|
|
|
|
/* Whether this is a fixed-output derivation. */
|
|
|
|
bool fixedOutput;
|
2007-10-27 18:06:38 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
typedef void (DerivationGoal::*GoalState)();
|
2004-06-18 20:09:32 +02:00
|
|
|
GoalState state;
|
|
|
|
|
|
|
|
public:
|
2005-01-19 12:16:11 +01:00
|
|
|
DerivationGoal(const Path & drvPath, Worker & worker);
|
|
|
|
~DerivationGoal();
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2006-12-08 19:41:48 +01:00
|
|
|
void cancel();
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
void work();
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2005-02-23 12:19:27 +01:00
|
|
|
Path getDrvPath()
|
|
|
|
{
|
|
|
|
return drvPath;
|
|
|
|
}
|
2008-01-15 05:32:08 +01:00
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
private:
|
2004-06-18 20:09:32 +02:00
|
|
|
/* The states. */
|
|
|
|
void init();
|
2006-12-08 00:58:36 +01:00
|
|
|
void haveDerivation();
|
2005-01-25 11:55:33 +01:00
|
|
|
void outputsSubstituted();
|
2005-01-19 12:16:11 +01:00
|
|
|
void inputsRealised();
|
2004-06-18 20:09:32 +02:00
|
|
|
void tryToBuild();
|
|
|
|
void buildDone();
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
/* Is the build hook willing to perform the build? */
|
2009-03-18 15:48:42 +01:00
|
|
|
typedef enum {rpAccept, rpDecline, rpPostpone} HookReply;
|
2004-06-19 23:45:04 +02:00
|
|
|
HookReply tryBuildHook();
|
|
|
|
|
|
|
|
/* Synchronously wait for a build hook to finish. */
|
2007-03-19 13:48:45 +01:00
|
|
|
void terminateBuildHook(bool kill = false);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* Start building a derivation. */
|
|
|
|
void startBuilder();
|
|
|
|
|
|
|
|
/* 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 12:16:11 +01:00
|
|
|
void computeClosure();
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Open a log file and a pipe to it. */
|
2008-11-12 12:08:27 +01:00
|
|
|
Path openLogFile();
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Common initialisation to be performed in child processes (i.e.,
|
2007-10-27 02:46:59 +02:00
|
|
|
both in builders and in build hooks). */
|
2004-06-18 20:09:32 +02:00
|
|
|
void initChild();
|
|
|
|
|
|
|
|
/* Delete the temporary directory, if we have one. */
|
2004-05-11 20:05:44 +02:00
|
|
|
void deleteTmpDir(bool force);
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2004-06-29 11:41:50 +02:00
|
|
|
/* Callback used by the worker to write to the log. */
|
2005-10-17 17:33:24 +02:00
|
|
|
void handleChildOutput(int fd, const string & data);
|
|
|
|
void handleEOF(int fd);
|
2004-06-29 11:41:50 +02:00
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
/* Return the set of (in)valid paths. */
|
|
|
|
PathSet checkPathValidity(bool returnValid);
|
2006-12-08 19:41:48 +01:00
|
|
|
|
2009-03-25 22:05:42 +01:00
|
|
|
/* Abort the goal if `path' failed to build. */
|
|
|
|
bool pathFailed(const Path & path);
|
|
|
|
|
2006-12-08 19:41:48 +01:00
|
|
|
/* Forcibly kill the child process, if any. */
|
|
|
|
void killChild();
|
2004-05-11 20:05:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
DerivationGoal::DerivationGoal(const Path & drvPath, Worker & worker)
|
|
|
|
: Goal(worker)
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2005-01-19 12:16:11 +01:00
|
|
|
this->drvPath = drvPath;
|
|
|
|
state = &DerivationGoal::init;
|
2005-02-18 10:50:20 +01:00
|
|
|
name = (format("building of `%1%'") % drvPath).str();
|
|
|
|
trace("created");
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
DerivationGoal::~DerivationGoal()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
|
|
|
/* Careful: we should never ever throw an exception from a
|
|
|
|
destructor. */
|
|
|
|
try {
|
2006-12-08 19:41:48 +01:00
|
|
|
killChild();
|
2004-05-11 20:05:44 +02:00
|
|
|
deleteTmpDir(false);
|
2007-05-01 17:16:17 +02:00
|
|
|
} catch (...) {
|
|
|
|
ignoreException();
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-08 19:41:48 +01: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();
|
|
|
|
|
|
|
|
assert(pid == -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::cancel()
|
|
|
|
{
|
|
|
|
killChild();
|
|
|
|
amDone(ecFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::work()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
(this->*state)();
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::init()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-22 16:48:59 +02:00
|
|
|
trace("init");
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2009-12-09 18:45:22 +01:00
|
|
|
if (readOnlyMode)
|
|
|
|
throw Error(format("cannot build derivation `%1%' - no write access to the Nix store") % drvPath);
|
|
|
|
|
2005-01-20 17:01:07 +01:00
|
|
|
/* The first thing to do is to make sure that the derivation
|
2004-06-18 20:09:32 +02:00
|
|
|
exists. If it doesn't, it may be created through a
|
|
|
|
substitute. */
|
2005-01-19 12:16:11 +01:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(drvPath));
|
2003-08-01 16:11:19 +02:00
|
|
|
|
2006-12-08 00:58:36 +01:00
|
|
|
state = &DerivationGoal::haveDerivation;
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 00:58:36 +01:00
|
|
|
void DerivationGoal::haveDerivation()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2005-01-19 12:16:11 +01:00
|
|
|
trace("loading derivation");
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
if (nrFailed != 0) {
|
2008-12-11 19:57:10 +01:00
|
|
|
printMsg(lvlError, format("cannot build missing derivation `%1%'") % drvPath);
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecFailed);
|
2004-06-25 12:21:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-12-12 18:14:57 +01: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);
|
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
assert(worker.store.isValidPath(drvPath));
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
/* Get the derivation. */
|
|
|
|
drv = derivationFromPath(drvPath);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2009-03-17 12:42:55 +01:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2008-06-09 15:52:45 +02:00
|
|
|
worker.store.addTempRoot(i->second.path);
|
2005-01-31 11:27:25 +01:00
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
/* Check what outputs paths are not already valid. */
|
|
|
|
PathSet invalidOutputs = checkPathValidity(false);
|
|
|
|
|
|
|
|
/* If they are all valid, then we're done. */
|
|
|
|
if (invalidOutputs.size() == 0) {
|
2009-03-18 15:48:42 +01:00
|
|
|
amDone(ecSuccess);
|
|
|
|
return;
|
2005-01-25 11:55:33 +01:00
|
|
|
}
|
|
|
|
|
2009-03-25 22:05:42 +01:00
|
|
|
/* Check whether any output previously failed to build. If so,
|
|
|
|
don't bother. */
|
|
|
|
foreach (PathSet::iterator, i, invalidOutputs)
|
|
|
|
if (pathFailed(*i)) return;
|
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
/* We are first going to try to create the invalid output paths
|
|
|
|
through substitutes. If that doesn't work, we'll build
|
|
|
|
them. */
|
2009-03-17 12:42:55 +01:00
|
|
|
foreach (PathSet::iterator, i, invalidOutputs)
|
2005-01-25 11:55:33 +01:00
|
|
|
/* Don't bother creating a substitution goal if there are no
|
|
|
|
substitutes. */
|
2008-06-09 15:52:45 +02:00
|
|
|
if (worker.store.hasSubstitutes(*i))
|
2005-01-25 11:55:33 +01:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i));
|
2007-08-12 02:29:28 +02:00
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
if (waitees.empty()) /* to prevent hang (no wake-up event) */
|
|
|
|
outputsSubstituted();
|
|
|
|
else
|
|
|
|
state = &DerivationGoal::outputsSubstituted;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::outputsSubstituted()
|
|
|
|
{
|
|
|
|
trace("all outputs substituted (maybe)");
|
|
|
|
|
2005-01-25 18:08:52 +01:00
|
|
|
if (nrFailed > 0 && !tryFallback)
|
2005-01-25 14:00:12 +01:00
|
|
|
throw Error(format("some substitutes for the outputs of derivation `%1%' failed; try `--fallback'") % drvPath);
|
|
|
|
|
|
|
|
nrFailed = 0;
|
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
if (checkPathValidity(false).size() == 0) {
|
2009-03-18 15:48:42 +01:00
|
|
|
amDone(ecSuccess);
|
|
|
|
return;
|
2004-05-14 14:24:29 +02:00
|
|
|
}
|
2003-08-01 16:11:19 +02:00
|
|
|
|
2005-01-25 11:55:33 +01: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 15:48:42 +01:00
|
|
|
foreach (DerivationInputs::iterator, i, drv.inputDrvs)
|
|
|
|
addWaitee(worker.makeDerivationGoal(i->first));
|
2003-08-01 16:11:19 +02:00
|
|
|
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (PathSet::iterator, i, drv.inputSrcs)
|
2005-01-19 12:16:11 +01:00
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i));
|
|
|
|
|
|
|
|
state = &DerivationGoal::inputsRealised;
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::inputsRealised()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-22 16:48:59 +02:00
|
|
|
trace("all inputs realised");
|
2004-05-13 21:14:49 +02:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
if (nrFailed != 0) {
|
|
|
|
printMsg(lvlError,
|
2005-01-19 12:16:11 +01:00
|
|
|
format("cannot build derivation `%1%': "
|
2009-03-18 15:48:42 +01:00
|
|
|
"%2% dependencies couldn't be built")
|
2005-01-19 12:16:11 +01:00
|
|
|
% drvPath % nrFailed);
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecFailed);
|
2004-06-25 12:21:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-18 15:48:42 +01:00
|
|
|
/* Gather information necessary for computing the closure and/or
|
|
|
|
running the build hook. */
|
|
|
|
|
|
|
|
/* 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 05:32:08 +01:00
|
|
|
}
|
|
|
|
|
2009-03-18 15:48:42 +01: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));
|
|
|
|
Derivation inDrv = derivationFromPath(i->first);
|
|
|
|
foreach (StringSet::iterator, j, i->second)
|
|
|
|
if (inDrv.outputs.find(*j) != inDrv.outputs.end())
|
|
|
|
computeFSClosure(inDrv.outputs[*j].path, inputPaths);
|
|
|
|
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)
|
|
|
|
computeFSClosure(*i, inputPaths);
|
|
|
|
|
|
|
|
debug(format("added input paths %1%") % showPaths(inputPaths));
|
|
|
|
|
|
|
|
allPaths.insert(inputPaths.begin(), inputPaths.end());
|
|
|
|
|
2009-03-28 17:12:27 +01:00
|
|
|
/* Is this a fixed-output derivation? */
|
|
|
|
fixedOutput = true;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (i->second.hash == "") fixedOutput = false;
|
|
|
|
|
2004-06-19 23:45:04 +02: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 12:16:11 +01:00
|
|
|
state = &DerivationGoal::tryToBuild;
|
2004-06-19 23:45:04 +02:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-23 00:53:05 +01:00
|
|
|
PathSet outputPaths(const DerivationOutputs & outputs)
|
|
|
|
{
|
|
|
|
PathSet paths;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (DerivationOutputs::const_iterator, i, outputs)
|
2009-03-23 00:53:05 +01:00
|
|
|
paths.insert(i->second.path);
|
|
|
|
return paths;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::tryToBuild()
|
2004-05-13 21:14:49 +02:00
|
|
|
{
|
2004-06-22 16:48:59 +02:00
|
|
|
trace("trying to build");
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2009-03-23 00:53:05 +01: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 15:48:42 +01:00
|
|
|
worker.waitForAnyGoal(shared_from_this());
|
|
|
|
return;
|
2009-03-23 00:53:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Obtain locks on all output paths. The locks are automatically
|
2009-03-23 02:05:54 +01: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 00:53:05 +01: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. */
|
|
|
|
PathSet validPaths = checkPathValidity(true);
|
|
|
|
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 15:48:42 +01:00
|
|
|
}
|
2004-06-25 12:21:44 +02:00
|
|
|
|
2009-03-23 00:53:05 +01:00
|
|
|
if (validPaths.size() > 0)
|
|
|
|
/* !!! fix this; try to delete valid paths */
|
|
|
|
throw Error(
|
|
|
|
format("derivation `%1%' is blocked by its output paths")
|
|
|
|
% drvPath);
|
2004-06-25 12:21:44 +02:00
|
|
|
|
2009-03-23 00:53:05 +01: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;
|
|
|
|
if (worker.store.isValidPath(path))
|
|
|
|
throw Error(format("obstructed build: path `%1%' exists") % path);
|
|
|
|
if (pathExists(path)) {
|
|
|
|
debug(format("removing unregistered path `%1%'") % path);
|
|
|
|
deletePathWrapped(path);
|
|
|
|
}
|
|
|
|
}
|
2009-03-18 15:48:42 +01:00
|
|
|
|
2009-03-25 22:05:42 +01: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;
|
|
|
|
|
2009-03-23 00:53:05 +01:00
|
|
|
/* Is the build hook willing to accept this job? */
|
|
|
|
usingBuildHook = true;
|
|
|
|
switch (tryBuildHook()) {
|
|
|
|
case rpAccept:
|
|
|
|
/* Yes, it has started doing so. Wait until we get EOF
|
|
|
|
from the hook. */
|
|
|
|
state = &DerivationGoal::buildDone;
|
|
|
|
return;
|
|
|
|
case rpPostpone:
|
|
|
|
/* Not now; wait until at least one child finishes. */
|
2009-03-29 20:00:45 +02:00
|
|
|
worker.waitForAWhile(shared_from_this());
|
2009-03-18 15:48:42 +01:00
|
|
|
outputLocks.unlock();
|
2007-08-28 13:36:17 +02:00
|
|
|
return;
|
2009-03-23 00:53:05 +01:00
|
|
|
case rpDecline:
|
|
|
|
/* We should do it ourselves. */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
usingBuildHook = false;
|
|
|
|
|
|
|
|
/* Make sure that we are allowed to start a build. */
|
2009-03-31 23:14:07 +02:00
|
|
|
if (worker.getNrLocalBuilds() >= maxBuildJobs) {
|
2009-03-23 00:53:05 +01:00
|
|
|
worker.waitForBuildSlot(shared_from_this());
|
|
|
|
outputLocks.unlock();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
/* Okay, we have to build. */
|
|
|
|
startBuilder();
|
2003-08-01 16:11:19 +02:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
} catch (BuildError & e) {
|
|
|
|
printMsg(lvlError, e.msg());
|
2009-02-16 10:24:20 +01:00
|
|
|
outputLocks.unlock();
|
|
|
|
buildUser.release();
|
2009-03-18 15:48:42 +01:00
|
|
|
if (printBuildTrace)
|
2009-03-23 00:53:05 +01:00
|
|
|
printMsg(lvlError, format("@ build-failed %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % 0 % e.msg());
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecFailed);
|
2004-06-19 23:45:04 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* This state will be reached when we get EOF on the child's
|
|
|
|
log pipe. */
|
2005-01-19 12:16:11 +01:00
|
|
|
state = &DerivationGoal::buildDone;
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::buildDone()
|
2004-06-19 23:45:04 +02:00
|
|
|
{
|
2004-06-22 16:48:59 +02:00
|
|
|
trace("build done");
|
2004-06-19 23:45:04 +02: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
|
|
|
|
:-) */
|
2005-10-17 17:33:24 +02:00
|
|
|
/* !!! this could block! security problem! solution: kill the
|
|
|
|
child */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid_t savedPid = pid;
|
|
|
|
int status = pid.wait(true);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2006-12-08 01:19:50 +01:00
|
|
|
debug(format("builder process for `%1%' finished") % drvPath);
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
/* So the child is gone now. */
|
2004-06-22 11:51:44 +02:00
|
|
|
worker.childTerminated(savedPid);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2006-12-08 01:19:50 +01:00
|
|
|
/* Close the read side of the logger pipe. */
|
|
|
|
logPipe.readSide.close();
|
|
|
|
|
|
|
|
/* Close the log file. */
|
|
|
|
fdLogFile.close();
|
|
|
|
|
2005-10-17 19:43:21 +02: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 15:48:42 +01:00
|
|
|
if (buildUser.enabled()) buildUser.kill();
|
2005-10-17 19:43:21 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
try {
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
/* Some cleanup per path. We do this here and not in
|
|
|
|
computeClosure() for convenience when the build has
|
|
|
|
failed. */
|
2009-03-25 22:05:42 +01:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs) {
|
2006-12-08 18:26:21 +01:00
|
|
|
Path path = i->second.path;
|
2008-12-11 19:57:10 +01:00
|
|
|
|
|
|
|
if (useChroot && pathExists(chrootRootDir + path)) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
if (!pathExists(path)) continue;
|
|
|
|
|
|
|
|
struct stat st;
|
|
|
|
if (lstat(path.c_str(), &st) == -1)
|
|
|
|
throw SysError(format("getting attributes of path `%1%'") % path);
|
2006-12-08 01:19:50 +01:00
|
|
|
|
|
|
|
#ifndef __CYGWIN__
|
2006-12-08 18:26:21 +01: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 00:05:01 +01:00
|
|
|
if ((!S_ISLNK(st.st_mode) && (st.st_mode & (S_IWGRP | S_IWOTH))) ||
|
2006-12-08 18:26:21 +01: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 01:19:50 +01:00
|
|
|
#endif
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2006-12-08 18:26:21 +01: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);
|
|
|
|
}
|
2006-12-08 01:19:50 +01:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
/* Check the exit status. */
|
|
|
|
if (!statusOk(status)) {
|
|
|
|
deleteTmpDir(false);
|
|
|
|
throw BuildError(format("builder for `%1%' %2%")
|
|
|
|
% drvPath % statusToString(status));
|
|
|
|
}
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
deleteTmpDir(true);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2008-12-11 18:00:12 +01:00
|
|
|
/* Delete the chroot (if we were using one). */
|
|
|
|
autoDelChroot.reset(); /* this runs the destructor */
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
/* Compute the FS closure of the outputs and register them as
|
|
|
|
being valid. */
|
2005-01-19 12:16:11 +01:00
|
|
|
computeClosure();
|
2008-11-12 12:08:27 +01:00
|
|
|
|
2004-06-25 12:21:44 +02:00
|
|
|
} catch (BuildError & e) {
|
|
|
|
printMsg(lvlError, e.msg());
|
2009-02-16 10:24:20 +01:00
|
|
|
outputLocks.unlock();
|
|
|
|
buildUser.release();
|
2009-04-15 08:25:02 +02:00
|
|
|
|
|
|
|
/* When using a build hook, the hook will return a remote
|
|
|
|
build failure using exit code 100. Anything else is a hook
|
|
|
|
problem. */
|
|
|
|
bool hookError = usingBuildHook &&
|
|
|
|
(!WIFEXITED(status) || WEXITSTATUS(status) != 100);
|
2009-03-25 22:05:42 +01:00
|
|
|
|
2008-11-12 12:08:27 +01:00
|
|
|
if (printBuildTrace) {
|
2009-04-15 08:25:02 +02:00
|
|
|
if (usingBuildHook && hookError)
|
2009-01-13 12:39:09 +01: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 15:48:42 +01:00
|
|
|
% drvPath % drv.outputs["out"].path % 1 % e.msg());
|
2008-11-12 12:08:27 +01:00
|
|
|
}
|
2009-03-25 22:05:42 +01: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 08:25:02 +02:00
|
|
|
able to access the network). Hook errors (like
|
|
|
|
communication problems with the remote machine) shouldn't
|
|
|
|
be cached either. */
|
|
|
|
if (worker.cacheFailure && !hookError && !fixedOutput)
|
2009-03-25 22:05:42 +01:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
worker.store.registerFailedPath(i->second.path);
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecFailed);
|
2004-06-25 12:21:44 +02:00
|
|
|
return;
|
|
|
|
}
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2005-10-20 18:58:34 +02:00
|
|
|
/* Release the build user, if applicable. */
|
|
|
|
buildUser.release();
|
|
|
|
|
2008-11-12 12:08:27 +01:00
|
|
|
if (printBuildTrace) {
|
|
|
|
printMsg(lvlError, format("@ build-succeeded %1% %2%")
|
|
|
|
% drvPath % drv.outputs["out"].path);
|
|
|
|
}
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecSuccess);
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
DerivationGoal::HookReply DerivationGoal::tryBuildHook()
|
2004-06-19 23:45:04 +02:00
|
|
|
{
|
2007-11-16 17:15:26 +01:00
|
|
|
if (!useBuildHook) return rpDecline;
|
2004-06-19 23:45:04 +02:00
|
|
|
Path buildHook = getEnv("NIX_BUILD_HOOK");
|
|
|
|
if (buildHook == "") return rpDecline;
|
|
|
|
buildHook = absPath(buildHook);
|
|
|
|
|
|
|
|
/* Create a directory where we will store files used for
|
|
|
|
communication between us and the build hook. */
|
|
|
|
tmpDir = createTempDir();
|
|
|
|
|
|
|
|
/* Create the log file and pipe. */
|
2008-11-12 12:08:27 +01:00
|
|
|
Path logFile = openLogFile();
|
2004-06-19 23:45:04 +02:00
|
|
|
|
|
|
|
/* Create the communication pipes. */
|
|
|
|
toHook.create();
|
|
|
|
|
|
|
|
/* Fork the hook. */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid = fork();
|
|
|
|
switch (pid) {
|
2004-06-19 23:45:04 +02:00
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
|
|
|
initChild();
|
|
|
|
|
2009-02-02 18:24:10 +01:00
|
|
|
string s;
|
|
|
|
foreach (DerivationOutputs::const_iterator, i, drv.outputs)
|
|
|
|
s += i->second.path + " ";
|
|
|
|
if (setenv("NIX_HELD_LOCKS", s.c_str(), 1))
|
|
|
|
throw SysError("setting an environment variable");
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
execl(buildHook.c_str(), buildHook.c_str(),
|
2009-03-31 23:14:07 +02:00
|
|
|
(worker.getNrLocalBuilds() < maxBuildJobs ? (string) "1" : "0").c_str(),
|
2004-06-19 23:45:04 +02:00
|
|
|
thisSystem.c_str(),
|
2005-01-19 12:16:11 +01:00
|
|
|
drv.platform.c_str(),
|
2008-12-04 15:29:41 +01:00
|
|
|
drvPath.c_str(),
|
2008-12-04 17:51:16 +01:00
|
|
|
(format("%1%") % maxSilentTime).str().c_str(),
|
2008-12-04 15:29:41 +01:00
|
|
|
NULL);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
|
|
|
throw SysError(format("executing `%1%'") % buildHook);
|
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
} catch (std::exception & e) {
|
2007-10-27 02:46:59 +02:00
|
|
|
std::cerr << format("build hook error: %1%") % e.what() << std::endl;
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
2006-07-20 14:17:25 +02:00
|
|
|
quickExit(1);
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parent */
|
2006-02-02 17:27:31 +01:00
|
|
|
pid.setSeparatePG(true);
|
2007-03-19 13:48:45 +01:00
|
|
|
pid.setKillSignal(SIGTERM);
|
2004-06-19 23:45:04 +02:00
|
|
|
logPipe.writeSide.close();
|
|
|
|
worker.childStarted(shared_from_this(),
|
2010-02-03 22:38:41 +01:00
|
|
|
pid, singleton<set<int> >(logPipe.readSide), false, false);
|
2004-06-19 23:45:04 +02:00
|
|
|
|
|
|
|
toHook.readSide.close();
|
|
|
|
|
|
|
|
/* Read the first line of input, which should be a word indicating
|
2009-03-28 20:29:55 +01:00
|
|
|
whether the hook wishes to perform the build. */
|
2004-06-19 23:45:04 +02:00
|
|
|
string reply;
|
|
|
|
try {
|
2009-03-28 20:29:55 +01:00
|
|
|
while (true) {
|
|
|
|
string s = readLine(logPipe.readSide);
|
|
|
|
if (string(s, 0, 2) == "# ") {
|
|
|
|
reply = string(s, 2);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
handleChildOutput(logPipe.readSide, s + "\n");
|
|
|
|
}
|
2004-06-19 23:45:04 +02:00
|
|
|
} catch (Error & e) {
|
2007-03-19 13:48:45 +01:00
|
|
|
terminateBuildHook(true);
|
2004-06-19 23:45:04 +02:00
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug(format("hook reply is `%1%'") % reply);
|
|
|
|
|
|
|
|
if (reply == "decline" || reply == "postpone") {
|
|
|
|
/* Clean up the child. !!! hacky / should verify */
|
|
|
|
terminateBuildHook();
|
|
|
|
return reply == "decline" ? rpDecline : rpPostpone;
|
|
|
|
}
|
|
|
|
|
|
|
|
else if (reply == "accept") {
|
|
|
|
|
2009-03-28 20:29:55 +01:00
|
|
|
printMsg(lvlInfo, format("using hook to build path(s) %1%")
|
2005-01-19 12:16:11 +01:00
|
|
|
% showPaths(outputPaths(drv.outputs)));
|
2004-06-22 16:48:59 +02:00
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
/* Write the information that the hook needs to perform the
|
2005-01-20 17:01:07 +01:00
|
|
|
build, i.e., the set of input paths, the set of output
|
2005-01-25 12:55:43 +01:00
|
|
|
paths, and the references (pointer graph) in the input
|
|
|
|
paths. */
|
2004-06-19 23:45:04 +02:00
|
|
|
|
|
|
|
Path inputListFN = tmpDir + "/inputs";
|
|
|
|
Path outputListFN = tmpDir + "/outputs";
|
2005-01-25 12:55:43 +01:00
|
|
|
Path referencesFN = tmpDir + "/references";
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2005-03-23 14:16:36 +01:00
|
|
|
/* The `inputs' file lists all 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());
|
|
|
|
computeFSClosure(drvPath, allInputs);
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
string s;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (PathSet::iterator, i, allInputs) s += *i + "\n";
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2010-01-29 13:22:58 +01:00
|
|
|
writeFile(inputListFN, s);
|
2005-03-23 14:16:36 +01:00
|
|
|
|
|
|
|
/* The `outputs' file lists all outputs that have to be copied
|
|
|
|
from the remote system. */
|
2004-06-19 23:45:04 +02:00
|
|
|
s = "";
|
2009-04-21 13:52:16 +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 17:55:19 +01:00
|
|
|
s += i->second.path + "\n";
|
2010-01-29 13:22:58 +01:00
|
|
|
writeFile(outputListFN, s);
|
2005-01-25 12:55:43 +01:00
|
|
|
|
2005-03-23 14:16:36 +01:00
|
|
|
/* The `references' file has exactly the format accepted by
|
|
|
|
`nix-store --register-validity'. */
|
2010-01-29 13:22:58 +01:00
|
|
|
writeFile(referencesFN,
|
2008-01-29 19:17:36 +01:00
|
|
|
makeValidityRegistration(allInputs, true, false));
|
2005-01-25 12:55:43 +01:00
|
|
|
|
2009-03-28 20:29:55 +01:00
|
|
|
/* Tell the hook to proceed. */
|
2004-06-19 23:45:04 +02:00
|
|
|
writeLine(toHook.writeSide, "okay");
|
2009-03-28 20:29:55 +01:00
|
|
|
toHook.writeSide.close();
|
2004-06-19 23:45:04 +02:00
|
|
|
|
2009-03-28 20:29:55 +01:00
|
|
|
if (printBuildTrace)
|
2008-11-12 12:08:27 +01:00
|
|
|
printMsg(lvlError, format("@ build-started %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % drv.platform % logFile);
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
return rpAccept;
|
|
|
|
}
|
|
|
|
|
|
|
|
else throw Error(format("bad hook reply `%1%'") % reply);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-19 13:48:45 +01:00
|
|
|
void DerivationGoal::terminateBuildHook(bool kill)
|
2004-06-19 23:45:04 +02:00
|
|
|
{
|
|
|
|
debug("terminating build hook");
|
2004-06-22 11:51:44 +02:00
|
|
|
pid_t savedPid = pid;
|
2007-03-19 13:48:45 +01:00
|
|
|
if (kill)
|
|
|
|
pid.kill();
|
|
|
|
else
|
|
|
|
pid.wait(true);
|
2006-12-08 18:26:21 +01:00
|
|
|
/* `false' means don't wake up waiting goals, since we want to
|
2007-03-19 13:48:45 +01:00
|
|
|
keep this build slot ourselves. */
|
2004-07-01 18:24:35 +02:00
|
|
|
worker.childTerminated(savedPid, false);
|
2004-06-19 23:45:04 +02:00
|
|
|
toHook.writeSide.close();
|
|
|
|
fdLogFile.close();
|
|
|
|
logPipe.readSide.close();
|
2004-08-05 16:53:27 +02:00
|
|
|
deleteTmpDir(true); /* get rid of the hook's temporary directory */
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-11 19:57:10 +01:00
|
|
|
void chmod(const Path & path, mode_t mode)
|
|
|
|
{
|
|
|
|
if (::chmod(path.c_str(), 01777) == -1)
|
|
|
|
throw SysError(format("setting permissions on `%1%'") % path);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::startBuilder()
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-22 16:48:59 +02:00
|
|
|
startNest(nest, lvlInfo,
|
2005-01-19 16:02:02 +01:00
|
|
|
format("building path(s) %1%") % showPaths(outputPaths(drv.outputs)))
|
2004-06-22 16:48:59 +02:00
|
|
|
|
2004-05-12 16:20:32 +02:00
|
|
|
/* Right platform? */
|
2009-01-12 17:30:32 +01:00
|
|
|
if (drv.platform != thisSystem
|
|
|
|
#ifdef CAN_DO_LINUX32_BUILDS
|
|
|
|
&& !(drv.platform == "i686-linux" && thisSystem == "x86_64-linux")
|
|
|
|
#endif
|
|
|
|
)
|
2009-03-18 15:48:42 +01:00
|
|
|
throw Error(
|
2004-06-25 12:21:44 +02:00
|
|
|
format("a `%1%' is required to build `%3%', but I am a `%2%'")
|
2005-01-19 12:16:11 +01:00
|
|
|
% drv.platform % thisSystem % drvPath);
|
2004-05-12 16:20:32 +02:00
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* Construct the environment passed to the builder. */
|
|
|
|
typedef map<string, string> Environment;
|
|
|
|
Environment env;
|
|
|
|
|
2003-08-18 16:54:54 +02: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 22:12:44 +02: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 11:45:08 +01: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). */
|
|
|
|
env["NIX_STORE"] = nixStore;
|
|
|
|
|
2005-01-20 17:01:07 +01:00
|
|
|
/* Add all bindings specified in the derivation. */
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (StringPairs::iterator, i, drv.env)
|
2003-07-20 21:29:38 +02:00
|
|
|
env[i->first] = i->second;
|
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* Create a temporary directory where the build will take
|
|
|
|
place. */
|
2008-03-27 14:45:17 +01:00
|
|
|
tmpDir = createTempDir("", "nix-build-" + baseNameOf(drvPath), false, false);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* For convenience, set an environment pointing to the top build
|
|
|
|
directory. */
|
2004-06-18 20:09:32 +02:00
|
|
|
env["NIX_BUILD_TOP"] = tmpDir;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
/* Also set TMPDIR and variants to point to this directory. */
|
2004-06-18 20:09:32 +02:00
|
|
|
env["TMPDIR"] = env["TEMPDIR"] = env["TMP"] = env["TEMP"] = tmpDir;
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2008-08-27 19:20:25 +02: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 16:23:24 +01: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 17:12:27 +01:00
|
|
|
if (fixedOutput) env["NIX_OUTPUT_CHECKED"] = "1";
|
2006-05-31 11:51:45 +02: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) {
|
|
|
|
Strings varNames = tokenizeString(drv.env["impureEnvVars"]);
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Strings::iterator, i, varNames) env[*i] = getEnv(*i);
|
2006-05-31 11:51:45 +02:00
|
|
|
}
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2006-11-13 19:18:13 +01: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"];
|
|
|
|
Strings ss = tokenizeString(s);
|
|
|
|
if (ss.size() % 2 != 0)
|
2006-12-08 18:26:21 +01:00
|
|
|
throw BuildError(format("odd number of tokens in `exportReferencesGraph': `%1%'") % s);
|
2006-11-13 19:18:13 +01:00
|
|
|
for (Strings::iterator i = ss.begin(); i != ss.end(); ) {
|
|
|
|
string fileName = *i++;
|
2007-01-23 17:57:43 +01:00
|
|
|
checkStoreName(fileName); /* !!! abuse of this function */
|
|
|
|
|
|
|
|
/* Check that the store path is valid. */
|
2006-11-13 19:18:13 +01:00
|
|
|
Path storePath = *i++;
|
2007-01-23 17:57:43 +01:00
|
|
|
if (!isInStore(storePath))
|
|
|
|
throw BuildError(format("`exportReferencesGraph' contains a non-store path `%1%'")
|
|
|
|
% storePath);
|
|
|
|
storePath = toStorePath(storePath);
|
2008-06-09 15:52:45 +02:00
|
|
|
if (!worker.store.isValidPath(storePath))
|
2007-01-23 17:57:43 +01:00
|
|
|
throw BuildError(format("`exportReferencesGraph' contains an invalid path `%1%'")
|
2006-11-13 19:18:13 +01:00
|
|
|
% storePath);
|
2007-01-23 17:57:43 +01:00
|
|
|
|
2009-03-18 18:36:42 +01: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;
|
|
|
|
computeFSClosure(storePath, paths);
|
|
|
|
paths2 = paths;
|
|
|
|
|
|
|
|
foreach (PathSet::iterator, j, paths2) {
|
|
|
|
if (isDerivation(*j)) {
|
|
|
|
Derivation drv = derivationFromPath(*j);
|
|
|
|
foreach (DerivationOutputs::iterator, k, drv.outputs)
|
|
|
|
computeFSClosure(k->second.path, paths);
|
|
|
|
}
|
|
|
|
}
|
2007-12-30 10:30:56 +01:00
|
|
|
|
|
|
|
/* Write closure info to `fileName'. */
|
2010-01-29 13:22:58 +01:00
|
|
|
writeFile(tmpDir + "/" + fileName,
|
2009-03-18 18:36:42 +01:00
|
|
|
makeValidityRegistration(paths, false, false));
|
2007-12-30 10:30:56 +01:00
|
|
|
}
|
2009-03-18 18:36:42 +01:00
|
|
|
|
2006-05-31 11:51:45 +02:00
|
|
|
|
2006-12-06 21:00:15 +01:00
|
|
|
/* If `build-users-group' is not empty, then we have to build as
|
|
|
|
one of the members of that group. */
|
2006-12-07 16:54:52 +01:00
|
|
|
if (haveBuildUsers()) {
|
2005-10-20 18:58:34 +02:00
|
|
|
buildUser.acquire();
|
|
|
|
assert(buildUser.getUID() != 0);
|
2006-12-06 21:00:15 +01:00
|
|
|
assert(buildUser.getGID() != 0);
|
2005-10-17 19:35:37 +02:00
|
|
|
|
|
|
|
/* Make sure that no other processes are executing under this
|
|
|
|
uid. */
|
2006-12-07 17:33:31 +01:00
|
|
|
buildUser.kill();
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2006-12-07 01:16:07 +01: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 18:52:29 +02:00
|
|
|
|
|
|
|
/* Check that the Nix store has the appropriate permissions,
|
2006-12-06 21:00:15 +01:00
|
|
|
i.e., owned by root and mode 1775 (sticky bit on so that
|
2005-10-17 18:52:29 +02:00
|
|
|
the builder can create its output but not mess with the
|
|
|
|
outputs of other processes). */
|
|
|
|
struct stat st;
|
|
|
|
if (stat(nixStore.c_str(), &st) == -1)
|
|
|
|
throw SysError(format("cannot stat `%1%'") % nixStore);
|
|
|
|
if (!(st.st_mode & S_ISVTX) ||
|
2006-12-03 16:32:38 +01:00
|
|
|
((st.st_mode & S_IRWXG) != S_IRWXG) ||
|
2006-12-06 21:00:15 +01:00
|
|
|
(st.st_gid != buildUser.getGID()))
|
2005-10-17 18:52:29 +02:00
|
|
|
throw Error(format(
|
2006-12-07 01:16:07 +01:00
|
|
|
"builder does not have write permission to `%2%'; "
|
2006-12-03 16:32:38 +01:00
|
|
|
"try `chgrp %1% %2%; chmod 1775 %2%'")
|
2006-12-06 21:00:15 +01:00
|
|
|
% buildUser.getGID() % nixStore);
|
2005-10-17 17:33:24 +02:00
|
|
|
}
|
|
|
|
|
2007-10-27 02:46:59 +02:00
|
|
|
|
2008-08-25 17:49:22 +02: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. */
|
2007-10-27 02:46:59 +02:00
|
|
|
useChroot = queryBoolSetting("build-use-chroot", false);
|
2008-12-12 12:49:42 +01:00
|
|
|
PathSet dirsInChroot;
|
2007-10-27 18:51:55 +02:00
|
|
|
|
2008-08-25 17:49:22 +02:00
|
|
|
if (fixedOutput) useChroot = false;
|
|
|
|
|
2007-10-27 02:46:59 +02:00
|
|
|
if (useChroot) {
|
2007-10-27 18:51:55 +02:00
|
|
|
#if CHROOT_ENABLED
|
2007-10-27 18:06:38 +02:00
|
|
|
/* Create a temporary directory in which we set up the chroot
|
2008-12-12 18:14:57 +01: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 00:55:11 +01:00
|
|
|
if (pathExists(chrootRootDir)) deletePath(chrootRootDir);
|
2007-10-27 18:06:38 +02:00
|
|
|
|
2008-12-11 18:00:12 +01:00
|
|
|
/* Clean up the chroot directory automatically. */
|
|
|
|
autoDelChroot = boost::shared_ptr<AutoDelete>(new AutoDelete(chrootRootDir));
|
2007-10-27 02:46:59 +02:00
|
|
|
|
2008-08-27 18:03:03 +02:00
|
|
|
printMsg(lvlChatty, format("setting up chroot environment in `%1%'") % chrootRootDir);
|
2007-10-27 02:46:59 +02:00
|
|
|
|
2008-08-27 18:03:03 +02: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);
|
2008-12-11 19:57:10 +01:00
|
|
|
chmod(chrootTmpDir, 01777);
|
2008-08-27 18:03:03 +02:00
|
|
|
|
2008-12-11 18:44:02 +01:00
|
|
|
/* Create a /etc/passwd with entries for the build user and
|
|
|
|
the nobody account. The latter is kind of a hack to
|
|
|
|
support Samba-in-QEMU. */
|
|
|
|
createDirs(chrootRootDir + "/etc");
|
|
|
|
|
2010-01-29 13:22:58 +01:00
|
|
|
writeFile(chrootRootDir + "/etc/passwd",
|
2008-12-11 18:44:02 +01:00
|
|
|
(format(
|
|
|
|
"nixbld:x:%1%:65534:Nix build user:/:/noshell\n"
|
|
|
|
"nobody:x:65534:65534:Nobody:/:/noshell\n")
|
|
|
|
% (buildUser.enabled() ? buildUser.getUID() : getuid())).str());
|
|
|
|
|
2008-08-27 18:03:03 +02:00
|
|
|
/* Bind-mount a user-configurable set of directories from the
|
2008-11-11 15:59:20 +01:00
|
|
|
host file system. The `/dev/pts' directory must be mounted
|
|
|
|
separately so that newly-created pseudo-terminals show
|
|
|
|
up. */
|
2007-10-27 02:46:59 +02:00
|
|
|
Paths defaultDirs;
|
|
|
|
defaultDirs.push_back("/dev");
|
2008-10-16 23:04:32 +02:00
|
|
|
defaultDirs.push_back("/dev/pts");
|
2007-10-27 02:46:59 +02:00
|
|
|
defaultDirs.push_back("/proc");
|
|
|
|
|
2008-12-12 12:49:42 +01:00
|
|
|
Paths dirsInChroot_ = querySetting("build-chroot-dirs", defaultDirs);
|
|
|
|
dirsInChroot.insert(dirsInChroot_.begin(), dirsInChroot_.end());
|
|
|
|
|
|
|
|
dirsInChroot.insert(tmpDir);
|
2008-12-11 19:57:10 +01: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. */
|
|
|
|
createDirs(chrootRootDir + nixStore);
|
|
|
|
chmod(chrootRootDir + nixStore, 01777);
|
|
|
|
|
|
|
|
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 12:49:42 +01:00
|
|
|
dirsInChroot.insert(*i);
|
2008-12-11 19:57:10 +01:00
|
|
|
else {
|
|
|
|
Path p = chrootRootDir + *i;
|
2009-10-22 10:28:33 +02: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
|
|
|
|
--optimise'. Make a copy instead. */
|
|
|
|
if (errno != EMLINK)
|
|
|
|
throw SysError(format("linking `%1%' to `%2%'") % p % *i);
|
|
|
|
StringSink sink;
|
|
|
|
dumpPath(*i, sink);
|
|
|
|
StringSource source(sink.s);
|
|
|
|
restorePath(p, source);
|
|
|
|
}
|
2008-12-11 19:57:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-27 18:51:55 +02:00
|
|
|
#else
|
|
|
|
throw Error("chroot builds are not supported on this platform");
|
|
|
|
#endif
|
2007-10-27 02:46:59 +02:00
|
|
|
}
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* Run the builder. */
|
|
|
|
printMsg(lvlChatty, format("executing builder `%1%'") %
|
2005-01-19 12:16:11 +01:00
|
|
|
drv.builder);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-05-13 21:14:49 +02:00
|
|
|
/* Create the log file and pipe. */
|
2008-11-12 12:08:27 +01:00
|
|
|
Path logFile = openLogFile();
|
2004-05-13 21:14:49 +02:00
|
|
|
|
2004-05-11 20:05:44 +02: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
|
|
|
|
fork() is unavailable or inefficient. */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid = fork();
|
|
|
|
switch (pid) {
|
2004-05-11 20:05:44 +02:00
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
|
|
|
|
/* Warning: in the child we should absolutely not make any
|
|
|
|
Berkeley DB calls! */
|
|
|
|
|
|
|
|
try { /* child */
|
|
|
|
|
2007-10-27 18:51:55 +02:00
|
|
|
#if CHROOT_ENABLED
|
2008-12-11 18:00:12 +01:00
|
|
|
if (useChroot) {
|
|
|
|
/* Create our own mount namespace. This means 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. */
|
|
|
|
if (unshare(CLONE_NEWNS) == -1)
|
|
|
|
throw SysError(format("cannot set up a private mount namespace"));
|
|
|
|
|
|
|
|
/* Bind-mount all the directories from the "host"
|
|
|
|
filesystem that we want in the chroot
|
|
|
|
environment. */
|
2008-12-12 12:49:42 +01:00
|
|
|
foreach (PathSet::iterator, i, dirsInChroot) {
|
2008-12-11 18:00:12 +01:00
|
|
|
Path source = *i;
|
|
|
|
Path target = chrootRootDir + source;
|
2008-12-11 19:57:10 +01:00
|
|
|
debug(format("bind mounting `%1%' to `%2%'") % source % target);
|
2008-12-11 18:00:12 +01:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do the chroot(). initChild() will 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 18:51:55 +02:00
|
|
|
#endif
|
2007-10-27 02:46:59 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
initChild();
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2009-01-12 17:30:32 +01:00
|
|
|
#ifdef CAN_DO_LINUX32_BUILDS
|
|
|
|
if (drv.platform == "i686-linux" && thisSystem == "x86_64-linux") {
|
2009-01-27 14:36:59 +01:00
|
|
|
if (personality(0x0008 | 0x8000000 /* == PER_LINUX32_3GB */) == -1)
|
2009-01-12 17:30:32 +01:00
|
|
|
throw SysError("cannot set i686-linux personality");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* Fill in the environment. */
|
|
|
|
Strings envStrs;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Environment::const_iterator, i, env)
|
2004-06-22 12:21:44 +02:00
|
|
|
envStrs.push_back(i->first + "=" + i->second);
|
|
|
|
const char * * envArr = strings2CharPtrs(envStrs);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2006-12-07 01:42:30 +01:00
|
|
|
Path program = drv.builder.c_str();
|
|
|
|
std::vector<const char *> args; /* careful with c_str()! */
|
2006-12-07 12:27:32 +01:00
|
|
|
string user; /* must be here for its c_str()! */
|
2006-12-07 01:42:30 +01:00
|
|
|
|
2006-12-03 16:32:38 +01: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 initChild() above has
|
|
|
|
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. */
|
2006-12-07 01:42:30 +01:00
|
|
|
if (buildUser.enabled()) {
|
2008-12-11 19:57:10 +01:00
|
|
|
printMsg(lvlChatty, format("switching to user `%1%'") % buildUser.getUser());
|
2006-12-07 01:42:30 +01:00
|
|
|
|
|
|
|
if (amPrivileged()) {
|
|
|
|
|
|
|
|
if (setgroups(0, 0) == -1)
|
|
|
|
throw SysError("cannot clear the set of supplementary groups");
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2006-12-07 01:42:30 +01: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");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
/* Let the setuid helper take care of it. */
|
|
|
|
program = nixLibexecDir + "/nix-setuid-helper";
|
|
|
|
args.push_back(program.c_str());
|
|
|
|
args.push_back("run-builder");
|
2006-12-07 12:27:32 +01:00
|
|
|
user = buildUser.getUser().c_str();
|
|
|
|
args.push_back(user.c_str());
|
2006-12-07 01:42:30 +01:00
|
|
|
args.push_back(drv.builder.c_str());
|
|
|
|
}
|
2005-10-17 17:33:24 +02:00
|
|
|
}
|
|
|
|
|
2006-12-07 01:42:30 +01:00
|
|
|
/* Fill in the arguments. */
|
|
|
|
string builderBasename = baseNameOf(drv.builder);
|
|
|
|
args.push_back(builderBasename.c_str());
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Strings::iterator, i, drv.args)
|
2006-12-07 01:42:30 +01:00
|
|
|
args.push_back(i->c_str());
|
|
|
|
args.push_back(0);
|
|
|
|
|
2008-11-14 16:46:45 +01:00
|
|
|
restoreSIGPIPE();
|
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
/* Execute the program. This should not return. */
|
2006-12-07 01:42:30 +01:00
|
|
|
execve(program.c_str(), (char * *) &args[0], (char * *) envArr);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-05-13 21:14:49 +02:00
|
|
|
throw SysError(format("executing `%1%'")
|
2005-01-19 12:16:11 +01:00
|
|
|
% drv.builder);
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
} catch (std::exception & e) {
|
2007-10-27 02:46:59 +02:00
|
|
|
std::cerr << format("build error: %1%") % e.what() << std::endl;
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
2006-07-20 14:17:25 +02:00
|
|
|
quickExit(1);
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2004-05-13 21:14:49 +02:00
|
|
|
/* parent */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid.setSeparatePG(true);
|
2004-06-18 20:09:32 +02:00
|
|
|
logPipe.writeSide.close();
|
2005-10-17 18:52:29 +02:00
|
|
|
worker.childStarted(shared_from_this(), pid,
|
2010-02-03 22:38:41 +01:00
|
|
|
singleton<set<int> >(logPipe.readSide), true, true);
|
2008-11-12 12:08:27 +01:00
|
|
|
|
|
|
|
if (printBuildTrace) {
|
|
|
|
printMsg(lvlError, format("@ build-started %1% %2% %3% %4%")
|
|
|
|
% drvPath % drv.outputs["out"].path % drv.platform % logFile);
|
|
|
|
}
|
2004-05-14 00:52:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-19 18:09:24 +02: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;
|
|
|
|
Paths paths = tokenizeString(attr);
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Strings::iterator, i, paths) {
|
2006-10-19 18:09:24 +02: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 18:26:21 +01:00
|
|
|
else throw BuildError(
|
2006-10-19 18:09:24 +02:00
|
|
|
format("derivation contains an illegal reference specifier `%1%'")
|
|
|
|
% *i);
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::computeClosure()
|
2004-05-18 16:52:35 +02:00
|
|
|
{
|
2005-01-19 12:16:11 +01:00
|
|
|
map<Path, PathSet> allReferences;
|
2005-01-19 17:39:47 +01:00
|
|
|
map<Path, Hash> contentHashes;
|
2009-02-02 18:24:10 +01: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. */
|
|
|
|
if (usingBuildHook) {
|
|
|
|
bool allValid = true;
|
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
|
|
|
if (!worker.store.isValidPath(i->second.path)) allValid = false;
|
|
|
|
if (allValid) return;
|
|
|
|
}
|
|
|
|
|
2004-06-18 20:09:32 +02: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 18:24:10 +01: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 17:55:19 +01:00
|
|
|
Path path = i->second.path;
|
2004-06-25 12:21:44 +02:00
|
|
|
if (!pathExists(path)) {
|
|
|
|
throw BuildError(
|
2004-07-06 13:21:34 +02:00
|
|
|
format("builder for `%1%' failed to produce output path `%2%'")
|
2005-01-19 12:16:11 +01:00
|
|
|
% drvPath % path);
|
2004-06-25 12:21:44 +02:00
|
|
|
}
|
2004-05-18 16:52:35 +02:00
|
|
|
|
2005-10-17 18:59:25 +02:00
|
|
|
struct stat st;
|
2006-12-08 18:26:21 +01:00
|
|
|
if (lstat(path.c_str(), &st) == -1)
|
2005-10-17 18:59:25 +02:00
|
|
|
throw SysError(format("getting attributes of path `%1%'") % path);
|
|
|
|
|
2005-04-11 10:07:41 +02:00
|
|
|
startNest(nest, lvlTalkative,
|
|
|
|
format("scanning for references inside `%1%'") % path);
|
|
|
|
|
2005-01-17 20:01:48 +01:00
|
|
|
/* Check that fixed-output derivations produced the right
|
|
|
|
outputs (i.e., the content hash should match the specified
|
|
|
|
hash). */
|
|
|
|
if (i->second.hash != "") {
|
2005-02-22 22:14:41 +01:00
|
|
|
|
|
|
|
bool recursive = false;
|
|
|
|
string algo = i->second.hashAlgo;
|
|
|
|
|
|
|
|
if (string(algo, 0, 2) == "r:") {
|
|
|
|
recursive = true;
|
|
|
|
algo = string(algo, 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 18:26:21 +01:00
|
|
|
throw BuildError(
|
2005-02-22 22:14:41 +01:00
|
|
|
format("output path `%1% should be a non-executable regular file")
|
|
|
|
% path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the hash. */
|
|
|
|
HashType ht = parseHashType(algo);
|
2005-01-17 20:01:48 +01:00
|
|
|
if (ht == htUnknown)
|
2006-12-08 18:26:21 +01:00
|
|
|
throw BuildError(format("unknown hash algorithm `%1%'") % algo);
|
2005-01-17 20:01:48 +01:00
|
|
|
Hash h = parseHash(ht, i->second.hash);
|
2005-02-22 22:14:41 +01:00
|
|
|
Hash h2 = recursive ? hashPath(ht, path) : hashFile(ht, path);
|
2005-01-17 20:01:48 +01:00
|
|
|
if (h != h2)
|
2006-12-08 18:26:21 +01:00
|
|
|
throw BuildError(
|
2005-05-10 16:21:46 +02:00
|
|
|
format("output path `%1%' should have %2% hash `%3%', instead has `%4%'")
|
2005-02-22 22:14:41 +01:00
|
|
|
% path % algo % printHash(h) % printHash(h2));
|
2005-01-17 20:01:48 +01:00
|
|
|
}
|
|
|
|
|
2005-10-17 18:59:25 +02:00
|
|
|
/* Get rid of all weird permissions. */
|
2004-11-29 16:09:29 +01:00
|
|
|
canonicalisePathMetaData(path);
|
2004-05-13 21:14:49 +02:00
|
|
|
|
2009-03-28 21:51:33 +01: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. */
|
|
|
|
Hash hash;
|
|
|
|
PathSet references = scanForReferences(path, allPaths, hash);
|
|
|
|
contentHashes[path] = hash;
|
2006-11-13 19:19:05 +01:00
|
|
|
|
|
|
|
/* For debugging, print out the referenced and unreferenced
|
|
|
|
paths. */
|
2009-03-28 21:51:33 +01:00
|
|
|
foreach (PathSet::iterator, i, inputPaths) {
|
2006-11-13 19:19:05 +01: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 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
allReferences[path] = references;
|
2005-01-19 17:39:47 +01:00
|
|
|
|
2006-10-19 18:09:24 +02: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 13:52:16 +02:00
|
|
|
foreach (PathSet::iterator, i, references)
|
2006-10-19 18:09:24 +02:00
|
|
|
if (allowed.find(*i) == allowed.end())
|
2006-12-08 18:26:21 +01:00
|
|
|
throw BuildError(format("output is not allowed to refer to path `%1%'") % *i);
|
2006-10-19 18:09:24 +02:00
|
|
|
}
|
2004-05-18 16:52:35 +02:00
|
|
|
}
|
2004-05-13 21:14:49 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
/* Register each output path as valid, and register the sets of
|
2008-06-09 15:52:45 +02:00
|
|
|
paths referenced by each of them. !!! this should be
|
|
|
|
atomic so that either all paths are registered as valid, or
|
|
|
|
none are. */
|
2009-02-02 18:24:10 +01:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2008-06-09 15:52:45 +02:00
|
|
|
worker.store.registerValidPath(i->second.path,
|
2005-01-25 22:28:25 +01:00
|
|
|
contentHashes[i->second.path],
|
2005-02-07 14:40:40 +01:00
|
|
|
allReferences[i->second.path],
|
|
|
|
drvPath);
|
2004-05-13 21:14:49 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* It is now safe to delete the lock files, since all future
|
2005-01-19 12:16:11 +01:00
|
|
|
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. */
|
2004-06-18 20:09:32 +02:00
|
|
|
outputLocks.setDeletion(true);
|
2009-02-16 10:24:20 +01:00
|
|
|
outputLocks.unlock();
|
2004-05-14 00:52:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-28 18:33:54 +02:00
|
|
|
string drvsLogDir = "drvs";
|
2005-03-24 18:46:38 +01:00
|
|
|
|
|
|
|
|
2008-11-12 12:08:27 +01:00
|
|
|
Path DerivationGoal::openLogFile()
|
2004-05-13 21:14:49 +02:00
|
|
|
{
|
|
|
|
/* Create a log file. */
|
2005-03-24 18:46:38 +01:00
|
|
|
Path dir = (format("%1%/%2%") % nixLogDir % drvsLogDir).str();
|
|
|
|
createDirs(dir);
|
|
|
|
|
|
|
|
Path logFileName = (format("%1%/%2%") % dir % baseNameOf(drvPath)).str();
|
2004-06-18 20:09:32 +02:00
|
|
|
fdLogFile = open(logFileName.c_str(),
|
2004-05-13 21:14:49 +02:00
|
|
|
O_CREAT | O_WRONLY | O_TRUNC, 0666);
|
2004-06-18 20:09:32 +02:00
|
|
|
if (fdLogFile == -1)
|
2004-05-13 21:14:49 +02:00
|
|
|
throw SysError(format("creating log file `%1%'") % logFileName);
|
|
|
|
|
|
|
|
/* Create a pipe to get the output of the child. */
|
2004-06-18 20:09:32 +02:00
|
|
|
logPipe.create();
|
2008-11-12 12:08:27 +01:00
|
|
|
|
|
|
|
return logFileName;
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::initChild()
|
2004-05-13 21:14:49 +02:00
|
|
|
{
|
2004-06-22 12:21:44 +02:00
|
|
|
commonChildInit(logPipe);
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
if (chdir(tmpDir.c_str()) == -1)
|
2004-06-25 12:21:44 +02:00
|
|
|
throw SysError(format("changing into `%1%'") % tmpDir);
|
2004-05-13 21:14:49 +02:00
|
|
|
|
|
|
|
/* When running a hook, dup the communication pipes. */
|
2009-03-28 20:29:55 +01:00
|
|
|
if (usingBuildHook) {
|
2004-06-18 20:09:32 +02:00
|
|
|
toHook.writeSide.close();
|
2009-03-28 20:29:55 +01:00
|
|
|
if (dup2(toHook.readSide, STDIN_FILENO) == -1)
|
2004-06-25 12:21:44 +02:00
|
|
|
throw SysError("dupping to-hook read side");
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Close all other file descriptors. */
|
2009-03-28 20:29:55 +01:00
|
|
|
closeMostFDs(set<int>());
|
2004-05-13 21:14:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
void DerivationGoal::deleteTmpDir(bool force)
|
2004-05-13 21:14:49 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
if (tmpDir != "") {
|
2006-12-08 00:27:40 +01:00
|
|
|
if (keepFailed && !force) {
|
2004-06-22 16:48:59 +02:00
|
|
|
printMsg(lvlError,
|
2004-06-18 20:09:32 +02:00
|
|
|
format("builder for `%1%' failed; keeping build directory `%2%'")
|
2005-01-19 12:16:11 +01:00
|
|
|
% drvPath % tmpDir);
|
2006-12-08 00:27:40 +01:00
|
|
|
if (buildUser.enabled() && !amPrivileged())
|
|
|
|
getOwnership(tmpDir);
|
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
else
|
2006-12-07 15:14:35 +01:00
|
|
|
deletePathWrapped(tmpDir);
|
2004-06-18 20:09:32 +02:00
|
|
|
tmpDir = "";
|
|
|
|
}
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
void DerivationGoal::handleChildOutput(int fd, const string & data)
|
2004-06-29 11:41:50 +02:00
|
|
|
{
|
2005-10-17 17:33:24 +02:00
|
|
|
if (fd == logPipe.readSide) {
|
|
|
|
if (verbosity >= buildVerbosity)
|
2006-12-03 03:08:13 +01:00
|
|
|
writeToStderr((unsigned char *) data.c_str(), data.size());
|
2005-10-17 17:33:24 +02:00
|
|
|
writeFull(fdLogFile, (unsigned char *) data.c_str(), data.size());
|
|
|
|
}
|
|
|
|
|
|
|
|
else abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DerivationGoal::handleEOF(int fd)
|
|
|
|
{
|
|
|
|
if (fd == logPipe.readSide) worker.wakeUp(shared_from_this());
|
2004-06-29 11:41:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-25 11:55:33 +01:00
|
|
|
PathSet DerivationGoal::checkPathValidity(bool returnValid)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2005-01-25 11:55:33 +01:00
|
|
|
PathSet result;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (DerivationOutputs::iterator, i, drv.outputs)
|
2008-06-09 15:52:45 +02:00
|
|
|
if (worker.store.isValidPath(i->second.path)) {
|
2005-01-25 11:55:33 +01:00
|
|
|
if (returnValid) result.insert(i->second.path);
|
|
|
|
} else {
|
|
|
|
if (!returnValid) result.insert(i->second.path);
|
|
|
|
}
|
|
|
|
return result;
|
2004-06-28 12:42:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-25 22:05:42 +01:00
|
|
|
bool DerivationGoal::pathFailed(const Path & path)
|
|
|
|
{
|
|
|
|
if (!worker.cacheFailure) return false;
|
|
|
|
|
|
|
|
if (!worker.store.hasPathFailed(path)) return false;
|
|
|
|
|
|
|
|
printMsg(lvlError, format("builder for `%1%' failed previously (cached)") % path);
|
|
|
|
|
|
|
|
if (printBuildTrace)
|
|
|
|
printMsg(lvlError, format("@ build-failed %1% %2% cached") % drvPath % path);
|
|
|
|
|
|
|
|
amDone(ecFailed);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
2003-07-20 21:29:38 +02:00
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
class SubstitutionGoal : public Goal
|
|
|
|
{
|
2007-08-12 02:29:28 +02:00
|
|
|
friend class Worker;
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
private:
|
|
|
|
/* The store path that should be realised through a substitute. */
|
|
|
|
Path storePath;
|
2003-08-20 13:30:45 +02:00
|
|
|
|
2007-08-12 02:29:28 +02:00
|
|
|
/* The remaining substituters. */
|
|
|
|
Paths subs;
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2007-08-12 02:29:28 +02:00
|
|
|
/* The current substituter. */
|
|
|
|
Path sub;
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2008-08-02 14:54:35 +02:00
|
|
|
/* Path info returned by the substituter's query info operation. */
|
|
|
|
SubstitutablePathInfo info;
|
2005-01-25 18:08:52 +01:00
|
|
|
|
2004-06-20 21:17:54 +02:00
|
|
|
/* Pipe for the substitute's standard output/error. */
|
|
|
|
Pipe logPipe;
|
|
|
|
|
|
|
|
/* The process ID of the builder. */
|
2004-06-22 11:51:44 +02:00
|
|
|
Pid pid;
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-06-21 11:35:50 +02:00
|
|
|
/* Lock on the store path. */
|
2006-09-04 23:06:23 +02:00
|
|
|
boost::shared_ptr<PathLocks> outputLock;
|
2004-06-21 11:35:50 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
typedef void (SubstitutionGoal::*GoalState)();
|
|
|
|
GoalState state;
|
2003-08-20 13:30:45 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
public:
|
2005-01-19 12:16:11 +01:00
|
|
|
SubstitutionGoal(const Path & storePath, Worker & worker);
|
2004-06-25 17:36:09 +02: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 14:39:56 +02:00
|
|
|
|
2006-12-08 19:41:48 +01:00
|
|
|
void cancel();
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
void work();
|
2003-08-20 13:30:45 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* The states. */
|
|
|
|
void init();
|
2004-06-20 21:17:54 +02:00
|
|
|
void tryNext();
|
2007-08-12 02:29:28 +02:00
|
|
|
void gotInfo();
|
|
|
|
void referencesValid();
|
2004-06-22 11:00:31 +02:00
|
|
|
void tryToRun();
|
2004-06-20 21:17:54 +02:00
|
|
|
void finished();
|
2004-06-22 19:04:10 +02:00
|
|
|
|
2004-06-29 11:41:50 +02:00
|
|
|
/* Callback used by the worker to write to the log. */
|
2005-10-17 17:33:24 +02:00
|
|
|
void handleChildOutput(int fd, const string & data);
|
|
|
|
void handleEOF(int fd);
|
2004-06-18 20:09:32 +02:00
|
|
|
};
|
2003-08-20 13:30:45 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
SubstitutionGoal::SubstitutionGoal(const Path & storePath, Worker & worker)
|
|
|
|
: Goal(worker)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2005-01-19 12:16:11 +01:00
|
|
|
this->storePath = storePath;
|
2004-06-18 20:09:32 +02:00
|
|
|
state = &SubstitutionGoal::init;
|
2005-02-18 10:50:20 +01:00
|
|
|
name = (format("substitution of `%1%'") % storePath).str();
|
|
|
|
trace("created");
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
SubstitutionGoal::~SubstitutionGoal()
|
|
|
|
{
|
2006-12-08 19:41:48 +01:00
|
|
|
/* !!! Once we let substitution goals run under a build user, we
|
2009-03-18 18:36:42 +01:00
|
|
|
need to use the setuid helper just as in ~DerivationGoal().
|
2006-12-08 19:41:48 +01:00
|
|
|
Idem for cancel. */
|
2004-06-25 17:36:09 +02:00
|
|
|
if (pid != -1) worker.childTerminated(pid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 19:41:48 +01:00
|
|
|
void SubstitutionGoal::cancel()
|
|
|
|
{
|
|
|
|
if (pid != -1) {
|
|
|
|
pid_t savedPid = pid;
|
|
|
|
pid.kill();
|
|
|
|
worker.childTerminated(savedPid);
|
|
|
|
}
|
|
|
|
amDone(ecFailed);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
void SubstitutionGoal::work()
|
|
|
|
{
|
|
|
|
(this->*state)();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::init()
|
|
|
|
{
|
2004-06-22 19:04:10 +02:00
|
|
|
trace("init");
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
worker.store.addTempRoot(storePath);
|
2005-01-31 11:27:25 +01:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* If the path already exists we're done. */
|
2008-06-09 15:52:45 +02:00
|
|
|
if (worker.store.isValidPath(storePath)) {
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecSuccess);
|
2004-06-18 20:09:32 +02:00
|
|
|
return;
|
2003-08-20 13:30:45 +02:00
|
|
|
}
|
|
|
|
|
2009-12-09 18:45:22 +01:00
|
|
|
if (readOnlyMode)
|
|
|
|
throw Error(format("cannot substitute path `%1%' - no write access to the Nix store") % storePath);
|
|
|
|
|
2008-08-04 15:15:35 +02:00
|
|
|
subs = substituters;
|
|
|
|
|
|
|
|
tryNext();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::tryNext()
|
|
|
|
{
|
|
|
|
trace("trying next substituter");
|
|
|
|
|
|
|
|
if (subs.size() == 0) {
|
|
|
|
/* None left. Terminate this goal and let someone else deal
|
|
|
|
with it. */
|
2007-08-12 02:29:28 +02:00
|
|
|
printMsg(lvlError,
|
2008-08-04 15:15:35 +02:00
|
|
|
format("path `%1%' is required, but there is no substituter that can build it")
|
2007-08-12 02:29:28 +02:00
|
|
|
% storePath);
|
|
|
|
amDone(ecFailed);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-08-04 15:15:35 +02:00
|
|
|
sub = subs.front();
|
|
|
|
subs.pop_front();
|
|
|
|
|
|
|
|
if (!worker.store.querySubstitutablePathInfo(sub, storePath, info)) {
|
|
|
|
tryNext();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-09-20 18:14:00 +02:00
|
|
|
/* To maintain the closure invariant, we first have to realise the
|
2005-01-25 18:08:52 +01:00
|
|
|
paths referenced by this one. */
|
2008-08-02 14:54:35 +02:00
|
|
|
foreach (PathSet::iterator, i, info.references)
|
2005-02-01 10:23:38 +01:00
|
|
|
if (*i != storePath) /* ignore self-references */
|
|
|
|
addWaitee(worker.makeSubstitutionGoal(*i));
|
2005-01-25 18:08:52 +01:00
|
|
|
|
|
|
|
if (waitees.empty()) /* to prevent hang (no wake-up event) */
|
|
|
|
referencesValid();
|
|
|
|
else
|
|
|
|
state = &SubstitutionGoal::referencesValid;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::referencesValid()
|
|
|
|
{
|
2007-08-12 02:29:28 +02:00
|
|
|
trace("all references realised");
|
2005-01-25 18:08:52 +01:00
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
if (nrFailed > 0) {
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("some references of path `%1%' could not be realised") % storePath);
|
|
|
|
amDone(ecFailed);
|
|
|
|
return;
|
|
|
|
}
|
2005-01-25 18:08:52 +01:00
|
|
|
|
2008-08-02 14:54:35 +02:00
|
|
|
foreach (PathSet::iterator, i, info.references)
|
2005-02-01 10:23:38 +01:00
|
|
|
if (*i != storePath) /* ignore self-references */
|
2008-06-09 15:52:45 +02:00
|
|
|
assert(worker.store.isValidPath(*i));
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-06-22 11:00:31 +02:00
|
|
|
state = &SubstitutionGoal::tryToRun;
|
2009-03-31 23:14:07 +02:00
|
|
|
worker.wakeUp(shared_from_this());
|
2004-06-22 11:00:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::tryToRun()
|
|
|
|
{
|
2004-06-22 19:04:10 +02:00
|
|
|
trace("trying to run");
|
|
|
|
|
2009-03-31 23:14:07 +02: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. */
|
|
|
|
if (worker.getNrLocalBuilds() >= (maxBuildJobs == 0 ? 1 : maxBuildJobs)) {
|
2004-06-22 11:00:31 +02:00
|
|
|
worker.waitForBuildSlot(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-08-28 13:36:17 +02: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 18:22:08 +02:00
|
|
|
outputLock.reset(); // make sure this goal's lock is gone
|
2007-08-28 13:36:17 +02: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 */
|
|
|
|
}
|
|
|
|
|
2004-06-21 11:35:50 +02:00
|
|
|
/* Acquire a lock on the output path. */
|
2006-09-04 23:06:23 +02:00
|
|
|
outputLock = boost::shared_ptr<PathLocks>(new PathLocks);
|
2009-03-23 02:05:54 +01:00
|
|
|
if (!outputLock->lockPaths(singleton<PathSet>(storePath), "", false)) {
|
|
|
|
worker.waitForAWhile(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
2004-06-21 11:35:50 +02:00
|
|
|
|
|
|
|
/* Check again whether the path is invalid. */
|
2008-06-09 15:52:45 +02:00
|
|
|
if (worker.store.isValidPath(storePath)) {
|
2004-06-21 11:35:50 +02:00
|
|
|
debug(format("store path `%1%' has become valid") % storePath);
|
2004-06-24 15:40:38 +02:00
|
|
|
outputLock->setDeletion(true);
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecSuccess);
|
2004-06-21 11:35:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("substituting path `%1%' using substituter `%2%'")
|
2007-08-12 02:29:28 +02:00
|
|
|
% storePath % sub);
|
2004-06-22 19:04:10 +02:00
|
|
|
|
|
|
|
logPipe.create();
|
|
|
|
|
2004-06-21 11:35:50 +02:00
|
|
|
/* Remove the (stale) output path if it exists. */
|
|
|
|
if (pathExists(storePath))
|
2006-12-07 15:14:35 +01:00
|
|
|
deletePathWrapped(storePath);
|
2004-06-21 11:35:50 +02:00
|
|
|
|
2004-06-20 21:17:54 +02:00
|
|
|
/* Fork the substitute program. */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid = fork();
|
|
|
|
switch (pid) {
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw SysError("unable to fork");
|
|
|
|
|
|
|
|
case 0:
|
|
|
|
try { /* child */
|
|
|
|
|
|
|
|
logPipe.readSide.close();
|
|
|
|
|
2004-06-22 12:21:44 +02:00
|
|
|
commonChildInit(logPipe);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-06-22 12:21:44 +02:00
|
|
|
/* Fill in the arguments. */
|
2007-08-12 02:29:28 +02:00
|
|
|
Strings args;
|
|
|
|
args.push_back(baseNameOf(sub));
|
|
|
|
args.push_back("--substitute");
|
|
|
|
args.push_back(storePath);
|
2004-06-22 12:21:44 +02:00
|
|
|
const char * * argArr = strings2CharPtrs(args);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2007-08-12 02:29:28 +02:00
|
|
|
execv(sub.c_str(), (char * *) argArr);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2007-08-12 02:29:28 +02:00
|
|
|
throw SysError(format("executing `%1%'") % sub);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2006-09-04 23:06:23 +02:00
|
|
|
} catch (std::exception & e) {
|
2007-10-27 02:46:59 +02:00
|
|
|
std::cerr << format("substitute error: %1%") % e.what() << std::endl;
|
2004-06-20 21:17:54 +02:00
|
|
|
}
|
2006-07-20 14:17:25 +02:00
|
|
|
quickExit(1);
|
2004-06-20 21:17:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* parent */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid.setSeparatePG(true);
|
2007-03-19 13:48:45 +01:00
|
|
|
pid.setKillSignal(SIGTERM);
|
2004-06-20 21:17:54 +02:00
|
|
|
logPipe.writeSide.close();
|
|
|
|
worker.childStarted(shared_from_this(),
|
2010-02-03 22:38:41 +01:00
|
|
|
pid, singleton<set<int> >(logPipe.readSide), true, true);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
state = &SubstitutionGoal::finished;
|
2008-11-12 12:08:27 +01:00
|
|
|
|
|
|
|
if (printBuildTrace) {
|
|
|
|
printMsg(lvlError, format("@ substituter-started %1% %2%")
|
|
|
|
% storePath % sub);
|
|
|
|
}
|
2004-06-20 21:17:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void SubstitutionGoal::finished()
|
|
|
|
{
|
2004-06-22 19:04:10 +02:00
|
|
|
trace("substitute finished");
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
/* Since we got an EOF on the logger pipe, the substitute is
|
|
|
|
presumed to have terminated. */
|
2004-06-22 11:51:44 +02:00
|
|
|
pid_t savedPid = pid;
|
|
|
|
int status = pid.wait(true);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
/* So the child is gone now. */
|
2004-06-22 11:51:44 +02:00
|
|
|
worker.childTerminated(savedPid);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
|
|
|
/* Close the read side of the logger pipe. */
|
|
|
|
logPipe.readSide.close();
|
|
|
|
|
|
|
|
debug(format("substitute for `%1%' finished") % storePath);
|
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
/* Check the exit status and the build result. */
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!statusOk(status))
|
|
|
|
throw SubstError(format("builder for `%1%' %2%")
|
|
|
|
% storePath % statusToString(status));
|
|
|
|
|
|
|
|
if (!pathExists(storePath))
|
|
|
|
throw SubstError(
|
|
|
|
format("substitute did not produce path `%1%'")
|
|
|
|
% storePath);
|
|
|
|
|
|
|
|
} catch (SubstError & e) {
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
printMsg(lvlInfo,
|
|
|
|
format("substitution of path `%1%' using substituter `%2%' failed: %3%")
|
2007-08-12 02:29:28 +02:00
|
|
|
% storePath % sub % e.msg());
|
2004-06-24 15:40:38 +02:00
|
|
|
|
2008-11-12 12:08:27 +01:00
|
|
|
if (printBuildTrace) {
|
|
|
|
printMsg(lvlError, format("@ substituter-failed %1% %2% %3%")
|
|
|
|
% storePath % status % e.msg());
|
|
|
|
}
|
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
/* Try the next substitute. */
|
|
|
|
state = &SubstitutionGoal::tryNext;
|
|
|
|
worker.wakeUp(shared_from_this());
|
|
|
|
return;
|
|
|
|
}
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-11-29 16:09:29 +01:00
|
|
|
canonicalisePathMetaData(storePath);
|
2004-09-22 14:15:04 +02:00
|
|
|
|
2005-01-19 17:39:47 +01:00
|
|
|
Hash contentHash = hashPath(htSHA256, storePath);
|
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
worker.store.registerValidPath(storePath, contentHash,
|
2008-08-02 14:54:35 +02:00
|
|
|
info.references, info.deriver);
|
2004-06-20 21:17:54 +02:00
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
outputLock->setDeletion(true);
|
2004-06-21 11:35:50 +02:00
|
|
|
|
2004-06-24 15:40:38 +02:00
|
|
|
printMsg(lvlChatty,
|
|
|
|
format("substitution of path `%1%' succeeded") % storePath);
|
|
|
|
|
2008-11-12 12:08:27 +01:00
|
|
|
if (printBuildTrace) {
|
|
|
|
printMsg(lvlError, format("@ substituter-succeeded %1%") % storePath);
|
|
|
|
}
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
amDone(ecSuccess);
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
void SubstitutionGoal::handleChildOutput(int fd, const string & data)
|
2004-06-29 11:41:50 +02:00
|
|
|
{
|
|
|
|
assert(fd == logPipe.readSide);
|
2005-10-17 17:33:24 +02:00
|
|
|
if (verbosity >= buildVerbosity)
|
2006-12-03 03:08:13 +01:00
|
|
|
writeToStderr((unsigned char *) data.c_str(), data.size());
|
2004-06-29 11:41:50 +02:00
|
|
|
/* Don't write substitution output to a log file for now. We
|
|
|
|
probably should, though. */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
void SubstitutionGoal::handleEOF(int fd)
|
|
|
|
{
|
|
|
|
if (fd == logPipe.readSide) worker.wakeUp(shared_from_this());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
static bool working = false;
|
|
|
|
|
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
Worker::Worker(LocalStore & store)
|
|
|
|
: store(store)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
|
|
|
/* Debugging: prevent recursive workers. */
|
|
|
|
if (working) abort();
|
|
|
|
working = true;
|
2009-03-31 23:14:07 +02:00
|
|
|
nrLocalBuilds = 0;
|
2009-03-23 02:05:54 +01:00
|
|
|
lastWokenUp = 0;
|
2009-03-25 22:05:42 +01:00
|
|
|
cacheFailure = queryBoolSetting("build-cache-failure", false);
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Worker::~Worker()
|
|
|
|
{
|
|
|
|
working = false;
|
2004-06-25 17:36:09 +02: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 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
template<class T>
|
2004-06-25 17:36:09 +02:00
|
|
|
static GoalPtr addGoal(const Path & path,
|
|
|
|
Worker & worker, WeakGoalMap & goalMap)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
GoalPtr goal = goalMap[path].lock();
|
2004-06-18 20:09:32 +02:00
|
|
|
if (!goal) {
|
|
|
|
goal = GoalPtr(new T(path, worker));
|
|
|
|
goalMap[path] = goal;
|
|
|
|
worker.wakeUp(goal);
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
2004-06-25 17:36:09 +02:00
|
|
|
return goal;
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2003-08-01 17:41:47 +02:00
|
|
|
|
2005-01-19 12:16:11 +01:00
|
|
|
GoalPtr Worker::makeDerivationGoal(const Path & nePath)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2005-01-19 12:16:11 +01:00
|
|
|
return addGoal<DerivationGoal>(nePath, *this, derivationGoals);
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
GoalPtr Worker::makeSubstitutionGoal(const Path & storePath)
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
return addGoal<SubstitutionGoal>(storePath, *this, substitutionGoals);
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
static void removeGoal(GoalPtr goal, WeakGoalMap & goalMap)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2005-02-18 10:50:20 +01: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 20:09:32 +02:00
|
|
|
}
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
void Worker::removeGoal(GoalPtr goal)
|
|
|
|
{
|
2006-09-04 23:06:23 +02:00
|
|
|
nix::removeGoal(goal, derivationGoals);
|
|
|
|
nix::removeGoal(goal, substitutionGoals);
|
2005-02-23 12:19:27 +01: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). */
|
|
|
|
if (goal->getExitCode() == Goal::ecFailed && !keepGoing)
|
|
|
|
topGoals.clear();
|
|
|
|
}
|
2007-08-28 13:36:17 +02:00
|
|
|
|
|
|
|
/* Wake up goals waiting for any goal to finish. */
|
2009-03-23 02:05:54 +01:00
|
|
|
foreach (WeakGoals::iterator, i, waitingForAnyGoal) {
|
2007-08-28 13:36:17 +02:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
waitingForAnyGoal.clear();
|
2004-05-11 20:05:44 +02:00
|
|
|
}
|
2003-11-21 17:05:19 +01:00
|
|
|
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
void Worker::wakeUp(GoalPtr goal)
|
2004-05-11 20:05:44 +02:00
|
|
|
{
|
2004-06-25 17:36:09 +02:00
|
|
|
goal->trace("woken up");
|
2004-06-18 20:09:32 +02:00
|
|
|
awake.insert(goal);
|
|
|
|
}
|
2004-05-11 20:05:44 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2009-03-31 23:14:07 +02:00
|
|
|
unsigned Worker::getNrLocalBuilds()
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2009-03-31 23:14:07 +02:00
|
|
|
return nrLocalBuilds;
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
void Worker::childStarted(GoalPtr goal,
|
2010-02-03 22:38:41 +01:00
|
|
|
pid_t pid, const set<int> & fds, bool inBuildSlot,
|
|
|
|
bool monitorForSilence)
|
2003-07-20 21:29:38 +02:00
|
|
|
{
|
2004-06-19 23:45:04 +02:00
|
|
|
Child child;
|
|
|
|
child.goal = goal;
|
2005-10-17 17:33:24 +02:00
|
|
|
child.fds = fds;
|
2006-12-08 16:44:00 +01:00
|
|
|
child.lastOutput = time(0);
|
2004-06-19 23:45:04 +02:00
|
|
|
child.inBuildSlot = inBuildSlot;
|
2010-02-03 22:38:41 +01:00
|
|
|
child.monitorForSilence = monitorForSilence;
|
2004-06-19 23:45:04 +02:00
|
|
|
children[pid] = child;
|
2009-03-31 23:14:07 +02:00
|
|
|
if (inBuildSlot) nrLocalBuilds++;
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2004-07-01 18:24:35 +02:00
|
|
|
void Worker::childTerminated(pid_t pid, bool wakeSleepers)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2006-12-08 19:41:48 +01:00
|
|
|
assert(pid != -1); /* common mistake */
|
|
|
|
|
2004-06-19 23:45:04 +02:00
|
|
|
Children::iterator i = children.find(pid);
|
|
|
|
assert(i != children.end());
|
|
|
|
|
|
|
|
if (i->second.inBuildSlot) {
|
2009-03-31 23:14:07 +02:00
|
|
|
assert(nrLocalBuilds > 0);
|
|
|
|
nrLocalBuilds--;
|
2004-06-19 23:45:04 +02:00
|
|
|
}
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
children.erase(pid);
|
|
|
|
|
2004-07-01 18:24:35 +02:00
|
|
|
if (wakeSleepers) {
|
|
|
|
|
|
|
|
/* Wake up goals waiting for a build slot. */
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (WeakGoals::iterator, i, wantingToBuild) {
|
2004-07-01 18:24:35 +02:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
wantingToBuild.clear();
|
2004-06-25 17:36:09 +02:00
|
|
|
}
|
2003-10-16 18:29:57 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 18:26:21 +01:00
|
|
|
void Worker::waitForBuildSlot(GoalPtr goal)
|
2003-10-16 18:29:57 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
debug("wait for build slot");
|
2009-03-31 23:14:07 +02:00
|
|
|
if (getNrLocalBuilds() < maxBuildJobs)
|
2004-06-18 20:09:32 +02:00
|
|
|
wakeUp(goal); /* we can do it right away */
|
|
|
|
else
|
|
|
|
wantingToBuild.insert(goal);
|
|
|
|
}
|
2004-02-13 11:45:09 +01:00
|
|
|
|
2003-10-16 18:29:57 +02:00
|
|
|
|
2007-08-28 13:36:17 +02:00
|
|
|
void Worker::waitForAnyGoal(GoalPtr goal)
|
|
|
|
{
|
|
|
|
debug("wait for any goal");
|
|
|
|
waitingForAnyGoal.insert(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
void Worker::waitForAWhile(GoalPtr goal)
|
|
|
|
{
|
|
|
|
debug("wait for a while");
|
|
|
|
waitingForAWhile.insert(goal);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-23 12:19:27 +01:00
|
|
|
void Worker::run(const Goals & _topGoals)
|
2004-06-18 20:09:32 +02:00
|
|
|
{
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Goals::iterator, i, _topGoals) topGoals.insert(*i);
|
2004-06-25 17:36:09 +02:00
|
|
|
|
2004-06-22 16:48:59 +02:00
|
|
|
startNest(nest, lvlDebug, format("entered goal loop"));
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
|
2004-01-15 21:23:55 +01:00
|
|
|
checkInterrupt();
|
2004-06-18 20:09:32 +02:00
|
|
|
|
|
|
|
/* Call every wake goal. */
|
2005-02-23 12:19:27 +01:00
|
|
|
while (!awake.empty() && !topGoals.empty()) {
|
2004-06-25 17:36:09 +02:00
|
|
|
WeakGoals awake2(awake);
|
2004-06-18 20:09:32 +02:00
|
|
|
awake.clear();
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (WeakGoals::iterator, i, awake2) {
|
2004-06-18 20:09:32 +02:00
|
|
|
checkInterrupt();
|
2004-06-25 17:36:09 +02:00
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) goal->work();
|
2005-02-23 12:19:27 +01:00
|
|
|
if (topGoals.empty()) break;
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2003-10-16 18:29:57 +02:00
|
|
|
}
|
|
|
|
|
2004-06-25 17:36:09 +02:00
|
|
|
if (topGoals.empty()) break;
|
2003-10-16 18:29:57 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* Wait for input. */
|
2009-03-23 02:05:54 +01:00
|
|
|
if (!children.empty() || !waitingForAWhile.empty())
|
2007-08-12 02:29:28 +02:00
|
|
|
waitForInput();
|
2009-03-29 20:06:00 +02:00
|
|
|
else {
|
2009-03-31 17:50:03 +02:00
|
|
|
if (awake.empty() && maxBuildJobs == 0) throw Error(
|
2009-03-29 20:06:00 +02:00
|
|
|
"unable to start any build; either increase `--max-jobs' "
|
|
|
|
"or enable distributed builds");
|
2007-08-12 02:29:28 +02:00
|
|
|
assert(!awake.empty());
|
2009-03-29 20:06:00 +02:00
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2003-10-16 18:29:57 +02:00
|
|
|
|
2004-06-25 17:36:09 +02: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. */
|
|
|
|
assert(!keepGoing || awake.empty());
|
|
|
|
assert(!keepGoing || wantingToBuild.empty());
|
|
|
|
assert(!keepGoing || children.empty());
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
void Worker::waitForInput()
|
2003-07-20 21:29:38 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
printMsg(lvlVomit, "waiting for children");
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2005-10-17 17:33:24 +02: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 20:09:32 +02:00
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
bool useTimeout = false;
|
|
|
|
struct timeval timeout;
|
|
|
|
timeout.tv_usec = 0;
|
|
|
|
time_t before = time(0);
|
|
|
|
|
2006-12-08 16:44:00 +01:00
|
|
|
/* If we're monitoring for silence on stdout/stderr, sleep until
|
|
|
|
the first deadline for any child. */
|
|
|
|
if (maxSilentTime != 0) {
|
|
|
|
time_t oldest = 0;
|
2009-03-17 12:42:55 +01:00
|
|
|
foreach (Children::iterator, i, children) {
|
2010-02-03 22:38:41 +01:00
|
|
|
if (i->second.monitorForSilence) {
|
|
|
|
oldest = oldest == 0 || i->second.lastOutput < oldest
|
|
|
|
? i->second.lastOutput : oldest;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (oldest) {
|
|
|
|
useTimeout = true;
|
|
|
|
timeout.tv_sec = std::max((time_t) 0, oldest + maxSilentTime - before);
|
|
|
|
printMsg(lvlVomit, format("sleeping %1% seconds") % timeout.tv_sec);
|
2006-12-08 16:44:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
/* If we are polling goals that are waiting for a lock, then wake
|
|
|
|
up after a few seconds at most. */
|
2009-03-30 13:34:03 +02:00
|
|
|
int wakeUpInterval = queryIntSetting("build-poll-interval", 5);
|
2009-03-23 02:05:54 +01:00
|
|
|
|
|
|
|
if (!waitingForAWhile.empty()) {
|
|
|
|
useTimeout = true;
|
2009-03-24 15:07:37 +01:00
|
|
|
if (lastWokenUp == 0)
|
2009-03-30 13:34:03 +02:00
|
|
|
printMsg(lvlError, "waiting for locks or build slots...");
|
2009-03-23 02:05:54 +01:00
|
|
|
if (lastWokenUp == 0 || lastWokenUp > before) lastWokenUp = before;
|
|
|
|
timeout.tv_sec = std::max((time_t) 0, lastWokenUp + wakeUpInterval - before);
|
|
|
|
} else lastWokenUp = 0;
|
|
|
|
|
2004-06-18 20:09:32 +02: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 12:42:55 +01:00
|
|
|
foreach (Children::iterator, i, children) {
|
|
|
|
foreach (set<int>::iterator, j, i->second.fds) {
|
2005-10-17 17:33:24 +02:00
|
|
|
FD_SET(*j, &fds);
|
|
|
|
if (*j >= fdMax) fdMax = *j + 1;
|
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
if (select(fdMax, &fds, 0, 0, useTimeout ? &timeout : 0) == -1) {
|
2004-06-18 20:09:32 +02:00
|
|
|
if (errno == EINTR) return;
|
|
|
|
throw SysError("waiting for input");
|
|
|
|
}
|
2003-07-20 21:29:38 +02:00
|
|
|
|
2009-03-23 02:05:54 +01:00
|
|
|
time_t after = time(0);
|
2006-12-08 16:44:00 +01:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
/* Process all available file descriptors. */
|
2006-12-08 19:41:48 +01: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 12:42:55 +01:00
|
|
|
foreach (Children::iterator, i, children) pids.insert(i->first);
|
2006-12-08 19:41:48 +01:00
|
|
|
|
2009-03-17 12:42:55 +01:00
|
|
|
foreach (set<pid_t>::iterator, i, pids) {
|
2004-06-18 20:09:32 +02:00
|
|
|
checkInterrupt();
|
2006-12-08 19:41:48 +01:00
|
|
|
Children::iterator j = children.find(*i);
|
|
|
|
if (j == children.end()) continue; // child destroyed
|
|
|
|
GoalPtr goal = j->second.goal.lock();
|
2004-06-25 17:36:09 +02:00
|
|
|
assert(goal);
|
2006-12-08 19:41:48 +01:00
|
|
|
|
|
|
|
set<int> fds2(j->second.fds);
|
2009-03-17 12:42:55 +01:00
|
|
|
foreach (set<int>::iterator, k, fds2) {
|
2006-12-08 19:41:48 +01:00
|
|
|
if (FD_ISSET(*k, &fds)) {
|
2005-10-17 17:33:24 +02:00
|
|
|
unsigned char buffer[4096];
|
2006-12-08 19:41:48 +01:00
|
|
|
ssize_t rd = read(*k, buffer, sizeof(buffer));
|
2005-10-17 17:33:24 +02: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 19:41:48 +01:00
|
|
|
goal->handleEOF(*k);
|
|
|
|
j->second.fds.erase(*k);
|
2005-10-17 17:33:24 +02:00
|
|
|
} else {
|
|
|
|
printMsg(lvlVomit, format("%1%: read %2% bytes")
|
|
|
|
% goal->getName() % rd);
|
|
|
|
string data((char *) buffer, rd);
|
2006-12-08 19:41:48 +01:00
|
|
|
goal->handleChildOutput(*k, data);
|
2009-03-23 02:05:54 +01:00
|
|
|
j->second.lastOutput = after;
|
2005-10-17 17:33:24 +02:00
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
|
|
|
}
|
2006-12-08 16:44:00 +01:00
|
|
|
|
|
|
|
if (maxSilentTime != 0 &&
|
2010-02-03 22:38:41 +01:00
|
|
|
j->second.monitorForSilence &&
|
2009-03-23 02:05:54 +01:00
|
|
|
after - j->second.lastOutput >= (time_t) maxSilentTime)
|
2006-12-08 18:26:21 +01:00
|
|
|
{
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("%1% timed out after %2% seconds of silence")
|
2006-12-08 16:44:00 +01:00
|
|
|
% goal->getName() % maxSilentTime);
|
2006-12-08 18:26:21 +01:00
|
|
|
goal->cancel();
|
|
|
|
}
|
2004-06-18 20:09:32 +02:00
|
|
|
}
|
2009-03-23 02:05:54 +01:00
|
|
|
|
2009-03-25 00:40:24 +01:00
|
|
|
if (!waitingForAWhile.empty() && lastWokenUp + wakeUpInterval <= after) {
|
2009-03-23 02:05:54 +01:00
|
|
|
lastWokenUp = after;
|
|
|
|
foreach (WeakGoals::iterator, i, waitingForAWhile) {
|
|
|
|
GoalPtr goal = i->lock();
|
|
|
|
if (goal) wakeUp(goal);
|
|
|
|
}
|
|
|
|
waitingForAWhile.clear();
|
|
|
|
}
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-10-17 17:33:24 +02:00
|
|
|
|
2004-06-18 20:09:32 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
2006-11-30 19:02:04 +01:00
|
|
|
void LocalStore::buildDerivations(const PathSet & drvPaths)
|
2003-07-29 12:43:12 +02:00
|
|
|
{
|
2005-01-19 16:02:02 +01:00
|
|
|
startNest(nest, lvlDebug,
|
|
|
|
format("building %1%") % showPaths(drvPaths));
|
2003-08-25 16:56:11 +02:00
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
Worker worker(*this);
|
2005-01-19 16:02:02 +01:00
|
|
|
|
|
|
|
Goals goals;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (PathSet::const_iterator, i, drvPaths)
|
2005-01-19 16:02:02 +01:00
|
|
|
goals.insert(worker.makeDerivationGoal(*i));
|
2005-02-23 12:19:27 +01:00
|
|
|
|
|
|
|
worker.run(goals);
|
|
|
|
|
|
|
|
PathSet failed;
|
2009-04-21 13:52:16 +02:00
|
|
|
foreach (Goals::iterator, i, goals)
|
2005-02-23 12:19:27 +01:00
|
|
|
if ((*i)->getExitCode() == Goal::ecFailed) {
|
|
|
|
DerivationGoal * i2 = dynamic_cast<DerivationGoal *>(i->get());
|
|
|
|
assert(i2);
|
|
|
|
failed.insert(i2->getDrvPath());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!failed.empty())
|
|
|
|
throw Error(format("build of %1% failed") % showPaths(failed));
|
2003-07-29 12:43:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-11-30 19:02:04 +01:00
|
|
|
void LocalStore::ensurePath(const Path & path)
|
2003-07-20 21:29:38 +02:00
|
|
|
{
|
2004-06-18 20:09:32 +02:00
|
|
|
/* If the path is already valid, we're done. */
|
2008-06-09 15:52:45 +02:00
|
|
|
if (isValidPath(path)) return;
|
2004-06-18 20:09:32 +02:00
|
|
|
|
2008-06-09 15:52:45 +02:00
|
|
|
Worker worker(*this);
|
2005-02-23 12:19:27 +01:00
|
|
|
GoalPtr goal = worker.makeSubstitutionGoal(path);
|
|
|
|
Goals goals = singleton<Goals>(goal);
|
|
|
|
|
|
|
|
worker.run(goals);
|
|
|
|
|
|
|
|
if (goal->getExitCode() != Goal::ecSuccess)
|
2004-06-25 12:21:44 +02:00
|
|
|
throw Error(format("path `%1%' does not exist and cannot be created") % path);
|
2003-07-20 21:29:38 +02:00
|
|
|
}
|
2006-09-04 23:06:23 +02:00
|
|
|
|
|
|
|
|
|
|
|
}
|