2007-03-30 13:24:35 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "shared.hh"
|
|
|
|
#include "globals.hh"
|
2006-11-30 17:43:04 +00:00
|
|
|
#include "store-api.hh"
|
2006-09-04 21:06:23 +00:00
|
|
|
#include "util.hh"
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
#include <iostream>
|
2003-07-24 08:53:43 +00:00
|
|
|
#include <cctype>
|
2007-05-01 15:16:17 +00:00
|
|
|
#include <exception>
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2004-03-27 17:58:04 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
#include <aterm2.h>
|
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
namespace nix {
|
2003-07-04 15:42:03 +00:00
|
|
|
|
|
|
|
|
2004-05-11 18:05:44 +00:00
|
|
|
volatile sig_atomic_t blockInt = 0;
|
|
|
|
|
|
|
|
|
2006-03-10 22:27:26 +00:00
|
|
|
static void sigintHandler(int signo)
|
2004-01-15 20:23:55 +00:00
|
|
|
{
|
2004-05-11 18:05:44 +00:00
|
|
|
if (!blockInt) {
|
|
|
|
_isInterrupted = 1;
|
|
|
|
blockInt = 1;
|
|
|
|
}
|
2004-01-15 20:23:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-02-01 12:36:25 +00:00
|
|
|
Path makeRootName(const Path & gcRoot, int & counter)
|
|
|
|
{
|
|
|
|
counter++;
|
|
|
|
if (counter == 1)
|
|
|
|
return gcRoot;
|
|
|
|
else
|
|
|
|
return (format("%1%-%2%") % gcRoot % counter).str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void printGCWarning()
|
|
|
|
{
|
2006-08-29 15:40:49 +00:00
|
|
|
static bool haveWarned = false;
|
|
|
|
warnOnce(haveWarned,
|
2006-12-05 00:34:42 +00:00
|
|
|
"you did not specify `--add-root'; "
|
2006-08-29 15:40:49 +00:00
|
|
|
"the result might be removed by the garbage collector");
|
2005-02-01 12:36:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-10 22:27:26 +00:00
|
|
|
static void setLogType(string lt)
|
2004-03-22 20:53:49 +00:00
|
|
|
{
|
|
|
|
if (lt == "pretty") logType = ltPretty;
|
|
|
|
else if (lt == "escapes") logType = ltEscapes;
|
|
|
|
else if (lt == "flat") logType = ltFlat;
|
|
|
|
else throw UsageError("unknown log type");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-08 15:44:00 +00:00
|
|
|
static unsigned int getIntArg(const string & opt,
|
|
|
|
Strings::iterator & i, const Strings::iterator & end)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i == end) throw UsageError(format("`%1%' requires an argument") % opt);
|
|
|
|
int n;
|
|
|
|
if (!string2Int(*i, n) || n < 0)
|
|
|
|
throw UsageError(format("`%1%' requires a non-negative integer") % opt);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-01-31 21:20:59 +00:00
|
|
|
struct RemoveTempRoots
|
|
|
|
{
|
|
|
|
~RemoveTempRoots()
|
|
|
|
{
|
|
|
|
removeTempRoots();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2005-01-19 16:39:47 +00:00
|
|
|
void initDerivationsHelpers();
|
2004-10-29 11:22:49 +00:00
|
|
|
|
|
|
|
|
2007-05-01 15:16:17 +00:00
|
|
|
static void closeStore()
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
throw;
|
|
|
|
} catch (std::exception & e) {
|
|
|
|
printMsg(lvlError,
|
|
|
|
format("FATAL: unexpected exception (closing store and aborting): %1%") % e.what());
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
store.reset((StoreAPI *) 0);
|
|
|
|
} catch (...) {
|
|
|
|
ignoreException();
|
|
|
|
}
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
/* Initialize and reorder arguments, then call the actual argument
|
|
|
|
processor. */
|
|
|
|
static void initAndRun(int argc, char * * argv)
|
|
|
|
{
|
|
|
|
/* Setup Nix paths. */
|
2005-01-28 13:19:16 +00:00
|
|
|
nixStore = canonPath(getEnv("NIX_STORE_DIR", getEnv("NIX_STORE", NIX_STORE_DIR)));
|
2005-01-14 13:51:38 +00:00
|
|
|
nixDataDir = canonPath(getEnv("NIX_DATA_DIR", NIX_DATA_DIR));
|
|
|
|
nixLogDir = canonPath(getEnv("NIX_LOG_DIR", NIX_LOG_DIR));
|
|
|
|
nixStateDir = canonPath(getEnv("NIX_STATE_DIR", NIX_STATE_DIR));
|
2004-05-04 12:15:30 +00:00
|
|
|
nixDBPath = getEnv("NIX_DB_DIR", nixStateDir + "/db");
|
2005-02-01 22:07:48 +00:00
|
|
|
nixConfDir = canonPath(getEnv("NIX_CONF_DIR", NIX_CONF_DIR));
|
2006-07-20 13:21:37 +00:00
|
|
|
nixLibexecDir = canonPath(getEnv("NIX_LIBEXEC_DIR", NIX_LIBEXEC_DIR));
|
2006-12-04 13:09:16 +00:00
|
|
|
nixBinDir = canonPath(getEnv("NIX_BIN_DIR", NIX_BIN_DIR));
|
2004-03-27 17:58:04 +00:00
|
|
|
|
2007-08-12 00:29:28 +00:00
|
|
|
string subs = getEnv("NIX_SUBSTITUTERS", "default");
|
|
|
|
if (subs == "default")
|
|
|
|
substituters.push_back(nixLibexecDir + "/nix/download-using-manifests.pl");
|
|
|
|
else
|
|
|
|
substituters = tokenizeString(subs, ":");
|
|
|
|
|
2006-08-10 20:19:13 +00:00
|
|
|
/* Get some settings from the configuration file. */
|
2006-07-06 15:30:37 +00:00
|
|
|
thisSystem = querySetting("system", SYSTEM);
|
2006-12-08 15:44:00 +00:00
|
|
|
maxBuildJobs = queryIntSetting("build-max-jobs", 1);
|
|
|
|
maxSilentTime = queryIntSetting("build-max-silent-time", 0);
|
2006-07-06 15:30:37 +00:00
|
|
|
|
2004-01-15 20:23:55 +00:00
|
|
|
/* Catch SIGINT. */
|
|
|
|
struct sigaction act, oact;
|
|
|
|
act.sa_handler = sigintHandler;
|
|
|
|
sigfillset(&act.sa_mask);
|
|
|
|
act.sa_flags = 0;
|
|
|
|
if (sigaction(SIGINT, &act, &oact))
|
|
|
|
throw SysError("installing handler for SIGINT");
|
2005-11-04 15:34:09 +00:00
|
|
|
if (sigaction(SIGTERM, &act, &oact))
|
|
|
|
throw SysError("installing handler for SIGTERM");
|
|
|
|
if (sigaction(SIGHUP, &act, &oact))
|
|
|
|
throw SysError("installing handler for SIGHUP");
|
2004-01-15 20:23:55 +00:00
|
|
|
|
2004-05-13 19:14:49 +00:00
|
|
|
/* Ignore SIGPIPE. */
|
|
|
|
act.sa_handler = SIG_IGN;
|
|
|
|
act.sa_flags = 0;
|
|
|
|
if (sigaction(SIGPIPE, &act, &oact))
|
|
|
|
throw SysError("ignoring SIGPIPE");
|
|
|
|
|
2004-09-09 14:16:02 +00:00
|
|
|
/* There is no privacy in the Nix system ;-) At least not for
|
|
|
|
now. In particular, store objects should be readable by
|
|
|
|
everybody. This prevents nasty surprises when using a shared
|
|
|
|
store (with the setuid() hack). */
|
|
|
|
umask(0022);
|
|
|
|
|
2004-03-22 20:53:49 +00:00
|
|
|
/* Process the NIX_LOG_TYPE environment variable. */
|
2004-05-04 12:15:30 +00:00
|
|
|
string lt = getEnv("NIX_LOG_TYPE");
|
|
|
|
if (lt != "") setLogType(lt);
|
2004-03-22 20:53:49 +00:00
|
|
|
|
2004-10-29 11:22:49 +00:00
|
|
|
/* ATerm stuff. !!! find a better place to put this */
|
2005-01-19 16:39:47 +00:00
|
|
|
initDerivationsHelpers();
|
2004-10-29 11:22:49 +00:00
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
/* Put the arguments in a vector. */
|
2003-12-01 15:55:05 +00:00
|
|
|
Strings args, remaining;
|
2003-07-04 15:42:03 +00:00
|
|
|
while (argc--) args.push_back(*argv++);
|
|
|
|
args.erase(args.begin());
|
|
|
|
|
2003-11-03 18:21:53 +00:00
|
|
|
/* Expand compound dash options (i.e., `-qlf' -> `-q -l -f'), and
|
|
|
|
ignore options for the ATerm library. */
|
2003-12-01 15:55:05 +00:00
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
|
|
|
|
string arg = *i;
|
|
|
|
if (string(arg, 0, 4) == "-at-") ;
|
2003-11-03 18:21:53 +00:00
|
|
|
else if (arg.length() > 2 && arg[0] == '-' && arg[1] != '-') {
|
2003-12-01 15:55:05 +00:00
|
|
|
for (unsigned int j = 1; j < arg.length(); j++)
|
|
|
|
if (isalpha(arg[j]))
|
|
|
|
remaining.push_back((string) "-" + arg[j]);
|
2003-07-24 08:53:43 +00:00
|
|
|
else {
|
2003-12-01 15:55:05 +00:00
|
|
|
remaining.push_back(string(arg, j));
|
2003-07-24 08:53:43 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-12-01 15:55:05 +00:00
|
|
|
} else remaining.push_back(arg);
|
2003-07-04 15:42:03 +00:00
|
|
|
}
|
2003-12-01 15:55:05 +00:00
|
|
|
args = remaining;
|
|
|
|
remaining.clear();
|
2003-07-04 15:42:03 +00:00
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
/* Process default options. */
|
|
|
|
for (Strings::iterator i = args.begin(); i != args.end(); ++i) {
|
|
|
|
string arg = *i;
|
|
|
|
if (arg == "--verbose" || arg == "-v")
|
|
|
|
verbosity = (Verbosity) ((int) verbosity + 1);
|
2004-03-22 20:53:49 +00:00
|
|
|
else if (arg == "--log-type") {
|
|
|
|
++i;
|
|
|
|
if (i == args.end()) throw UsageError("`--log-type' requires an argument");
|
|
|
|
setLogType(*i);
|
2004-05-12 14:20:32 +00:00
|
|
|
}
|
|
|
|
else if (arg == "--build-output" || arg == "-B")
|
2004-08-18 12:19:06 +00:00
|
|
|
; /* !!! obsolete - remove eventually */
|
|
|
|
else if (arg == "--no-build-output" || arg == "-Q")
|
|
|
|
buildVerbosity = lvlVomit;
|
2003-12-01 15:55:05 +00:00
|
|
|
else if (arg == "--help") {
|
|
|
|
printHelp();
|
|
|
|
return;
|
2004-05-12 14:20:32 +00:00
|
|
|
}
|
|
|
|
else if (arg == "--version") {
|
2006-09-04 21:06:23 +00:00
|
|
|
std::cout << format("%1% (Nix) %2%") % programId % NIX_VERSION << std::endl;
|
2004-02-02 10:51:54 +00:00
|
|
|
return;
|
2004-05-12 14:20:32 +00:00
|
|
|
}
|
|
|
|
else if (arg == "--keep-failed" || arg == "-K")
|
2003-12-01 15:55:05 +00:00
|
|
|
keepFailed = true;
|
2004-06-25 15:36:09 +00:00
|
|
|
else if (arg == "--keep-going" || arg == "-k")
|
|
|
|
keepGoing = true;
|
2004-06-28 10:42:57 +00:00
|
|
|
else if (arg == "--fallback")
|
|
|
|
tryFallback = true;
|
2006-12-08 15:44:00 +00:00
|
|
|
else if (arg == "--max-jobs" || arg == "-j")
|
|
|
|
maxBuildJobs = getIntArg(arg, i, args.end());
|
2004-10-25 14:38:23 +00:00
|
|
|
else if (arg == "--readonly-mode")
|
|
|
|
readOnlyMode = true;
|
2006-12-08 15:44:00 +00:00
|
|
|
else if (arg == "--max-silent-time")
|
|
|
|
maxSilentTime = getIntArg(arg, i, args.end());
|
2003-12-01 15:55:05 +00:00
|
|
|
else remaining.push_back(arg);
|
|
|
|
}
|
|
|
|
|
2005-01-31 21:20:59 +00:00
|
|
|
/* Automatically clean up the temporary roots file when we
|
|
|
|
exit. */
|
2005-02-01 12:36:25 +00:00
|
|
|
RemoveTempRoots removeTempRoots; /* unused variable - don't remove */
|
2005-01-31 21:20:59 +00:00
|
|
|
|
2007-05-01 15:16:17 +00:00
|
|
|
/* Make sure that the database gets closed properly, even if
|
|
|
|
terminate() is called (which happens sometimes due to bugs in
|
|
|
|
destructor/exceptions interaction, but that needn't preclude a
|
|
|
|
clean shutdown of the database). */
|
|
|
|
std::set_terminate(closeStore);
|
|
|
|
|
2003-12-01 15:55:05 +00:00
|
|
|
run(remaining);
|
2006-03-01 16:36:35 +00:00
|
|
|
|
2006-11-30 17:43:04 +00:00
|
|
|
/* Close the Nix database. */
|
|
|
|
store.reset((StoreAPI *) 0);
|
2003-07-04 15:42:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-12-03 20:41:22 +00:00
|
|
|
bool setuidMode = false;
|
|
|
|
|
|
|
|
|
2006-12-02 15:45:51 +00:00
|
|
|
static void setuidInit()
|
|
|
|
{
|
|
|
|
/* Don't do anything if this is not a setuid binary. */
|
|
|
|
if (getuid() == geteuid() && getgid() == getegid()) return;
|
|
|
|
|
|
|
|
uid_t nixUid = geteuid();
|
|
|
|
gid_t nixGid = getegid();
|
|
|
|
|
2006-12-06 17:29:10 +00:00
|
|
|
setuidCleanup();
|
2006-12-02 15:45:51 +00:00
|
|
|
|
|
|
|
/* Don't trust the current directory. */
|
|
|
|
if (chdir("/") == -1) abort();
|
|
|
|
|
|
|
|
/* Set the real (and preferably also the save) uid/gid to the
|
|
|
|
effective uid/gid. This matters mostly when we're not using
|
|
|
|
build-users (bad!), since some builders (like Perl) complain
|
|
|
|
when real != effective.
|
|
|
|
|
|
|
|
On systems where setresuid is unavailable, we can't drop the
|
|
|
|
saved uid/gid. This means that we could go back to the
|
|
|
|
original real uid (i.e., the uid of the caller). That's not
|
|
|
|
really a problem, except maybe when we execute a builder and
|
|
|
|
we're not using build-users. In that case, the builder may be
|
|
|
|
able to switch to the uid of the caller and possibly do bad
|
|
|
|
stuff. But note that when not using build-users, the builder
|
|
|
|
could also modify the Nix executables (say, replace them by a
|
|
|
|
Trojan horse), so the problem is already there. */
|
|
|
|
|
2006-12-03 16:25:19 +00:00
|
|
|
#if HAVE_SETRESUID
|
2006-12-03 14:32:22 +00:00
|
|
|
if (setresuid(nixUid, nixUid, nixUid)) abort();
|
|
|
|
if (setresgid(nixGid, nixGid, nixGid)) abort();
|
|
|
|
#elif HAVE_SETREUID
|
2006-12-02 15:45:51 +00:00
|
|
|
/* Note: doesn't set saved uid/gid! */
|
2006-12-03 14:32:22 +00:00
|
|
|
fprintf(stderr, "warning: cannot set saved uid\n");
|
|
|
|
if (setreuid(nixUid, nixUid)) abort();
|
|
|
|
if (setregid(nixGid, nixGid)) abort();
|
|
|
|
#else
|
|
|
|
/* Note: doesn't set real and saved uid/gid! */
|
|
|
|
fprintf(stderr, "warning: cannot set real and saved uids\n");
|
|
|
|
if (setuid(nixUid)) abort();
|
|
|
|
if (setgid(nixGid)) abort();
|
2006-12-02 15:45:51 +00:00
|
|
|
#endif
|
2006-12-03 15:32:38 +00:00
|
|
|
|
|
|
|
setuidMode = true;
|
2006-12-02 15:45:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-09-04 21:06:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-10-16 16:29:57 +00:00
|
|
|
static char buf[1024];
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
2006-09-04 21:06:23 +00:00
|
|
|
using namespace nix;
|
2006-12-02 15:45:51 +00:00
|
|
|
|
|
|
|
/* If we're setuid, then we need to take some security precautions
|
|
|
|
right away. */
|
|
|
|
if (argc == 0) abort();
|
|
|
|
setuidInit();
|
* Setuid support for sharing a Nix installation between multiple
users.
If the configure flag `--enable-setuid' is used, the Nix programs
nix-env, nix-store, etc. are installed with the setuid bit turned on
so that they are executed as the user and group specified by
`--with-nix-user=USER' and `--with-nix-group=GROUP', respectively
(with defaults `nix' and `nix').
The setuid programs drop all special privileges if they are executed
by a user who is not a member of the Nix group.
The setuid feature is a quick hack to enable sharing of a Nix
installation between users who trust each other. It is not
generally secure, since any user in the Nix group can modify (by
building an appropriate derivation) any object in the store, and for
instance inject trojans into binaries used by other users.
The setuid programs are owned by root, not the Nix user. This is
because on Unix normal users cannot change the real uid, only the
effective uid. Many programs don't work properly when the real uid
differs from the effective uid. For instance, Perl will turn on
taint mode. However, the setuid programs drop all root privileges
immediately, changing all uids and gids to the Nix user and group.
2004-08-20 14:49:05 +00:00
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
/* ATerm setup. */
|
|
|
|
ATerm bottomOfStack;
|
|
|
|
ATinit(argc, argv, &bottomOfStack);
|
|
|
|
|
2003-10-16 11:55:37 +00:00
|
|
|
/* Turn on buffering for cerr. */
|
2003-12-22 16:40:46 +00:00
|
|
|
#if HAVE_PUBSETBUF
|
2006-09-04 21:06:23 +00:00
|
|
|
std::cerr.rdbuf()->pubsetbuf(buf, sizeof(buf));
|
2003-12-22 16:40:46 +00:00
|
|
|
#endif
|
2003-10-16 11:55:37 +00:00
|
|
|
|
2006-11-18 18:56:30 +00:00
|
|
|
std::ios::sync_with_stdio(false);
|
|
|
|
|
2003-07-04 15:42:03 +00:00
|
|
|
try {
|
2004-05-11 18:05:44 +00:00
|
|
|
try {
|
|
|
|
initAndRun(argc, argv);
|
|
|
|
} catch (...) {
|
|
|
|
/* Subtle: we have to make sure that any `interrupted'
|
|
|
|
condition is discharged before we reach printMsg()
|
|
|
|
below, since otherwise it will throw an (uncaught)
|
|
|
|
exception. */
|
|
|
|
blockInt = 1; /* ignore further SIGINTs */
|
|
|
|
_isInterrupted = 0;
|
|
|
|
throw;
|
|
|
|
}
|
2003-07-04 15:42:03 +00:00
|
|
|
} catch (UsageError & e) {
|
2003-11-09 10:35:45 +00:00
|
|
|
printMsg(lvlError,
|
2003-07-24 08:53:43 +00:00
|
|
|
format(
|
|
|
|
"error: %1%\n"
|
|
|
|
"Try `%2% --help' for more information.")
|
|
|
|
% e.what() % programId);
|
2003-07-04 15:42:03 +00:00
|
|
|
return 1;
|
2007-08-12 00:29:28 +00:00
|
|
|
} catch (BaseError & e) {
|
2003-11-09 10:35:45 +00:00
|
|
|
printMsg(lvlError, format("error: %1%") % e.msg());
|
2003-07-07 09:25:26 +00:00
|
|
|
return 1;
|
2006-09-04 21:06:23 +00:00
|
|
|
} catch (std::exception & e) {
|
2003-11-09 10:35:45 +00:00
|
|
|
printMsg(lvlError, format("error: %1%") % e.what());
|
2003-07-04 15:42:03 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-04 21:06:23 +00:00
|
|
|
|
|
|
|
|