1 .\" Hey Emacs! This file is -*- nroff -*- source.
2 .\" $Id: pam_fail_delay.3,v 1.2 1997/02/15 18:47:46 morgan Exp morgan $
3 .\" $FreeBSD: src/contrib/libpam/doc/man/pam_fail_delay.3,v 1.2.6.2 2001/06/11 15:28:11 markm Exp $
4 .\" Copyright (c) Andrew G. Morgan 1997 <morgan@parc.power.net>
5 .TH PAM_FAIL_DELAY 3 "1997 Jan 12" "PAM 0.56" "Programmers' Manual"
8 pam_fail_delay \- request a delay on failure
11 .B #include <security/pam_appl.h>
15 .B #include <security/pam_modules.h>
17 .BI "int pam_fail_delay(pam_handle_t " "*pamh" ", unsigned int " "usec" ");"
21 It is often possible to attack an authentication scheme by exploiting
22 the time it takes the scheme to deny access to an applicant user. In
25 timeouts, it may prove possible to attempt a
27 dictionary attack -- with an automated process, the attacker tries all
28 possible passwords to gain access to the system. In other cases,
29 where individual failures can take measurable amounts of time
30 (indicating the nature of the failure), an attacker can obtain useful
31 information about the authentication process. These latter attacks
32 make use of procedural delays that constitute a
34 of useful information.
37 To minimize the effectiveness of such attacks, it is desirable to
38 introduce a random delay in a failed authentication process.
40 provides such a facility. The delay occurs upon failure of the
41 .BR pam_authenticate "(3) "
43 .BR pam_chauthtok "(3) "
46 all authentication modules have been called, but
48 control is returned to the service application.
52 .BR pam_fail_delay "(3),"
53 is used to specify a required minimum for the length of the
56 argument. This function can be called by the service application
57 and/or the authentication modules, both may have an interest in
58 delaying a reapplication for service by the user. The length of the
59 delay is computed at the time it is required. Its length is
60 pseudo-gausianly distributed about the
62 requested value; the resultant delay will differ by as much as 25% of
63 this maximum requested value (both up and down).
67 .BR pam_authenticate "(3) or " pam_chauthtok "(3),"
68 independent of success or failure, the new requested delay is reset to
69 its default value: zero.
75 application may require a failure delay of roughly 3 seconds. It will
76 contain the following code:
79 .B " pam_fail_delay(pamh, 3000000 /* micro-seconds */ );"
81 .B " pam_authenticate(pamh, 0);"
84 if the modules do not request a delay, the failure delay will be
85 between 2.25 and 3.75 seconds.
88 However, the modules, invoked in the authentication process, may
92 .RB " (module #1) " "pam_fail_delay(pamh, 2000000);"
95 .RB " (module #2) " "pam_fail_delay(pamh, 4000000);"
98 in this case, it is the largest requested value that is used to
99 compute the actual failed delay: here between 3 and 5 seconds.
102 Following a successful call to
103 .BR pam_fail_delay "(3), " PAM_SUCCESS
104 is returned. All other returns should be considered serious failures.
107 May be translated to text with
108 .BR pam_strerror "(3). "
111 Under consideration by the X/Open group for future inclusion in the
120 .BR pam_start "(3), "
121 .BR pam_get_item "(3) "
123 .BR pam_strerror "(3). "
128 .BR "System administrators" ", "
129 .BR "module developers" ", "
131 .BR "application developers" ". "