login.conf.5: Add sha256/sha512
[dragonfly.git] / lib / libutil / login.conf.5
1 .\" Copyright (c) 1996 David Nugent <davidn@blaze.net.au>
2 .\" All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, is permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice immediately at the beginning of the file, without modification,
9 .\"    this list of conditions, and the following disclaimer.
10 .\" 2. Redistributions in binary form must reproduce the above copyright
11 .\"    notice, this list of conditions and the following disclaimer in the
12 .\"    documentation and/or other materials provided with the distribution.
13 .\" 3. This work was done expressly for inclusion into FreeBSD.  Other use
14 .\"    is permitted provided this notation is included.
15 .\" 4. Absolutely no warranty of function or purpose is made by the author
16 .\"    David Nugent.
17 .\" 5. Modifications may be freely made to this file providing the above
18 .\"    conditions are met.
19 .\"
20 .\" $FreeBSD: src/lib/libutil/login.conf.5,v 1.22.2.18 2003/05/10 23:30:54 murray Exp $
21 .\"
22 .Dd January 21, 2012
23 .Dt LOGIN.CONF 5
24 .Os
25 .Sh NAME
26 .Nm login.conf
27 .Nd login class capability database
28 .Sh SYNOPSIS
29 .Pa /etc/login.conf ,
30 .Pa ~/.login_conf
31 .Sh DESCRIPTION
32 .Nm
33 contains various attributes and capabilities of login classes.
34 A login class (an optional annotation against each record in the user
35 account database,
36 .Pa /etc/master.passwd )
37 determines session accounting, resource limits and user environment settings.
38 It is used by various programs in the system to set up a user's login
39 environment and to enforce policy, accounting and administrative restrictions.
40 It also provides the means by which users are able to be
41 authenticated to the system and the types of authentication available.
42 .Pp
43 A special record "default" in the system user class capability database
44 .Pa /etc/login.conf
45 is used automatically for any
46 non-root user without a valid login class in
47 .Pa /etc/master.passwd .
48 A user with a uid of 0 without a valid login class will use the record
49 "root" if it exists, or "default" if not.
50 .Pp
51 In
52 .Dx ,
53 users may individually create a file called
54 .Pa .login_conf
55 in their home directory using the same format, consisting of a single
56 entry with a record id of "me".
57 If present, this file is used by
58 .Xr login 1
59 to set user-defined environment settings which override those specified
60 in the system login capabilities database.
61 Only a subset of login capabilities may be overridden, typically those
62 which do not involve authentication, resource limits and accounting.
63 .Pp
64 Records in a class capabilities database consist of a number of
65 colon-separated fields.
66 The first entry for each record gives one or more names that a record is
67 to be known by, each separated by a '|' character.
68 The first name is the most common abbreviation.
69 The last name given should be a long name that is more descriptive
70 of the capability entry, and all others are synonyms.
71 All names but the last should be in lower case and contain no blanks;
72 the last name may contain upper case characters and blanks for
73 readability.
74 .Pp
75 See
76 .Xr getcap 3
77 for a more in-depth description of the format of a capability database.
78 .Sh CAPABILITIES
79 Fields within each record in the database follow the
80 .Xr getcap 3
81 conventions for boolean, type string
82 .Ql \&=
83 and type numeric
84 .Ql \&# ,
85 although type numeric is deprecated in favour of the string format and
86 either form is accepted for a numeric datum.
87 Values fall into the following categories:
88 .Bl -tag -width "program"
89 .It bool
90 If the name is present, then the boolean value is true; otherwise, it is
91 false
92 .It file
93 Path name to a data file
94 .It program
95 Path name to an executable file
96 .It list
97 A list of values (or pairs of values) separated by commas or spaces
98 .It path
99 A space or comma separated list of path names, following the usual csh
100 conventions (leading tilde with and without username being expanded to
101 home directories etc.)
102 .It number
103 A numeric value, either decimal (default), hexadecimal (with leading 0x),
104 or octal (with a leading 0).
105 With a numeric type, only one numeric value is allowed.
106 Numeric types may also be specified in string format (ie. the capability
107 tag being delimited from the value by '=' instead of '#').
108 Whichever method is used, then all records in the database must use the
109 same method to allow values to be correctly overridden in interpolated
110 records.
111 .It size
112 A number which expresses a size.
113 The default interpretation of a value is the number of bytes, but a
114 suffix may specify alternate units:
115 .Bl -tag -offset indent -compact -width xxxx
116 .It b
117 explicitly selects 512-byte blocks
118 .It k
119 selects kilobytes (1024 bytes)
120 .It m
121 specifies a multiplier of 1 megabyte (1048576 bytes),
122 .It g
123 specifies units of gigabytes, and
124 .It t
125 represents terabytes.
126 .El
127 A size value is a numeric quantity and case of the suffix is not significant.
128 Concatenated values are added together.
129 .It time
130 A period of time, by default in seconds.
131 A prefix may specify a different unit:
132 .Bl -tag -offset indent -compact -width xxxx
133 .It y
134 indicates the number of 365 day years,
135 .It w
136 indicates the number of weeks,
137 .It d
138 the number of days,
139 .It h
140 the number of hours,
141 .It m
142 the number of minutes, and
143 .It s
144 the number of seconds.
145 .El
146 Concatenated values are added together.
147 For example, 2 hours and 40 minutes may be written either as
148 9600s, 160m or 2h40m.
149 .El
150 .Pp
151 The usual convention to interpolate capability entries using the special
152 .Em tc=value
153 notation may be used.
154 .Sh RESOURCE LIMITS
155 .Bl -column coredumpsize indent indent
156 .It Sy Name Ta Sy Type Ta Sy Notes Ta Sy Description
157 .It coredumpsize        size            Maximum coredump size limit.
158 .It cputime     time            CPU usage limit.
159 .It datasize    size            Maximum data size limit.
160 .It filesize    size            Maximum file size limit.
161 .It maxproc     number          Maximum number of processes.
162 .It memorylocked        size            Maximum locked in core memory size limit.
163 .It memoryuse   size            Maximum of core memory use size limit.
164 .It openfiles   number          Maximum number of open files per process.
165 .It sbsize      size            Maximum permitted socketbuffer size.
166 .It vmemoryuse  size            Maximum permitted total VM usage per process.
167 .It stacksize   size            Maximum stack size limit.
168 .It posixlocks  size            Maximum number of POSIX-type advisory-mode locks.
169 .El
170 .Pp
171 These resource limit entries actually specify both the maximum
172 and current limits (see
173 .Xr getrlimit 2 ) .
174 The current (soft) limit is the one normally used, although the user is
175 permitted to increase the current limit to the maximum (hard) limit.
176 The maximum and current limits may be specified individually by appending a
177 -max or -cur to the capability name.
178 .Sh ENVIRONMENT
179 .Bl -column ignorenologin indent xbinxxusrxbin
180 .It Sy Name Ta Sy Type Ta Sy Notes Ta Sy Description
181 .It charset     string          Set $MM_CHARSET environment variable to the specified
182 value.
183 .It hushlogin   bool    false   Same as having a ~/.hushlogin file.
184 .It ignorenologin       bool    false   Login not prevented by nologin.
185 .It lang        string          Set $LANG environment variable to the specified value.
186 .It manpath     path            Default search path for manpages.
187 .It nologin     file            If the file exists it will be displayed and
188 the login session will be terminated.
189 .It path        path    /bin /usr/bin   Default search path.
190 .It priority    number          Initial priority (nice) level.
191 .It requirehome         bool    false   Require a valid home directory to login.
192 .It setenv      list            A comma-separated list of environment variables and
193 values to which they are to be set.
194 .It shell       prog            Session shell to execute rather than the
195 shell specified in the passwd file.
196 The SHELL environment variable will
197 contain the shell specified in the password file.
198 .It term        string          Default terminal type if not able to determine
199 from other means.
200 .It timezone    string          Default value of $TZ environment variable.
201 .It umask       number  022     Initial umask. Should always have a leading 0 to
202 ensure octal interpretation.
203 .It welcome     file    /etc/motd       File containing welcome message.
204 .El
205 .Sh AUTHENTICATION
206 .Bl -column minpasswordlen indent indent
207 .It Sy Name Ta Sy Type Ta Sy Notes Ta Sy Description
208 .\" .It approve program         Program to approve login.
209 .It copyright   file            File containing additional copyright information
210 .It host.allow  list            List of remote host wildcards from which users in
211 the class may access.
212 .It host.deny   list            List of remote host wildcards from which users
213 in the class may not access.
214 .It login_prompt        string          The login prompt given by
215 .Xr login 1
216 .It minpasswordlen      number  6       The minimum length a local password
217 may be.
218 .It mixpasswordcase     bool    true    Whether
219 .Xr passwd 1
220 will warn the user if an all lower case password is entered.
221 .It login-backoff       number  3       The number of login attempts
222 allowed before the backoff delay is inserted after each subsequent
223 attempt.
224 .It login-retries       number  10      The number of login attempts
225 allowed before the login fails.
226 .It passwd_format       string  sha512  The encryption format that new or
227 changed passwords will use.
228 Valid values include "des", "md5", "blf", "sha256" and "sha512".
229 See
230 .Xr crypt 3 .
231 NIS clients using a
232 .No non- Ns Dx Ns / Ns Fx
233 NIS server should probably use "des".
234 .It passwd_prompt       string          The password prompt presented by
235 .Xr login 1
236 .It times.allow         list            List of time periods during which
237 logins are allowed.
238 .It times.deny  list            List of time periods during which logins are
239 disallowed.
240 .It ttys.allow  list            List of ttys and ttygroups which users
241 in the class may use for access.
242 .It ttys.deny   list            List of ttys and ttygroups which users
243 in the class may not use for access.
244 .\".It widepasswords    bool    false   Use the wide password format. The wide password
245 .\" format allows up to 128 significant characters in the password.
246 .El
247 .Pp
248 These fields are intended to be used by
249 .Xr passwd 1
250 and other programs in the login authentication system.
251 .Pp
252 Capabilities that set environment variables are scanned for both
253 .Ql \&~
254 and
255 .Ql \&$
256 characters, which are substituted for a user's home directory and name
257 respectively.
258 To pass these characters literally into the environment variable, escape
259 the character by preceding it with a backslash '\\'.
260 .Pp
261 The
262 .Em host.allow
263 and
264 .Em host.deny
265 entries are comma separated lists used for checking remote access to the system,
266 and consist of a list of hostnames and/or IP addresses against which remote
267 network logins are checked.
268 Items in these lists may contain wildcards in the form used by shell programs
269 for wildcard matching (See
270 .Xr fnmatch 3
271 for details on the implementation).
272 The check on hosts is made against both the remote system's Internet address
273 and hostname (if available).
274 If both lists are empty or not specified, then logins from any remote host
275 are allowed.
276 If host.allow contains one or more hosts, then only remote systems matching
277 any of the items in that list are allowed to log in.
278 If host.deny contains one or more hosts, then a login from any matching hosts
279 will be disallowed.
280 .Pp
281 The
282 .Em times.allow
283 and
284 .Em times.deny
285 entries consist of a comma-separated list of time periods during which the users
286 in a class are allowed to be logged in.
287 These are expressed as one or more day codes followed by a start and end times
288 expressed in 24 hour format, separated by a hyphen or dash.
289 For example, MoThSa0200-1300 translates to Monday, Thursday and Saturday between
290 the hours of 2 am and 1 p.m..
291 If both of these time lists are empty, users in the class are allowed access at
292 any time.
293 If
294 .Em times.allow
295 is specified, then logins are only allowed during the periods given.
296 If
297 .Em times.deny
298 is specified, then logins are denied during the periods given, regardless of whether
299 one of the periods specified in
300 .Em times.allow
301 applies.
302 .Pp
303 Note that
304 .Xr login 1
305 enforces only that the actual login falls within periods allowed by these entries.
306 Further enforcement over the life of a session requires a separate daemon to
307 monitor transitions from an allowed period to a non-allowed one.
308 .Pp
309 The
310 .Em ttys.allow
311 and
312 .Em ttys.deny
313 entries contain a comma-separated list of tty devices (without the /dev/ prefix)
314 that a user in a class may use to access the system, and/or a list of ttygroups
315 (See
316 .Xr getttyent 3
317 and
318 .Xr ttys 5
319 for information on ttygroups).
320 If neither entry exists, then the choice of login device used by the user is
321 unrestricted.
322 If only
323 .Em ttys.allow
324 is specified, then the user is restricted only to ttys in the given
325 group or device list.
326 If only
327 .Em ttys.deny
328 is specified, then the user is prevented from using the specified devices or
329 devices in the group.
330 If both lists are given and are non-empty, the user is restricted to those
331 devices allowed by ttys.allow that are not available by ttys.deny.
332 .Sh ACCOUNTING LIMITS
333 .Bl -column host.accounted indent indent
334 .It Sy Name Ta Sy Type Ta Sy Notes Ta Sy Description
335 .It accounted   bool    false   Enable session time accounting for all users
336 in this class.
337 .It autodelete  time            Time after expiry when account is auto-deleted.
338 .It bootfull    bool    false   Enable 'boot only if ttygroup is full' strategy
339 when terminating sessions.
340 .It daytime     time            Maximum login time per day.
341 .It expireperiod        time            Time for expiry allocation.
342 .It graceexpire         time            Grace days for expired account.
343 .It gracetime   time            Additional grace login time allowed.
344 .It host.accounted      list            List of remote host wildcards from which
345 login sessions will be accounted.
346 .It host.exempt         list            List of remote host wildcards from which
347 login session accounting is exempted.
348 .It idletime    time            Maximum idle time before logout (unused).
349 .It monthtime   time            Maximum login time per month.
350 .It passwordtime        time            Used by
351 .Xr passwd 1
352 to set next password expiry date.
353 .It refreshtime         time            New time allowed on account refresh.
354 .It refreshperiod       str             How often account time is refreshed.
355 .It sessiontime         time            Maximum login time per session.
356 .It sessionlimit        number          Maximum number of concurrent
357 login sessions on ttys in any group.
358 .It ttys.accounted      list            List of ttys and ttygroups for which
359 login accounting is active.
360 .It ttys.exempt list            List of ttys and ttygroups for which login accounting
361 is exempt.
362 .It warnexpire  time            Advance notice for pending account expiry.
363 .It warnpassword        time            Advance notice for pending password expiry.
364 .It warntime    time            Advance notice for pending out-of-time.
365 .It weektime    time            Maximum login time per week.
366 .El
367 .Pp
368 These fields are used by the time accounting system, which regulates,
369 controls and records user login access.
370 .Pp
371 The
372 .Em ttys.accounted
373 and
374 .Em ttys.exempt
375 fields operate in a similar manner to
376 .Em ttys.allow
377 and
378 .Em ttys.deny
379 as explained
380 above.
381 Similarly with the
382 .Em host.accounted
383 and
384 .Em host.exempt
385 lists.
386 .Sh SEE ALSO
387 .Xr cap_mkdb 1 ,
388 .Xr login 1 ,
389 .Xr crypt 3 ,
390 .Xr getcap 3 ,
391 .Xr getttyent 3 ,
392 .Xr login_cap 3 ,
393 .Xr login_class 3 ,
394 .Xr passwd 5 ,
395 .Xr ttys 5
396 .Sh BUGS
397 The
398 .Em idletime
399 setting is not enforced.