Skip to content
Snippets Groups Projects
  • Eelco Dolstra's avatar
    2d35116c
    * Setuid support for sharing a Nix installation between multiple · 2d35116c
    Eelco Dolstra authored
      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.
    
    2d35116c
    History
    * Setuid support for sharing a Nix installation between multiple
    Eelco Dolstra authored
      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.
    
configure.ac 5.58 KiB