Reputation: 25675
I have noticed in the past that in nix
, a ./myfile.txt
path type seems to
/home/myuser/mydir/myfile.txt
, and/nix/store/55j24v9qwdarikv7kd3lc0pvxdr9r2y8-myfile.txt
.I would like to understand exactly when which case happens.
This is especially important for files that contains any form of secret information, as all files in /nix/store
are world-readable by all users on the system.
(When using nixops
, there's a special "keys" feature for this purpose, see section Managing keys in the manual, but I think it's still important when and how this path-to-store-path copying happens in nix
itself.)
Upvotes: 27
Views: 5637
Reputation: 25675
User clever
on the #nixos
IRC channel explained:
The expansion into /nix/store/...
happens when you use a path inside ${}
string interpolation, for example mystring = "cat ${./myfile.txt}
.
It does not happen when you use the toString
function, e.g. toString ./myfile.txt
will not give you a path pointing into /nix/store
.
For example:
toString ./notes.txt == "/home/clever/apps/nixos-installer/installer-gui/notes.txt"
"${./notes.txt}" == "/nix/store/55j24v9qwdarikv7kd3lc0pvxdr9r2y8-notes.txt"
Nix store paths (programs, data, configuration in /nix/store
) are supposed to be hermetic and immutable once built.
"Hermetic and immutable" only works well if any files they refer to are also in the Nix store. If, for example, some nginx configuration file included another configuration file at /home/myuser/
, hermeticity and immutability would be broken. This is why "copying path literals to the nix store" is a sensible default.
The 55j24v9qwdarikv7kd3lc0pvxdr9r2y8
hash part is taken from the contents of the file referenced by the ./path
, so that it changes when the file changes and things that depend on it can rebuild accordingly.
The copying of files into /nix/store
happens evaluation time (e.g. when nix-instantiate
runs to turn nix expressions into .drv
files).
To make this possible, every string in nix
has a "context" that tracks what the string depends on (in practice a list of .drv
paths behind it).
For example, the string "/nix/store/rkvwvi007k7w8lp4cc0n10yhlz5xjfmk-hello-2.10"
from the GNU hello
package has some invisible state, that says it depends on the hello
derivation. And if that string winds up as the input to stdenv.mkDerivation, the newly made derivation will "magically" depend on the hello
package being built.
This works even if you mess with the string via builtins.substring
. See this code of nix for how the context of the longer string is extracted in line 1653, and used as the context for the substring in line 1657.
You can get rid of a string's dependency context using builtins.unsafeDiscardStringContext
.
nix
code${}
interpolation uses coerceToString
, which has a bool copyToStore
argument that defaults to true
:
/* String coercion. Converts strings, paths and derivations to a
string. If `coerceMore' is set, also converts nulls, integers,
booleans and lists to a string. If `copyToStore' is set,
referenced paths are copied to the Nix store as a side effect. */
string coerceToString(const Pos & pos, Value & v, PathSet & context,
bool coerceMore = false, bool copyToStore = true);
It is implemented here, and the check for the interpolated thing being a ./path
, and the copying to /nix/store
, is happening just below:
if (v.type == tPath) {
Path path(canonPath(v.path));
return copyToStore ? copyPathToStore(context, path) : path;
}
toString
is implemented with prim_toString
, and it passes false
for the copyToStore
argument:
/* Convert the argument to a string. Paths are *not* copied to the
store, so `toString /foo/bar' yields `"/foo/bar"', not
`"/nix/store/whatever..."'. */
static void prim_toString(EvalState & state, const Pos & pos, Value * * args, Value & v)
{
PathSet context;
string s = state.coerceToString(pos, *args[0], context, true, false);
mkString(v, s, context);
}
Upvotes: 40