2009-05-28 15:10:02 +02:00
|
|
|
# This module provides configuration for the PAM (Pluggable
|
|
|
|
# Authentication Modules) system.
|
|
|
|
|
|
|
|
{config, pkgs, ...}:
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
with pkgs.lib;
|
|
|
|
|
2009-05-28 15:10:02 +02:00
|
|
|
let
|
|
|
|
|
2009-08-17 03:16:38 +02:00
|
|
|
inherit (pkgs) pam_unix2 pam_ldap;
|
2009-05-28 15:10:02 +02:00
|
|
|
|
2009-08-16 17:46:24 +02:00
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2009-08-16 16:49:14 +02:00
|
|
|
makePAMService =
|
|
|
|
{ name
|
|
|
|
, # If set, root doesn't need to authenticate (e.g. for the "chsh"
|
|
|
|
# service).
|
|
|
|
rootOK ? false
|
2009-09-13 16:05:21 +02:00
|
|
|
, # If set, use ConsoleKit's PAM connector module to claim
|
|
|
|
# ownership of audio devices etc.
|
|
|
|
ownDevices ? false
|
2009-08-16 16:49:14 +02:00
|
|
|
, # Whether to forward XAuth keys between users. Mostly useful
|
|
|
|
# for "su".
|
|
|
|
forwardXAuth ? false
|
2009-10-15 16:41:59 +02:00
|
|
|
, # Whether to allow logging into accounts that have no password
|
|
|
|
# set (i.e., have an empty password field in /etc/passwd or
|
|
|
|
# /etc/group). This does not enable logging into disabled
|
|
|
|
# accounts (i.e., that have the password field set to `!').
|
|
|
|
# Note that regardless of what the pam_unix2 documentation says,
|
|
|
|
# accounts with hashed empty passwords are always allowed to log
|
|
|
|
# in.
|
|
|
|
allowNullPassword ? false
|
2009-08-16 16:49:14 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
{ 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"}
|
2009-10-15 16:41:59 +02:00
|
|
|
auth sufficient ${pam_unix2}/lib/security/pam_unix2.so ${
|
|
|
|
optionalString allowNullPassword "nullok"}
|
2009-08-16 16:49:14 +02:00
|
|
|
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
|
2009-09-13 16:05:21 +02:00
|
|
|
${optionalString ownDevices
|
2009-09-25 22:12:35 +02:00
|
|
|
"session optional ${pkgs.consolekit}/lib/security/pam_ck_connector.so"}
|
2009-08-16 16:49:14 +02:00
|
|
|
${optionalString forwardXAuth
|
|
|
|
"session optional pam_xauth.so xauthpath=${pkgs.xorg.xauth}/bin/xauth systemuser=99"}
|
|
|
|
'';
|
|
|
|
target = "pam.d/${name}";
|
2009-05-28 15:10:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
2009-08-16 16:49:14 +02:00
|
|
|
|
|
|
|
###### 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. <command>login</command> or <command>passwd</command>.
|
|
|
|
Each element of this list is an attribute set describing a
|
|
|
|
service. The attribute <varname>name</varname> specifies
|
|
|
|
the name of the service. The attribute
|
|
|
|
<varname>rootOK</varname> specifies whether the root user is
|
|
|
|
allowed to use this service without authentication. The
|
2009-09-13 16:05:21 +02:00
|
|
|
attribute <varname>ownDevices</varname> specifies whether
|
|
|
|
ConsoleKit's PAM connector module should be used to give the
|
|
|
|
user ownership of devices such as audio and CD-ROM drives.
|
|
|
|
The attribute <varname>forwardXAuth</varname> specifies
|
|
|
|
whether X authentication keys should be passed from the
|
|
|
|
calling user to the target user (e.g. for
|
|
|
|
<command>su</command>).
|
2009-08-16 16:49:14 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### 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;
|
|
|
|
|
2009-08-16 17:46:24 +02:00
|
|
|
environment.etc =
|
|
|
|
map makePAMService config.security.pam.services
|
|
|
|
++ singleton
|
|
|
|
{ source = otherService;
|
|
|
|
target = "pam.d/other";
|
|
|
|
};
|
2009-08-16 16:49:14 +02:00
|
|
|
|
|
|
|
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; }
|
2009-10-15 16:41:59 +02:00
|
|
|
{ name = "login"; ownDevices = true; allowNullPassword = true; }
|
2009-08-16 16:49:14 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2009-05-28 15:10:02 +02:00
|
|
|
}
|