9909a175bf
This was found when `logrotate.conf` failed to build in a NixOS system with: /nix/store/26zdl4pyw5qazppj8if5lm8bjzxlc07l-coreutils-9.3/bin/id: cannot find name for group ID 30000 This was surprising because it seemed to mean that /etc/group was busted in the sandbox. Indeed it was: root❌0: nixbld:!💯 nogroup❌65534: We diagnosed this to sandboxUid() being called before usingUserNamespace() was called, in setting up /etc/group inside the sandbox. This code desperately needs refactoring. We also moved the /etc/group code to be with the /etc/passwd code, but honestly this code is all spaghetti'd all over the place and needs some more serious tidying than we did here. We also moved some checks to be earlier to improve locality with where the things they are checking come from. Change-Id: Ie29798771f3593c46ec313a32960fa955054aceb
66 lines
1.4 KiB
Nix
66 lines
1.4 KiB
Nix
# Lix should be able to build derivations that want working NSS, even with
|
|
# broken user namespaces support
|
|
{ ... }:
|
|
let
|
|
testDerivation = builtins.toFile "test.nix" ''
|
|
{ cacheBreak }:
|
|
let pkgs = import <nixpkgs> { };
|
|
in
|
|
pkgs.runCommand "test" { } '''
|
|
# ''${cacheBreak}
|
|
id -g
|
|
id -u
|
|
echo "GROUP"
|
|
cat /etc/group
|
|
echo "PASSWD"
|
|
cat /etc/passwd
|
|
|
|
username=$(id -un)
|
|
groupname=$(id -gn)
|
|
[[ "$username" =~ nixbld* ]]
|
|
[[ "$groupname" =~ nixbld* ]]
|
|
touch $out
|
|
'''
|
|
'';
|
|
in
|
|
{
|
|
name = "broken-userns";
|
|
|
|
nodes.machine =
|
|
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
virtualisation.writableStore = true;
|
|
nix.settings.substituters = lib.mkForce [ ];
|
|
nix.nixPath = [ "nixpkgs=${lib.cleanSource pkgs.path}" ];
|
|
virtualisation.additionalPaths = [
|
|
pkgs.stdenvNoCC
|
|
testDerivation
|
|
];
|
|
};
|
|
|
|
testScript =
|
|
{ nodes }:
|
|
''
|
|
start_all()
|
|
|
|
# Building it normally should work
|
|
machine.succeed(r"""
|
|
nix-build --argstr cacheBreak 1 --store daemon ${testDerivation}
|
|
""")
|
|
|
|
# Building it with broken userns should also work
|
|
machine.succeed(r"""
|
|
# break user ns
|
|
sysctl -w user.max_user_namespaces=0
|
|
""")
|
|
machine.systemctl("restart nix-daemon")
|
|
machine.succeed(r"""
|
|
nix-build --argstr cacheBreak 2 --store daemon ${testDerivation}
|
|
""")
|
|
'';
|
|
}
|