summaryrefslogtreecommitdiff
path: root/doc/man/pam.8
blob: 68280737cf5ed6c9557cb5def328b0a691fce53c (plain)
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
.\" Hey Emacs! This file is -*- nroff -*- source.
.\" $Id$
.\" Copyright (c) Andrew G. Morgan 1996-7 <morgan@linux.kernel.org>
.TH PAM 8 "1997 Feb 9" "Linux-PAM 0.56" "Linux-PAM Manual"
.SH NAME

Linux-PAM \- Pluggable Authentication Modules for Linux

.SH SYNOPSIS
.B /etc/pam.conf
.sp 2
.SH DESCRIPTION

This manual is intended to offer a quick introduction to
.BR Linux-PAM ". "
For more information the reader is directed to the
.BR "Linux-PAM system administrators' guide".

.sp
.BR Linux-PAM
Is a system of libraries that handle the authentication tasks of
applications (services) on the system.  The library provides a stable
general interface (Application Programming Interface - API) that
privilege granting programs (such as
.BR login "(1) "
and
.BR su "(1)) "
defer to to perform standard authentication tasks.

.sp
The principal feature of the PAM approach is that the nature of the
authentication is dynamically configurable.  In other words, the
system administrator is free to choose how individual
service-providing applications will authenticate users. This dynamic
configuration is set by the contents of the single
.BR Linux-PAM
configuration file
.BR /etc/pam.conf "."
Alternatively, the configuration can be set by individual
configuration files located in the
.B /etc/pam.d/
directory.
.IB "The presence of this directory will cause " Linux-PAM " to ignore"
.BI /etc/pam.conf "."

.sp
From the point of view of the system administrator, for whom this
manual is provided, it is not of primary importance to understand the
internal behavior of the
.BR Linux-PAM
library.  The important point to recognize is that the configuration
file(s)
.I define
the connection between applications
.BR "" "(" services ")"
and the pluggable authentication modules
.BR "" "(" PAM "s)"
that perform the actual authentication tasks.

.sp
.BR Linux-PAM
separates the tasks of
.I authentication
into four independent management groups:
.BR "account" " management; "
.BR "auth" "entication management; "
.BR "password" " management; "
and
.BR "session" " management."
(We highlight the abbreviations used for these groups in the
configuration file.)

.sp
Simply put, these groups take care of different aspects of a typical
user's request for a restricted service:

.sp
.BR account " - "
provide account verification types of service: has the user's password
expired?; is this user permitted access to the requested service?

.br
.BR auth "entication - "
establish the user is who they claim to be. Typically this is via some
challenge-response request that the user must satisfy: if you are who
you claim to be please enter your password.  Not all authentications
are of this type, there exist hardware based authentication schemes
(such as the use of smart-cards and biometric devices), with suitable
modules, these may be substituted seamlessly for more standard
approaches to authentication - such is the flexibility of
.BR Linux-PAM "."

.br
.BR password " - "
this group's responsibility is the task of updating authentication
mechanisms. Typically, such services are strongly coupled to those of
the
.BR auth
group. Some authentication mechanisms lend themselves well to being
updated with such a function. Standard UN*X password-based access is
the obvious example: please enter a replacement password.

.br
.BR session " - "
this group of tasks cover things that should be done prior to a
service being given and after it is withdrawn. Such tasks include the
maintenance of audit trails and the mounting of the user's home
directory. The
.BR session
management group is important as it provides both an opening and
closing hook for modules to affect the services available to a user.

.SH The configuration file(s)

When a
.BR Linux-PAM
aware privilege granting application is started, it activates its
attachment to the PAM-API.  This activation performs a number of
tasks, the most important being the reading of the configuration file(s):
.BR /etc/pam.conf "."
Alternatively, this may be the contents of the
.BR /etc/pam.d/
directory.

These files list the
.BR PAM "s"
that will do the authentication tasks required by this service, and
the appropriate behavior of the PAM-API in the event that individual
.BR PAM "s "
fail.

.sp
The syntax of the
.B /etc/pam.conf
configuration file is as follows. The file is made
up of a list of rules, each rule is typically placed on a single line,
but may be extended with an escaped end of line: `\\<LF>'. Comments
are preceded with `#' marks and extend to the next end of line.

.sp
The format of each rule is a space separated collection of tokens, the
first three being case-insensitive:

.sp
.br
.BR "   service  type  control  module-path  module-arguments"

.sp
The syntax of files contained in the
.B /etc/pam.d/
directory, are identical except for the absence of any
.I service 
field. In this case, the
.I service
is the name of the file in the
.B /etc/pam.d/
directory. This filename must be in lower case.

.sp
An important feature of
.BR Linux-PAM ", "
is that a number of rules may be
.I stacked
to combine the services of a number of PAMs for a given authentication
task.

.sp
The
.BR service
is typically the familiar name of the corresponding application:
.BR login
and 
.BR su
are good examples. The
.BR service "-name, " other ", "
is reserved for giving
.I default
rules.  Only lines that mention the current service (or in the absence
of such, the
.BR other
entries) will be associated with the given service-application.

.sp
The
.BR type
is the management group that the rule corresponds to. It is used to
specify which of the management groups the subsequent module is to
be associated with. Valid entries are:
.BR account "; "
.BR auth "; "
.BR password "; "
and
.BR session "."
The meaning of each of these tokens was explained above.

.sp
The third field,
.BR control ", "
indicates the behavior of the PAM-API should the module fail to
succeed in its authentication task. Valid
.BR control
values are:
.BR requisite
- failure of such a PAM results in the immediate termination of the
authentication process;
.BR required
- failure of such a PAM will ultimately lead to the PAM-API returning
failure but only after the remaining
.I stacked
modules (for this
.BR service
and
.BR type ")"
have been invoked;
.BR sufficient
- success of such a module is enough to satisfy the authentication
requirements of the stack of modules (if a prior
.BR required
module has failed the success of this one is
.IR ignored "); "
.BR optional
- the success or failure of this module is only important if it is the
only module in the stack associated with this
.BR service "+" type "."

.sp
.BR module-path
- this is the full filename of the PAM to be used by the application

.sp
.BR module-arguments
- these are a space separated list of tokens that can be used to
modify the specific behavior of the given PAM. Such arguments will be
documented for each individual module.

.SH "FILES"
.BR /etc/pam.conf " - the configuration file"
.br
.BR /etc/pam.d/ " - the"
.BR Linux-PAM
configuration directory. If this directory is present, the
.B /etc/pam.conf
file is ignored.
.br
.BR /usr/lib/libpam.so.X " - the dynamic library"
.br
.BR /usr/lib/security/*.so " - the PAMs

.sp
Note, to conform to the Linux File-system standard, the libraries and
modules in your system may be located in
.BR /lib " and " /lib/security 
respectively.

.SH ERRORS
Typically errors generated by the
.BR Linux-PAM
system of libraries, will be written to
.BR syslog "(3)."

.SH "CONFORMING TO"
DCE-RFC 86.0, October 1995.
.br
Contains additional features, currently under consideration by the
DCE-RFC committee.

.SH BUGS
.sp 2
None known.

.SH "SEE ALSO"

The three
.BR Linux-PAM
Guides, for
.BR "System administrators" ", "
.BR "module developers" ", "
and
.BR "application developers" ". "