File: README

package info (click to toggle)
pam-u2f 1.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,408 kB
  • sloc: sh: 4,849; ansic: 4,728; makefile: 160; python: 16
file content (551 lines) | stat: -rw-r--r-- 19,407 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
= Pluggable Authentication Module (PAM) Universal 2nd Factor (U2F)

image:https://github.com/yubico/pam-u2f/workflows/linux/badge.svg["Linux Build Status (github actions)", link="https://github.com/Yubico/pam-u2f/actions"]
image:https://github.com/yubico/pam-u2f/workflows/macos/badge.svg["macOS Build Status (github actions)", link="https://github.com/Yubico/pam-u2f/actions"]
image:https://github.com/yubico/pam-u2f/workflows/fuzzer/badge.svg["Fuzz Status (github actions)", link="https://github.com/Yubico/pam-u2f/actions"]

This module implements PAM over U2F and FIDO2, providing an easy way to integrate the
YubiKey (or other U2F/FIDO2 compliant authenticators) into your existing
infrastructure.

== Releases

You may get signed release source tarballs from Yubico's
https://developers.yubico.com/pam-u2f/Releases[release page].

== Installation

pam-u2f comes readily packaged for a number of systems. A non-exhaustive
list is available below.

=== Ubuntu

----
# apt install libpam-u2f pamu2fcfg
----

Additionally, Yubico maintains a PPA with up-to-date versions of pam-u2f.

----
# apt install software-properties-common
# apt-add-repository ppa:yubico/stable
# apt update
# apt install libpam-u2f pamu2fcfg
----

=== Fedora

----
# dnf install pam-u2f pamu2fcfg
----

=== macOS

----
$ brew install pam-u2f
----

[[building]]
== Building from a source tarball

This project depends on https://developers.yubico.com/libfido2[`libfido2`]
(>= 1.3.0).
Versions of this project up to 1.0.8 used `libu2f-host` and
`libu2f-server`.

On Ubuntu, the dependencies needed to build the source tarball can be installed
using:

----
# apt install --no-install-recommends --no-install-suggests \
    gcc \
    libfido2-dev \
    libpam-dev \
    libssl-dev \
    make \
    pkg-config
----

The project can be built as follows:

----
$ ./configure
$ make
----

Once the module is built, copy the file `pam_u2f.so` to the correct
directory for your system. Typically `/lib/security/` or
`/lib/x86_64-linux-gnu/security/`. This is automated by `make install`
assuming that the pam directory chosen by `configure` is correct. If
that is not the case it can be specified with
`./configure --with-pam-dir=`.

== Building from Git

You may check out the sources using Git with the following command:

----
$ git clone https://github.com/Yubico/pam-u2f.git
----

This will create a directory 'pam-u2f'. Enter the directory:

----
$ cd pam-u2f
----

This project uses `autoconf`, `automake`, `pkg-config` and `libtool`
to achieve portability and ease of use.
`AsciiDoc` and `xsltproc` are used to generate the manpages.

On Ubuntu, the dependencies needed to build from Git can be installed using:

----
# apt install --no-install-recommends --no-install-suggests \
    asciidoc \
    autoconf \
    automake \
    libfido2-dev \
    libpam-dev \
    libssl-dev \
    libtool \
    make \
    pkg-config
----

On Fedora, the necessary dependencies can be installed using:

----
# dnf -y install \
    asciidoc \
    autoconf \
    automake \
    libfido2-devel \
    libtool \
    openssl-devel \
    pam-devel
----

Generate the build system using:

----
$ autoreconf --install
----

Then build as usual, see above under <<building,Building from a source tarball>>.

== Building with CMake

A migration of the build system from GNU Autotools to CMake is currently in
process.
Versions from 1.4.0 and above can be built using CMake.
GNU Autotools support will be dropped in a future release.

Building with CMake requires a slightly different set of
dependencies, needed both for compiling from a source
tarball and from Git.

On Ubuntu, the minimal set of dependencies needed to build with CMake
can be installed using:

----
# apt install --no-install-recommends --no-install-suggests \
    asciidoc \
    cmake \
    gcc \
    libfido2-dev \
    libpam-dev \
    make \
    pkg-config
----

The project can be built as follows:

----
$ cmake .
$ cmake --build .
$ cmake --build . -t test   # Optional: run unit tests
----

The obtained artifacts can be installed as follows:

----
# cmake --install .
----

== Service Configuration

Create a file for a new service in `/etc/pam.d/` or edit an already
existing one by adding a line similar to this:

----
auth sufficient pam_u2f.so debug
----

For more information about the syntax of PAM configuration files, please
see the manual page for pam.conf(5). Additional <<examples,example
configurations>> can be found below.

IMPORTANT: An erroneous PAM configuration may lock some or all users
out of the system or prevent you from gaining root privileges. It is
recommended that you start a separate shell with root privileges while
configuring PAM to be able to revert changes if something goes wrong.
Test your configuration thoroughly before closing the root shell.

[[moduleArguments]]
=== Module Arguments

[horizontal]
debug::
Enables debug output

debug_file::
Filename to write debugging messages to. **If this file is missing,
nothing will be logged**. This regular file **has to be created by the
user** or **must exist and be a regular file** for anything getting
logged to it. It is not created by pam-u2f on purpose (for security
considerations). This filename may be alternatively set to "stderr"
(default), "stdout", or "syslog".

origin=origin::
Set the relying party ID for the FIDO authentication procedure. If no
value is specified, the identifier "pam://$HOSTNAME" is used.

appid=appid::
Set the https://developers.yubico.com/U2F/App_ID.html[application ID]
for the FIDO authentication procedure. If no value is specified, the
same value used for origin is taken ("pam://$HOSTNAME" if also origin
is not specified). This setting is only applicable for FIDO credentials
created with pamu2fcfg versions v1.0.8 or earlier. Note that on v1.1.0
and v1.1.1 of pam-u2f, handling of this setting was temporarily broken
if the value was not the same as the value of origin.

authfile=file::
Set the location of the <<authMappingFiles,file that holds the mappings of user
names to keyHandles and user keys>>. An <<individualAuth,individual (per user)
file>> may be configured relative to the users' home dirs, e.g.
".ssh/u2f_keys". If not specified, the location defaults to
$XDG_CONFIG_HOME/Yubico/u2f_keys. If $XDG_CONFIG_HOME is not set,
$HOME/.config/Yubico/u2f_keys is used.

expand::
Enables variable expansion within the authfile path: `%u` is expanded to the
local user name (`PAM_USER`) and `%%` is expanded to `%`. Unknown expansion
sequences result in an authentication error. See also `openasuser`.

authpending_file=file::
Set the location of the file that is used for touch request
notifications. This file will be opened when pam-u2f starts waiting
for a user to touch the FIDO authenticator, and will be closed when it no
longer waits for a touch. Use inotify to listen on these events, or a more
high-level tool like
https://github.com/maximbaz/yubikey-touch-detector[yubikey-touch-detector].
Note that yubikey-touch-detector v1.5.1 and later no longer rely on the
authpending file for its detection mechanism. Set an empty value in order to
disable this functionality, like so: `authpending_file=`. Default value:
/var/run/user/$UID/pam-u2f-authpending

nouserok::
Set to make authentication attempts not fail if the user trying to
authenticate is not found inside `authfile`, is found but has no
credentials, or if the `authfile` is missing.

openasuser::
Setuid to the authenticating user when opening the authfile. Useful
when the user's home is stored on an NFS volume mounted with the
`root_squash` option (which maps root to nobody which will not be able
to read the file). Note that after release 1.0.8 this is done by
default when no global authfile (path is absolute) or XDG_CONFIG_HOME
environment variable has been set.

alwaysok::
Set to enable all authentication attempts to succeed (aka presentation
mode).

max_devices=n_devices::
Maximum number of FIDO authenticators allowed per user (default is 24).
Authenticators specified in the authorization mapping file that exceed
this value will be ignored.

interactive::
Set to prompt a message and wait before testing the presence of a FIDO
authenticator. Recommended if your authenticator doesn't have a tactile
trigger.

[prompt=your prompt here]::
Set individual prompt message for interactive mode. Watch the square
brackets around this parameter to get spaces correctly recognized by
PAM.

manual::
Set to drop to a manual console where challenges are printed on screen
and response read from standard input. Useful for debugging and SSH
sessions without FIDO support from the SSH client/server. If enabled,
interactive mode becomes redundant and has no effect.

cue::
Set to prompt a message to remind to touch the FIDO authenticator.

[cue_prompt=your prompt here]::
Set individual prompt message for the cue option. Watch the square
brackets around this parameter to get spaces correctly recognized by
PAM.

nodetect::
Set to skip detecting if a suitable FIDO authenticator is inserted before
performing the full tactile authentication. This detection was created
to avoid emitting the "cue" message if no suitable token exists,
because doing so leaks information about the authentication stack if a
token is inserted but not configured for the authenticating user.
However, it was found that versions of `libu2f-host` 1.1.5 or less has
buggy iteration/sleep behavior which causes a 1-second delay to occur
for this initial detection. For this reason, as well as the
possibility of hypothetical tokens that do not tolerate this double
authentication, the "nodetect" option was added.

userpresence=int::
If 1, request user presence during authentication. If 0, do not
request user presence during authentication. If omitted, fallback to
the authenticator's default behaviour.

userverification=int::
If 1, request user verification during authentication (e.g. biometrics).
If 0, do not request user verification during authentication. If omitted,
fallback to the authenticator's default behaviour. If enabled, an
authenticator with support for FIDO2 user verification is required.

pinverification=int::
If 1, request PIN verification during authentication. If 0, do not
request PIN verification during authentication. If omitted, fallback to
the authenticator's default behaviour. If enabled, an authenticator
with support for a FIDO2 PIN is required.

sshformat::
Use credentials produced by versions of OpenSSH that have support for
FIDO authenticators. It is not possible to mix native credentials and SSH
credentials. Once this option is enabled all credentials will be parsed
as SSH.

conf=/path/to/pam_u2f.conf::
Set an alternative location for the <<confFile,configuration file>>.
The supplied path must be absolute and must correspond to an existing
regular file.

The options specified on the module command line override the values
from the <<confFile,configuration file>>.

IMPORTANT: On dynamic networks (e.g. where hostnames are set by DHCP),
users should not rely on the default origin and appid
("pam://$HOSTNAME") but set those parameters explicitly to the same
value.

[[examples]]
=== Example Service Configurations

==== Second Factor Authentication

Configure pam-u2f as a `required` module after your primary authentication
module(s) for use as a second factor. Make sure that the primary authentication
method is not `sufficient` or uses other control values that may preempt
execution of pam-u2f.

----
# Primary authentication method(s) above this line.
auth required pam_u2f.so authfile=/etc/u2f_mappings cue
----

==== Passwordless Authentication

For a passwordless experience, where the authenticator PIN can be used in place
of the user password, you can insert the below line towards the top of your
service configuration. You may need to change the control value to something
else if you'd like to execute additional authentication modules after pam-u2f.

----
auth sufficient pam_u2f.so authfile=/etc/u2f_mappings cue pinverification=1
# Fallback modules go below this line (e.g. password authentication).
----

==== Passwordless Authentication using Biometrics

Similar to the previous configuration but capable of built-in user
verification, e.g. fingerprint matching using the YubiKey Bio. This example
falls back to using PIN verification if the fingerprint does not match or is
otherwise blocked.

----
auth sufficient pam_u2f.so authfile=/etc/u2f_mappings cue pinverification=0 userverification=1
auth sufficient pam_u2f.so authfile=/etc/u2f_mappings cue pinverification=1 userverification=0
# More fallback modules go below this line (e.g. password authentication).
----

[[authMappingFiles]]
== Authorization Mapping Files

A mapping must be made between the YubiKey token and the user name,
see <<registration, here>> for details on how to perform the
registration using the bundled tool.

There are two ways to do this, either centrally in one file, or
individually, where users can create the mapping in their home
directories. If the central authorization mapping file is being used,
user home directory mappings will not be used and the opposite applies
if user home directory mappings are being used, the central
authorization mappings file will not be used.

By default the mapping file inside a home directory will be opened as
the target user, whereas the central file will be opened as `root`. If
the `XDG_CONFIG_HOME` variable is set, privileges will not be dropped
unless the `openasuser` configuration setting is set.

IMPORTANT: Using pam-u2f to secure the login to a computer while
storing the mapping file in an encrypted home directory, will result
in the impossibility of logging into the system. The partition is
decrypted after login and the mapping file can not be accessed.

=== Central Authorization Mapping

Create a file e.g. `/etc/u2f_mappings`. The file must contain a user
name, and the information obtained during the registration procedure.

The mappings should look like this, one per line:

 <username1>:<KeyHandle1>,<UserKey1>,<CoseType1>,<Options1>:<KeyHandle2>,<UserKey2>,<CoseType2>,<Options2>:...
 <username2>:<KeyHandle1>,<UserKey1>,<CoseType1>,<Options1>:<KeyHandle2>,<UserKey2>,<CoseType2>,<Options2>:...

Now add `authfile=/etc/u2f_mappings` to your PAM configuration line,
so it looks like:

 auth sufficient pam_u2f.so authfile=/etc/u2f_mappings

If you do not set the `openasuser` setting, the authfile will be
opened and parsed as `root` so make sure it has the correct owner and
permissions set.

[[individualAuth]]
=== Individual Authorization Mapping by User

Each user creates a `.config/Yubico/u2f_keys` (default) file inside
their home directory and places the mapping in that file. You may want
to specify a different per-user file (relative to the users' home
directory), i.e. `.ssh/u2f_keys`. Bear in mind, setting an absolute path
here is possible although very likely a fragile setup, and probably
not exhibiting the intended behaviour.

The file must have only one line:

 <username>:<KeyHandle1>,<UserKey1>,<CoseType1>,<Options1>:<KeyHandle2>,<UserKey2>,<CoseType2>,<Options2>:...

This is much the same concept as the SSH authorized_keys file.

In this case, pam-u2f will drop privileges and read the mapping file
as that user. This happens regardless of the `openasuser` option being
set.

Note that if you set the `XDG_CONFIG_HOME` variable, privileges will not
be dropped by default. Consider also setting `openasuser` in that
case.

[[registration]]
=== Obtaining Key Handles and Public Keys

In order to obtain the required information for the authentication procedure,
a token should be first registered. This can be done by using the command line
configuration tool provided with the module:

----
$ pamu2fcfg -uusername -opam://myorigin -ipam://myappid
----

the tool will register a connected token by using the specified origin
and appid. If neither are specified they will default to
`pam://$HOSTNAME`. Additionally, it is possible to set other options
to require user presence (touch), PIN verification and resident
credentials. On success the tool prints to standard output a
configuration line that can be directly used with the module. For
additional information on the tool read the relative manpage (`man pamu2fcfg`).

For authenticator management (e.g. setting a PIN, enrolling fingerprints, and
more), please refer to
https://developers.yubico.com/libfido2/Manuals/fido2-token.html[`fido2-token`],
https://developers.yubico.com/yubikey-manager[`yubikey-manager`], or some other
suitable tool.

=== SSH Credentials

To generate SSH credentials OpenSSH version 8.2 or later is required.
It is then possible to generate a credential file with:

----
$ ssh-keygen -t ecdsa-sk -f ./credential.ssh
----

Supported key types are ecdsa-sk and ed25519-sk. Note that passphrase protected
credentials are currently not supported.

To use this credential the `authfile` parameter should be set to the path of
the file `credential.ssh` and the `sshformat` option should also be set. If the
`authfile` parameter is not set, it defaults to `~/.ssh/id_ecdsa_sk`.

=== Multiple FIDO Authenticators

Multiple FIDO authenticators are supported. If more than one authenticator is
specified, authentication against them is attempted sequentially as they are
defined in the authorization mapping file. If during an authentication attempt
a connected authenticator is removed or a new one is plugged in, the authentication
restarts from the top of the list.

[[confFile]]
== Configuration file

A configuration file can be used to set the default
<<moduleArguments,module arguments>>.

- The file has a `name = value` format, with comments starting with the `#`
  character.

- White spaces at the beginning of line, end of line, and around the `=` sign
  are ignored.

- Any `conf` argument in the configuration file is ignored.

- The maximum size for the configuration file is 4 KiB.

- The default path for the configuration file is `/etc/security/pam_u2f.conf`.
  Note that it may have been set to another value by the distribution. The
  default file is allowed to not exist. An alternative path may be set in the
  module command line options.

- The options specified on the module command line override the values from the
  configuration file.

== SELinux Note

Due to an issue with Fedora Linux, and possibly with other
distributions that use SELinux, a system configured with pam-u2f may
end up in a situation where access to the credentials file is denied.
If the `nouserok` option is also set, this will result in a successful
authentication within the module, without using the FIDO
authenticator.

In order to correctly update the security context the command
`fixfiles onboot` should be used on existing installations

Moreover, to allow read access to an authfile or directory placed in a
non-standard location, the command

----
# chcon -R -t auth_home_t /path/to/target
----

should be used.

For more information see
https://access.redhat.com/security/cve/CVE-2020-24612[HERE].

== FIDO U2F vs FIDO2
Authenticators that solely support FIDO U2F and not FIDO2, e.g. the YubiKey 4
series, can be used only in conjunction with compatible features. Enabling
incompatible features, such as setting the `+pin` or the `+verification` flags
in the `authfile` or the corresponding options in the PAM service configuration
causes the authenticator to be ignored.