2016-02-09 20:28:29 +00:00
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
#include "command.hh"
|
|
|
|
#include "common-args.hh"
|
|
|
|
#include "eval.hh"
|
|
|
|
#include "globals.hh"
|
|
|
|
#include "legacy.hh"
|
|
|
|
#include "shared.hh"
|
|
|
|
#include "store-api.hh"
|
2016-04-25 13:26:07 +00:00
|
|
|
#include "progress-bar.hh"
|
2019-06-17 07:57:22 +00:00
|
|
|
#include "download.hh"
|
2017-08-29 14:18:00 +00:00
|
|
|
#include "finally.hh"
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2019-06-17 07:57:22 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <ifaddrs.h>
|
|
|
|
#include <netdb.h>
|
2019-11-01 14:09:42 +00:00
|
|
|
#include <netinet/in.h>
|
2019-06-17 07:57:22 +00:00
|
|
|
|
2017-08-29 11:21:07 +00:00
|
|
|
extern std::string chrootHelperName;
|
|
|
|
|
|
|
|
void chrootHelper(int argc, char * * argv);
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
namespace nix {
|
|
|
|
|
2019-06-17 07:57:22 +00:00
|
|
|
/* Check if we have a non-loopback/link-local network interface. */
|
|
|
|
static bool haveInternet()
|
|
|
|
{
|
|
|
|
struct ifaddrs * addrs;
|
|
|
|
|
|
|
|
if (getifaddrs(&addrs))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Finally free([&]() { freeifaddrs(addrs); });
|
|
|
|
|
|
|
|
for (auto i = addrs; i; i = i->ifa_next) {
|
|
|
|
if (!i->ifa_addr) continue;
|
|
|
|
if (i->ifa_addr->sa_family == AF_INET) {
|
|
|
|
if (ntohl(((sockaddr_in *) i->ifa_addr)->sin_addr.s_addr) != INADDR_LOOPBACK) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (i->ifa_addr->sa_family == AF_INET6) {
|
2019-06-28 13:38:23 +00:00
|
|
|
if (!IN6_IS_ADDR_LOOPBACK(&((sockaddr_in6 *) i->ifa_addr)->sin6_addr) &&
|
|
|
|
!IN6_IS_ADDR_LINKLOCAL(&((sockaddr_in6 *) i->ifa_addr)->sin6_addr))
|
2019-06-17 07:57:22 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-31 15:14:47 +00:00
|
|
|
std::string programPath;
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
struct NixArgs : virtual MultiCommand, virtual MixCommonArgs
|
|
|
|
{
|
2019-05-15 15:33:56 +00:00
|
|
|
bool printBuildLogs = false;
|
2019-06-17 07:57:22 +00:00
|
|
|
bool useNet = true;
|
2019-05-15 15:33:56 +00:00
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
NixArgs() : MultiCommand(*RegisterCommand::commands), MixCommonArgs("nix")
|
|
|
|
{
|
2017-10-24 10:45:11 +00:00
|
|
|
mkFlag()
|
|
|
|
.longName("help")
|
|
|
|
.description("show usage information")
|
|
|
|
.handler([&]() { showHelpAndExit(); });
|
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("help-config")
|
|
|
|
.description("show configuration options")
|
|
|
|
.handler([&]() {
|
|
|
|
std::cout << "The following configuration options are available:\n\n";
|
|
|
|
Table2 tbl;
|
2018-03-27 16:41:31 +00:00
|
|
|
std::map<std::string, Config::SettingInfo> settings;
|
|
|
|
globalConfig.getSettings(settings);
|
|
|
|
for (const auto & s : settings)
|
|
|
|
tbl.emplace_back(s.first, s.second.description);
|
2017-10-24 10:45:11 +00:00
|
|
|
printTable(std::cout, tbl);
|
|
|
|
throw Exit();
|
|
|
|
});
|
|
|
|
|
2019-05-15 15:33:56 +00:00
|
|
|
mkFlag()
|
|
|
|
.longName("print-build-logs")
|
2019-06-15 14:45:00 +00:00
|
|
|
.shortName('L')
|
2019-05-15 15:33:56 +00:00
|
|
|
.description("print full build logs on stderr")
|
|
|
|
.set(&printBuildLogs, true);
|
|
|
|
|
2017-10-24 10:45:11 +00:00
|
|
|
mkFlag()
|
|
|
|
.longName("version")
|
|
|
|
.description("show version information")
|
|
|
|
.handler([&]() { printVersion(programName); });
|
2019-06-17 07:57:22 +00:00
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("no-net")
|
|
|
|
.description("disable substituters and consider all previously downloaded files up-to-date")
|
|
|
|
.handler([&]() { useNet = false; });
|
2019-12-02 14:56:37 +00:00
|
|
|
|
|
|
|
mkFlag()
|
|
|
|
.longName("refresh")
|
|
|
|
.description("consider all previously downloaded files out-of-date")
|
|
|
|
.handler([&]() { settings.tarballTtl = 0; });
|
2016-02-09 20:28:29 +00:00
|
|
|
}
|
2017-06-07 14:49:54 +00:00
|
|
|
|
|
|
|
void printFlags(std::ostream & out) override
|
|
|
|
{
|
|
|
|
Args::printFlags(out);
|
|
|
|
std::cout <<
|
|
|
|
"\n"
|
2017-07-30 11:27:57 +00:00
|
|
|
"In addition, most configuration settings can be overriden using '--<name> <value>'.\n"
|
|
|
|
"Boolean settings can be overriden using '--<name>' or '--no-<name>'. See 'nix\n"
|
|
|
|
"--help-config' for a list of configuration settings.\n";
|
2017-06-07 14:49:54 +00:00
|
|
|
}
|
2017-07-14 11:44:45 +00:00
|
|
|
|
2019-04-19 12:41:06 +00:00
|
|
|
void printHelp(const string & programName, std::ostream & out) override
|
2018-11-22 14:59:52 +00:00
|
|
|
{
|
|
|
|
MultiCommand::printHelp(programName, out);
|
2018-11-22 15:03:31 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
out << "\nFor full documentation, run 'man " << programName << "' or 'man " << programName << "-<COMMAND>'.\n";
|
|
|
|
#endif
|
|
|
|
|
2018-11-22 14:59:52 +00:00
|
|
|
std::cout << "\nNote: this program is EXPERIMENTAL and subject to change.\n";
|
|
|
|
}
|
|
|
|
|
2017-07-14 11:44:45 +00:00
|
|
|
void showHelpAndExit()
|
|
|
|
{
|
|
|
|
printHelp(programName, std::cout);
|
|
|
|
throw Exit();
|
|
|
|
}
|
2016-02-09 20:28:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void mainWrapped(int argc, char * * argv)
|
|
|
|
{
|
2017-08-29 11:21:07 +00:00
|
|
|
/* The chroot helper needs to be run before any threads have been
|
|
|
|
started. */
|
|
|
|
if (argc > 0 && argv[0] == chrootHelperName) {
|
|
|
|
chrootHelper(argc, argv);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
initNix();
|
|
|
|
initGC();
|
|
|
|
|
2018-01-31 15:14:47 +00:00
|
|
|
programPath = argv[0];
|
2019-12-05 18:11:09 +00:00
|
|
|
auto programName = std::string(baseNameOf(programPath));
|
2016-02-09 20:28:29 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
auto legacy = (*RegisterLegacyCommand::commands)[programName];
|
|
|
|
if (legacy) return legacy(argc, argv);
|
|
|
|
}
|
|
|
|
|
2019-06-17 07:12:03 +00:00
|
|
|
verbosity = lvlWarn;
|
2018-10-26 09:35:46 +00:00
|
|
|
settings.verboseBuild = false;
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
NixArgs args;
|
|
|
|
|
|
|
|
args.parseCmdline(argvToStrings(argc, argv));
|
2019-10-16 15:45:09 +00:00
|
|
|
|
|
|
|
settings.requireExperimentalFeature("nix-command");
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2018-02-08 16:26:18 +00:00
|
|
|
initPlugins();
|
|
|
|
|
2017-07-14 11:44:45 +00:00
|
|
|
if (!args.command) args.showHelpAndExit();
|
2016-02-09 20:28:29 +00:00
|
|
|
|
2017-08-29 14:18:00 +00:00
|
|
|
Finally f([]() { stopProgressBar(); });
|
|
|
|
|
2019-05-15 15:33:56 +00:00
|
|
|
startProgressBar(args.printBuildLogs);
|
2016-04-25 13:26:07 +00:00
|
|
|
|
2019-06-17 07:57:22 +00:00
|
|
|
if (args.useNet && !haveInternet()) {
|
|
|
|
warn("you don't have Internet access; disabling some network-dependent features");
|
|
|
|
args.useNet = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!args.useNet) {
|
|
|
|
// FIXME: should check for command line overrides only.
|
|
|
|
if (!settings.useSubstitutes.overriden)
|
|
|
|
settings.useSubstitutes = false;
|
|
|
|
if (!settings.tarballTtl.overriden)
|
|
|
|
settings.tarballTtl = std::numeric_limits<unsigned int>::max();
|
|
|
|
if (!downloadSettings.tries.overriden)
|
|
|
|
downloadSettings.tries = 0;
|
|
|
|
if (!downloadSettings.connectTimeout.overriden)
|
|
|
|
downloadSettings.connectTimeout = 1;
|
|
|
|
}
|
|
|
|
|
2016-02-09 20:28:29 +00:00
|
|
|
args.command->prepare();
|
|
|
|
args.command->run();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
|
|
|
return nix::handleExceptions(argv[0], [&]() {
|
|
|
|
nix::mainWrapped(argc, argv);
|
|
|
|
});
|
|
|
|
}
|