|
| 1 | +#include "eval.hh" |
| 2 | +#include "command.hh" |
| 3 | +#include "common-args.hh" |
| 4 | +#include "shared.hh" |
| 5 | +#include "store-api.hh" |
| 6 | +#include "derivations.hh" |
| 7 | +#include "affinity.hh" |
| 8 | +#include "progress-bar.hh" |
| 9 | + |
| 10 | +#include <regex> |
| 11 | + |
| 12 | +using namespace nix; |
| 13 | + |
| 14 | +struct Var |
| 15 | +{ |
| 16 | + bool exported; |
| 17 | + std::string value; // quoted string or array |
| 18 | +}; |
| 19 | + |
| 20 | +struct BuildEnvironment |
| 21 | +{ |
| 22 | + std::map<std::string, Var> env; |
| 23 | + std::string bashFunctions; |
| 24 | +}; |
| 25 | + |
| 26 | +BuildEnvironment readEnvironment(const Path & path) |
| 27 | +{ |
| 28 | + BuildEnvironment res; |
| 29 | + |
| 30 | + std::set<std::string> exported; |
| 31 | + |
| 32 | + debug("reading environment file '%s'", path); |
| 33 | + |
| 34 | + auto file = readFile(path); |
| 35 | + |
| 36 | + auto pos = file.cbegin(); |
| 37 | + |
| 38 | + static std::string varNameRegex = |
| 39 | + R"re((?:[a-zA-Z_][a-zA-Z0-9_]*))re"; |
| 40 | + |
| 41 | + static std::regex declareRegex( |
| 42 | + "^declare -x (" + varNameRegex + ")" + |
| 43 | + R"re((?:="((?:[^"\\]|\\.)*)")?\n)re"); |
| 44 | + |
| 45 | + static std::string simpleStringRegex = |
| 46 | + R"re((?:[a-zA-Z0-9_/:\.\-\+=]*))re"; |
| 47 | + |
| 48 | + static std::string quotedStringRegex = |
| 49 | + R"re((?:\$?'(?:[^'\\]|\\[abeEfnrtv\\'"?])*'))re"; |
| 50 | + |
| 51 | + static std::string arrayRegex = |
| 52 | + R"re((?:\(( *\[[^\]]+\]="(?:[^"\\]|\\.)*")*\)))re"; |
| 53 | + |
| 54 | + static std::regex varRegex( |
| 55 | + "^(" + varNameRegex + ")=(" + simpleStringRegex + "|" + quotedStringRegex + "|" + arrayRegex + ")\n"); |
| 56 | + |
| 57 | + static std::regex functionRegex( |
| 58 | + "^" + varNameRegex + " \\(\\) *\n"); |
| 59 | + |
| 60 | + while (pos != file.end()) { |
| 61 | + |
| 62 | + std::smatch match; |
| 63 | + |
| 64 | + if (std::regex_search(pos, file.cend(), match, declareRegex)) { |
| 65 | + pos = match[0].second; |
| 66 | + exported.insert(match[1]); |
| 67 | + } |
| 68 | + |
| 69 | + else if (std::regex_search(pos, file.cend(), match, varRegex)) { |
| 70 | + pos = match[0].second; |
| 71 | + res.env.insert({match[1], Var { (bool) exported.count(match[1]), match[2] }}); |
| 72 | + } |
| 73 | + |
| 74 | + else if (std::regex_search(pos, file.cend(), match, functionRegex)) { |
| 75 | + res.bashFunctions = std::string(pos, file.cend()); |
| 76 | + break; |
| 77 | + } |
| 78 | + |
| 79 | + else throw Error("shell environment '%s' has unexpected line '%s'", |
| 80 | + path, file.substr(pos - file.cbegin(), 60)); |
| 81 | + } |
| 82 | + |
| 83 | + return res; |
| 84 | +} |
| 85 | + |
| 86 | +/* Given an existing derivation, return the shell environment as |
| 87 | + initialised by stdenv's setup script. We do this by building a |
| 88 | + modified derivation with the same dependencies and nearly the same |
| 89 | + initial environment variables, that just writes the resulting |
| 90 | + environment to a file and exits. */ |
| 91 | +StorePath getDerivationEnvironment(ref<Store> store, Derivation drv) |
| 92 | +{ |
| 93 | + auto builder = baseNameOf(drv.builder); |
| 94 | + if (builder != "bash") |
| 95 | + throw Error("'nix shell' only works on derivations that use 'bash' as their builder"); |
| 96 | + |
| 97 | + drv.args = { |
| 98 | + "-c", |
| 99 | + "set -e; " |
| 100 | + "export IN_NIX_SHELL=impure; " |
| 101 | + "export dontAddDisableDepTrack=1; " |
| 102 | + "if [[ -n $stdenv ]]; then " |
| 103 | + " source $stdenv/setup; " |
| 104 | + "fi; " |
| 105 | + "export > $out; " |
| 106 | + "set >> $out "}; |
| 107 | + |
| 108 | + /* Remove derivation checks. */ |
| 109 | + drv.env.erase("allowedReferences"); |
| 110 | + drv.env.erase("allowedRequisites"); |
| 111 | + drv.env.erase("disallowedReferences"); |
| 112 | + drv.env.erase("disallowedRequisites"); |
| 113 | + |
| 114 | + // FIXME: handle structured attrs |
| 115 | + |
| 116 | + /* Rehash and write the derivation. FIXME: would be nice to use |
| 117 | + 'buildDerivation', but that's privileged. */ |
| 118 | + auto drvName = drv.env["name"] + "-env"; |
| 119 | + for (auto & output : drv.outputs) |
| 120 | + drv.env.erase(output.first); |
| 121 | + drv.env["out"] = ""; |
| 122 | + drv.env["outputs"] = "out"; |
| 123 | + Hash h = hashDerivationModulo(*store, drv, true); |
| 124 | + auto shellOutPath = store->makeOutputPath("out", h, drvName); |
| 125 | + drv.outputs.insert_or_assign("out", DerivationOutput(shellOutPath.clone(), "", "")); |
| 126 | + drv.env["out"] = store->printStorePath(shellOutPath); |
| 127 | + auto shellDrvPath2 = writeDerivation(store, drv, drvName); |
| 128 | + |
| 129 | + /* Build the derivation. */ |
| 130 | + store->buildPaths({shellDrvPath2}); |
| 131 | + |
| 132 | + assert(store->isValidPath(shellOutPath)); |
| 133 | + |
| 134 | + return shellOutPath; |
| 135 | +} |
| 136 | + |
| 137 | +struct Common : InstallableCommand, MixProfile |
| 138 | +{ |
| 139 | + std::set<string> ignoreVars{ |
| 140 | + "BASHOPTS", |
| 141 | + "EUID", |
| 142 | + "HOME", // FIXME: don't ignore in pure mode? |
| 143 | + "NIX_BUILD_TOP", |
| 144 | + "NIX_ENFORCE_PURITY", |
| 145 | + "NIX_LOG_FD", |
| 146 | + "PPID", |
| 147 | + "PWD", |
| 148 | + "SHELLOPTS", |
| 149 | + "SHLVL", |
| 150 | + "SSL_CERT_FILE", // FIXME: only want to ignore /no-cert-file.crt |
| 151 | + "TEMP", |
| 152 | + "TEMPDIR", |
| 153 | + "TERM", |
| 154 | + "TMP", |
| 155 | + "TMPDIR", |
| 156 | + "TZ", |
| 157 | + "UID", |
| 158 | + }; |
| 159 | + |
| 160 | + void makeRcScript(const BuildEnvironment & buildEnvironment, std::ostream & out) |
| 161 | + { |
| 162 | + out << "nix_saved_PATH=\"$PATH\"\n"; |
| 163 | + |
| 164 | + for (auto & i : buildEnvironment.env) { |
| 165 | + if (!ignoreVars.count(i.first) && !hasPrefix(i.first, "BASH_")) { |
| 166 | + out << fmt("%s=%s\n", i.first, i.second.value); |
| 167 | + if (i.second.exported) |
| 168 | + out << fmt("export %s\n", i.first); |
| 169 | + } |
| 170 | + } |
| 171 | + |
| 172 | + out << "PATH=\"$PATH:$nix_saved_PATH\"\n"; |
| 173 | + |
| 174 | + out << buildEnvironment.bashFunctions << "\n"; |
| 175 | + |
| 176 | + // FIXME: set outputs |
| 177 | + |
| 178 | + out << "export NIX_BUILD_TOP=\"$(mktemp -d --tmpdir nix-shell.XXXXXX)\"\n"; |
| 179 | + for (auto & i : {"TMP", "TMPDIR", "TEMP", "TEMPDIR"}) |
| 180 | + out << fmt("export %s=\"$NIX_BUILD_TOP\"\n", i); |
| 181 | + |
| 182 | + out << "eval \"$shellHook\"\n"; |
| 183 | + } |
| 184 | + |
| 185 | + StorePath getShellOutPath(ref<Store> store) |
| 186 | + { |
| 187 | + auto path = installable->getStorePath(); |
| 188 | + if (path && hasSuffix(path->to_string(), "-env")) |
| 189 | + return path->clone(); |
| 190 | + else { |
| 191 | + auto drvs = toDerivations(store, {installable}); |
| 192 | + |
| 193 | + if (drvs.size() != 1) |
| 194 | + throw Error("'%s' needs to evaluate to a single derivation, but it evaluated to %d derivations", |
| 195 | + installable->what(), drvs.size()); |
| 196 | + |
| 197 | + auto & drvPath = *drvs.begin(); |
| 198 | + |
| 199 | + return getDerivationEnvironment(store, store->derivationFromPath(drvPath)); |
| 200 | + } |
| 201 | + } |
| 202 | + |
| 203 | + BuildEnvironment getBuildEnvironment(ref<Store> store) |
| 204 | + { |
| 205 | + auto shellOutPath = getShellOutPath(store); |
| 206 | + |
| 207 | + updateProfile(shellOutPath); |
| 208 | + |
| 209 | + return readEnvironment(store->printStorePath(shellOutPath)); |
| 210 | + } |
| 211 | +}; |
| 212 | + |
| 213 | +struct CmdDevShell : Common, MixEnvironment |
| 214 | +{ |
| 215 | + std::vector<std::string> command; |
| 216 | + |
| 217 | + CmdDevShell() |
| 218 | + { |
| 219 | + mkFlag() |
| 220 | + .longName("command") |
| 221 | + .shortName('c') |
| 222 | + .description("command and arguments to be executed insted of an interactive shell") |
| 223 | + .labels({"command", "args"}) |
| 224 | + .arity(ArityAny) |
| 225 | + .handler([&](std::vector<std::string> ss) { |
| 226 | + if (ss.empty()) throw UsageError("--command requires at least one argument"); |
| 227 | + command = ss; |
| 228 | + }); |
| 229 | + } |
| 230 | + |
| 231 | + std::string description() override |
| 232 | + { |
| 233 | + return "run a bash shell that provides the build environment of a derivation"; |
| 234 | + } |
| 235 | + |
| 236 | + Examples examples() override |
| 237 | + { |
| 238 | + return { |
| 239 | + Example{ |
| 240 | + "To get the build environment of GNU hello:", |
| 241 | + "nix dev-shell nixpkgs.hello" |
| 242 | + }, |
| 243 | + Example{ |
| 244 | + "To store the build environment in a profile:", |
| 245 | + "nix dev-shell --profile /tmp/my-shell nixpkgs.hello" |
| 246 | + }, |
| 247 | + Example{ |
| 248 | + "To use a build environment previously recorded in a profile:", |
| 249 | + "nix dev-shell /tmp/my-shell" |
| 250 | + }, |
| 251 | + }; |
| 252 | + } |
| 253 | + |
| 254 | + void run(ref<Store> store) override |
| 255 | + { |
| 256 | + auto buildEnvironment = getBuildEnvironment(store); |
| 257 | + |
| 258 | + auto [rcFileFd, rcFilePath] = createTempFile("nix-shell"); |
| 259 | + |
| 260 | + std::ostringstream ss; |
| 261 | + makeRcScript(buildEnvironment, ss); |
| 262 | + |
| 263 | + ss << fmt("rm -f '%s'\n", rcFilePath); |
| 264 | + |
| 265 | + if (!command.empty()) { |
| 266 | + std::vector<std::string> args; |
| 267 | + for (auto s : command) |
| 268 | + args.push_back(shellEscape(s)); |
| 269 | + ss << fmt("exec %s\n", concatStringsSep(" ", args)); |
| 270 | + } |
| 271 | + |
| 272 | + writeFull(rcFileFd.get(), ss.str()); |
| 273 | + |
| 274 | + stopProgressBar(); |
| 275 | + |
| 276 | + auto shell = getEnv("SHELL").value_or("bash"); |
| 277 | + |
| 278 | + setEnviron(); |
| 279 | + |
| 280 | + auto args = Strings{std::string(baseNameOf(shell)), "--rcfile", rcFilePath}; |
| 281 | + |
| 282 | + restoreAffinity(); |
| 283 | + restoreSignals(); |
| 284 | + |
| 285 | + execvp(shell.c_str(), stringsToCharPtrs(args).data()); |
| 286 | + |
| 287 | + throw SysError("executing shell '%s'", shell); |
| 288 | + } |
| 289 | +}; |
| 290 | + |
| 291 | +struct CmdPrintDevEnv : Common |
| 292 | +{ |
| 293 | + std::string description() override |
| 294 | + { |
| 295 | + return "print shell code that can be sourced by bash to reproduce the build environment of a derivation"; |
| 296 | + } |
| 297 | + |
| 298 | + Examples examples() override |
| 299 | + { |
| 300 | + return { |
| 301 | + Example{ |
| 302 | + "To apply the build environment of GNU hello to the current shell:", |
| 303 | + ". <(nix print-dev-env nixpkgs.hello)" |
| 304 | + }, |
| 305 | + }; |
| 306 | + } |
| 307 | + |
| 308 | + void run(ref<Store> store) override |
| 309 | + { |
| 310 | + auto buildEnvironment = getBuildEnvironment(store); |
| 311 | + |
| 312 | + stopProgressBar(); |
| 313 | + |
| 314 | + makeRcScript(buildEnvironment, std::cout); |
| 315 | + } |
| 316 | +}; |
| 317 | + |
| 318 | +static auto r1 = registerCommand<CmdPrintDevEnv>("print-dev-env"); |
| 319 | +static auto r2 = registerCommand<CmdDevShell>("dev-shell"); |
0 commit comments