- Notifications
You must be signed in to change notification settings - Fork20
Authentication with PKCS#11 modules
License
OpenSC/pam_p11
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Pam_p11 is a plugable authentication module (pam) package for using crpytographic tokens such as smart cards and usb crypto tokens for authentication.
Pam_p11 useslibp11 to access any PKCS#11 module. It should be compatible with any implementation, but it is primarely developed usingOpenSC.
Pam_p11 implements two authentication methods:
- verify a token using a known public key found in OpenSSH's
~/.ssh/authorized_keys. - verify a token using a known certificate found in
~/.eid/authorized_certificates.
Pam_p11 is very simple, it has no config file, does not know about certificate chains, certificate authorities, revocation lists or OCSP. Perfect for the small installation with no frills.
Pam_p11 was written by an international team and is licensed as Open Source software under the LGPL license.
Installation is quite easy:
wget https://github.com/OpenSC/pam_p11/releases/download/pam_p11-0.6.0/pam_p11-0.6.0.tar.gztar xfvz pam_p11-0.6.0.tar.gzcd pam_p11-0.6.0./configure --prefix=/usr --libdir=/lib/makemake installPam_p11 depends on pkg-config, openssl, libp11 and pam. If you don't have pkg-config installed, please do so and try again. If pkg-config is not found, please change your PATH environment setting. If openssl is not installed, please do so. If openssl is not found, please change your PKG_CONFIG_PATH environment setting to include the directory with "openssl.pc" or "libp11.pc" file. Some linux distributions split openssl into a runtime package and a development package, you need to install both. Same might be true for pam and libp11.
To use pam_p11 with some application likesudo, edit/etc/pam.d/sudo and add something like the following at the beginning of the file:
auth sufficient /usr/local/lib/security/pam_p11.so /usr/local/lib/opensc-pkcs11.soReplace/usr/local/lib/opensc-pkcs11.so with your PKCS#11 implementation. Using an absolute path topam_p11.so avoids the need to write to a system directory, which is especially useful for macOS with system integrity protection (SIP) enabled.
An optional second argument topam_p11.so may be used to check for a specific format when prompting for the token's password. On macOS this defaults to the regular expression^[[:digit:]]*$ to avoid confusion with the user's password in the login screen. pam_p11 usesPOSIX-Extended Regular Expressions for matching.
While testing it is best to keep a door open. Editing the configuration files from a different machine via SSH helps reverting a bad PAM login configuration. Replacesufficient withrequired and remove other unwanted PAM modules from the file only when you've successfully verified the configuration.
To enable pam_p11 for all logins (graphical and terminal based), change the following configuration files as described above:
| Operating System | PAM configuration file |
|---|---|
| macOS | /etc/pam.d/authorization |
| Debian | /etc/pam.d/common-auth |
| Arch Linux | /etc/pam.d/system-auth |
To allow changing and unblocking the PIN via pam_p11, add the following to your configuration:
password optional /usr/local/lib/security/pam_p11.so /usr/local/lib/opensc-pkcs11.soAn optional second argument topam_p11.so may be used to check for a specific format when prompting for the token's password. On macOS this defaults to the regular expression^[[:digit:]]*$ to avoid confusion with the user's password in the login screen. pam_p11 usesPOSIX-Extended Regular Expressions for matching.
A user may create a~/.eid/ directory and create a file~/.eid/authorized_certificates with authorized certificates. You can do that via
mkdir -p ~/.eidchmod 0755 ~/.eidpkcs11-tool --read-object --type cert --id 45 --module /usr/lib/opensc-pkcs11.so --output-file cert.ceropenssl x509 -inform DER -in cert.cer -outform PEM >> ~/.eid/authorized_certificateschmod 0644 ~/.eid/authorized_certificatesThis example uses thepkcs11-tool command from opensc to read a certificate (id45) from the smart card. Usepkcs11-tool --list-objects --type cert --module /usr/lib/opensc-pkcs11.so to view all certificates available on the card.
It is very important that only the user of the file can write to it. You can have any number of certificates in that file. The certificates need to be in PEM format. DER format is not supported.
A user may create a~/.ssh/ directory and create a file~/.ssh/authorized_keys with authorized public keys. You can do that via
mkdir -p ~/.sshchmod 0755 ~/.sshssh-keygen -D /usr/lib/opensc-pkcs11.so >> ~/.ssh/authorized_keyschmod 0644 ~/.ssh/authorized_keysThis example uses thessh-keygen command from openssh to read the default user public key (id 45) from the smart card in reader 0. Note that this tool prints the public keys in two formats: ssh v1 and ssh v2 format. It is recommended to edit the file and delete one of those two lines. Also you might want to add a comment / identifier at the end of the line.
It is very important that only the user of the file can write to it. You can have any number of public keys in that file.
Note it is currently not possible to convert existing ssh keys into pem format and store them on a smart card. (To be precise: OpenSC has no such functionality, not sure about other implementations.)
pam_p11 simply compares public keys and request the cryptographic token to sign some random data and verifiy the signature with the public key. No CA chain checking is done, no CRL is looked at, and they don't know what OCSP is. This works fine for small installations, but if you want any of those features, please have a look atPam_pkcs11 for a fully fledged PAM module for smart card authentication.
About
Authentication with PKCS#11 modules
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.