# This module provides configuration for the PAM (Pluggable # Authentication Modules) system. {config, pkgs, ...}: with pkgs.lib; let inherit (pkgs) pam_unix2 pam_ldap; otherService = pkgs.writeText "other.pam" '' auth required pam_warn.so auth required pam_deny.so account required pam_warn.so account required pam_deny.so password required pam_warn.so password required pam_deny.so session required pam_warn.so session required pam_deny.so ''; makePAMService = { name , # If set, root doesn't need to authenticate (e.g. for the "chsh" # service). rootOK ? false , # If set, this is a local login (e.g. virtual console or X), so # the user gets ownership of audio devices etc. localLogin ? false , # Temporary hack to get SLiM to work with ConsoleKit. ckHack ? false , # Whether to forward XAuth keys between users. Mostly useful # for "su". forwardXAuth ? false }: { source = pkgs.writeText "${name}.pam" # !!! TODO: move the LDAP stuff to the LDAP module, and the # Samba stuff to the Samba module. This requires that the PAM # module provides the right hooks. '' # Account management. ${optionalString config.users.ldap.enable "account optional ${pam_ldap}/lib/security/pam_ldap.so"} account required ${pam_unix2}/lib/security/pam_unix2.so # Authentication management. ${optionalString rootOK "auth sufficient pam_rootok.so"} ${optionalString config.users.ldap.enable "auth sufficient ${pam_ldap}/lib/security/pam_ldap.so"} auth sufficient ${pam_unix2}/lib/security/pam_unix2.so auth required pam_deny.so # Password management. ${optionalString config.users.ldap.enable "password sufficient ${pam_ldap}/lib/security/pam_ldap.so"} password requisite ${pam_unix2}/lib/security/pam_unix2.so nullok ${optionalString config.services.samba.syncPasswordsByPam "password optional ${pkgs.samba}/lib/security/pam_smbpass.so nullok use_authtok try_first_pass"} # Session management. ${optionalString config.users.ldap.enable "session optional ${pam_ldap}/lib/security/pam_ldap.so"} session required ${pam_unix2}/lib/security/pam_unix2.so ${optionalString ckHack "session required pam_env.so debug conffile=${envFile} readenv=0"} ${optionalString localLogin "session optional ${pkgs.console_kit}/lib/security/pam_ck_connector.so"} ${optionalString forwardXAuth "session optional pam_xauth.so xauthpath=${pkgs.xorg.xauth}/bin/xauth systemuser=99"} ''; target = "pam.d/${name}"; }; # This is needed to get an active session in ConsoleKit. Apparently # a better way is to run ck-launch-session from the session starter # (or let xdm/kdm do it). envFile = pkgs.writeText "pam_env.conf" '' CKCON_X11_DISPLAY_DEVICE DEFAULT="/dev/tty7" ''; in { ###### interface options = { security.pam.services = mkOption { default = []; example = [ { name = "chsh"; rootOK = true; } ]; description = '' This option defines the PAM services. A service typically corresponds to a program that uses PAM, e.g. login or passwd. Each element of this list is an attribute set describing a service. The attribute name specifies the name of the service. The attribute rootOK specifies whether the root user is allowed to use this service without authentication. The attribute localLogin specifies whether this is a local login service (e.g. xdm), which implies that the user gets ownership of devices such as audio and CD-ROM drives. The attribute forwardXAuth specifies whether X authentication keys should be passed from the calling user to the target user (e.g. for su). ''; }; }; ###### implementation config = { environment.systemPackages = # Include the PAM modules in the system path mostly for the manpages. [ pkgs.pam pam_unix2 ] ++ optional config.users.ldap.enable pam_ldap; environment.etc = map makePAMService config.security.pam.services ++ singleton { source = otherService; target = "pam.d/other"; }; security.pam.services = # Most of these should be moved to specific modules. [ { name = "cups"; } { name = "ejabberd"; } { name = "ftp"; } { name = "lshd"; } { name = "passwd"; } { name = "samba"; } { name = "sshd"; } { name = "xlock"; } { name = "chsh"; rootOK = true; } { name = "su"; rootOK = true; forwardXAuth = true; } # Note: useradd, groupadd etc. aren't setuid root, so it # doesn't really matter what the PAM config says as long as it # lets root in. { name = "useradd"; rootOK = true; } # Used by groupadd etc. { name = "shadow"; rootOK = true; } { name = "login"; localLogin = true; } ]; }; }