]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libutil/login.conf.5
Update llvm, clang and lldb to 3.7.0 release.
[FreeBSD/FreeBSD.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$
21 .\"
22 .Dd July 8, 2011
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 Attributes in addition to the ones described here are available with
43 third-party packages.
44 .Pp
45 A special record "default" in the system user class capability database
46 .Pa /etc/login.conf
47 is used automatically for any
48 non-root user without a valid login class in
49 .Pa /etc/master.passwd .
50 A user with a uid of 0 without a valid login class will use the record
51 "root" if it exists, or "default" if not.
52 .Pp
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 Note that since a colon
76 .Pq Ql :\&
77 is used to separate capability entries, a
78 .Ql \ec
79 escape sequence must be used to embed a literal colon in the
80 value or name of a capability.
81 .Pp
82 The default
83 .Pa /etc/login.conf
84 shipped with
85 .Fx
86 is an out of the box configuration.
87 Whenever changes to this, or
88 the user's
89 .Pa ~/.login_conf ,
90 file are made, the modifications will not be picked up until
91 .Xr cap_mkdb 1
92 is used to compile the file into a database.
93 This database file will have a
94 .Pa .db
95 extension and is accessed through
96 .Xr cgetent 3 .
97 See
98 .Xr getcap 3
99 for a more in-depth description of the format of a capability database.
100 .Sh CAPABILITIES
101 Fields within each record in the database follow the
102 .Xr getcap 3
103 conventions for boolean, type string
104 .Ql \&=
105 and type numeric
106 .Ql \&# ,
107 although type numeric is deprecated in favour of the string format and
108 either form is accepted for a numeric datum.
109 Values fall into the following categories:
110 .Bl -tag -width "program"
111 .It bool
112 If the name is present, then the boolean value is true; otherwise, it is
113 false
114 .It file
115 Path name to a data file
116 .It program
117 Path name to an executable file
118 .It list
119 A list of values (or pairs of values) separated by commas or spaces
120 .It path
121 A space or comma separated list of path names, following the usual csh
122 conventions (leading tilde with and without username being expanded to
123 home directories etc.)
124 .It number
125 A numeric value, either decimal (default), hexadecimal (with leading 0x),
126 or octal (with a leading 0).
127 With a numeric type, only one numeric value is allowed.
128 Numeric types may also be specified in string format (i.e., the capability
129 tag being delimited from the value by '=' instead of '#').
130 Whichever method is used, then all records in the database must use the
131 same method to allow values to be correctly overridden in interpolated
132 records.
133 A numeric value may be infinite.
134 .It size
135 A number which expresses a size.
136 The default interpretation of a value is the number of bytes, but a
137 suffix may specify alternate units:
138 .Bl -tag -offset indent -compact -width xxxx
139 .It b
140 explicitly selects 512-byte blocks
141 .It k
142 selects kilobytes (1024 bytes)
143 .It m
144 specifies a multiplier of 1 megabyte (1048576 bytes),
145 .It g
146 specifies units of gigabytes, and
147 .It t
148 represents terabytes.
149 .El
150 A size value is a numeric quantity and case of the suffix is not significant.
151 Concatenated values are added together.
152 A size value may be infinite.
153 .It time
154 A period of time, by default in seconds.
155 A prefix may specify a different unit:
156 .Bl -tag -offset indent -compact -width xxxx
157 .It y
158 indicates the number of 365 day years,
159 .It w
160 indicates the number of weeks,
161 .It d
162 the number of days,
163 .It h
164 the number of hours,
165 .It m
166 the number of minutes, and
167 .It s
168 the number of seconds.
169 .El
170 Concatenated values are added together.
171 For example, 2 hours and 40 minutes may be written either as
172 9600s, 160m or 2h40m.
173 A time value may be infinite.
174 .El
175 .Pp
176 .Dq infinity ,
177 .Dq inf ,
178 .Dq unlimited ,
179 .Dq unlimit,
180 and -1
181 are considered infinite values.
182 .Pp
183 The usual convention to interpolate capability entries using the special
184 .Em tc=value
185 notation may be used.
186 .Sh RESOURCE LIMITS
187 .Bl -column pseudoterminals indent indent
188 .It Sy "Name    Type    Notes   Description"
189 .It "coredumpsize       size            Maximum coredump size limit."
190 .It "cputime    time            CPU usage limit."
191 .It "datasize   size            Maximum data size limit."
192 .It "filesize   size            Maximum file size limit."
193 .It "maxproc    number          Maximum number of processes."
194 .It "memorylocked       size            Maximum locked in core memory size limit."
195 .It "memoryuse  size            Maximum of core memory use size limit."
196 .It "openfiles  number          Maximum number of open files per process."
197 .It "sbsize     size            Maximum permitted socketbuffer size."
198 .It "vmemoryuse size            Maximum permitted total VM usage per process."
199 .It "stacksize  size            Maximum stack size limit."
200 .It "pseudoterminals    number          Maximum number of pseudo-terminals."
201 .It "swapuse    size            Maximum swap space size limit."
202 .El
203 .Pp
204 These resource limit entries actually specify both the maximum
205 and current limits (see
206 .Xr getrlimit 2 ) .
207 The current (soft) limit is the one normally used, although the user is
208 permitted to increase the current limit to the maximum (hard) limit.
209 The maximum and current limits may be specified individually by appending a
210 -max or -cur to the capability name.
211 .Sh ENVIRONMENT
212 .Bl -column ignorenologin indent xbinxxusrxbin
213 .It Sy "Name    Type    Notes   Description"
214 .It "charset    string          Set $MM_CHARSET environment variable to the specified"
215 value.
216 .It "cpumask    string          List of cpus to bind the user to."
217 The syntax is the same as for the
218 .Fl l
219 argument of
220 .Xr cpuset 1
221 or the word
222 .Ql default .
223 If set to
224 .Ql default
225 no action is taken.
226 .It "hushlogin  bool    false   Same as having a ~/.hushlogin file."
227 .It "ignorenologin      bool    false   Login not prevented by nologin."
228 .It "ftp-chroot bool    false   Limit FTP access with"
229 .Xr chroot 2
230 to the
231 .Ev HOME
232 directory of the user.
233 See
234 .Xr ftpd 8
235 for details.
236 .It "label      string          Default MAC policy; see"
237 .Xr maclabel 7 .
238 .It "lang       string          Set $LANG environment variable to the specified value."
239 .It "manpath    path            Default search path for manpages."
240 .It "nocheckmail        bool    false   Display mail status at login."
241 .It "nologin    file            If the file exists it will be displayed and"
242 the login session will be terminated.
243 .It "path       path    /bin /usr/bin   Default search path."
244 .It "priority   number          Initial priority (nice) level."
245 .It "requirehome        bool    false   Require a valid home directory to login."
246 .It "setenv     list            A comma-separated list of environment variables and"
247 values to which they are to be set.
248 .It "shell      prog            Session shell to execute rather than the"
249 shell specified in the passwd file.
250 The SHELL environment variable will
251 contain the shell specified in the password file.
252 .It "term       string          Default terminal type if not able to determine"
253 from other means.
254 .It "timezone   string          Default value of $TZ environment variable."
255 .It "umask      number  022     Initial umask. Should always have a leading 0 to"
256 ensure octal interpretation.
257 .It "welcome    file    /etc/motd       File containing welcome message."
258 .El
259 .Sh AUTHENTICATION
260 .Bl -column passwd_prompt indent indent
261 .It Sy "Name    Type    Notes   Description"
262 .\" .It "approve        program         Program to approve login.
263 .It "copyright  file            File containing additional copyright information"
264 .It "host.allow list            List of remote host wildcards from which users in"
265 the class may access.
266 .It "host.deny  list            List of remote host wildcards from which users"
267 in the class may not access.
268 .It "login_prompt       string          The login prompt given by"
269 .Xr login 1
270 .It "login-backoff      number  3       The number of login attempts"
271 allowed before the backoff delay is inserted after each subsequent
272 attempt.
273 The backoff delay is the number of tries above
274 .Em login-backoff
275 multiplied by 5 seconds.
276 .It "login-retries      number  10      The number of login attempts"
277 allowed before the login fails.
278 .It "passwd_format      string  sha512  The encryption format that new or"
279 changed passwords will use.
280 Valid values include "des", "md5", "blf", "sha256" and "sha512"; see
281 .Xr crypt 3
282 for details.
283 NIS clients using a
284 .No non- Ns Fx
285 NIS server should probably use "des".
286 .It "passwd_prompt      string          The password prompt presented by"
287 .Xr login 1
288 .It "times.allow        list            List of time periods during which"
289 logins are allowed.
290 .It "times.deny list            List of time periods during which logins are"
291 disallowed.
292 .It "ttys.allow list            List of ttys and ttygroups which users"
293 in the class may use for access.
294 .It "ttys.deny  list            List of ttys and ttygroups which users"
295 in the class may not use for access.
296 .It "warnexpire time            Advance notice for pending account expiry."
297 .It "warnpassword       time            Advance notice for pending password expiry."
298 .\".It "widepasswords   bool    false   Use the wide password format. The wide password
299 .\" format allows up to 128 significant characters in the password.
300 .El
301 .Pp
302 These fields are intended to be used by
303 .Xr passwd 1
304 and other programs in the login authentication system.
305 .Pp
306 Capabilities that set environment variables are scanned for both
307 .Ql \&~
308 and
309 .Ql \&$
310 characters, which are substituted for a user's home directory and name
311 respectively.
312 To pass these characters literally into the environment variable, escape
313 the character by preceding it with a backslash '\\'.
314 .Pp
315 The
316 .Em host.allow
317 and
318 .Em host.deny
319 entries are comma separated lists used for checking remote access to the system,
320 and consist of a list of hostnames and/or IP addresses against which remote
321 network logins are checked.
322 Items in these lists may contain wildcards in the form used by shell programs
323 for wildcard matching (See
324 .Xr fnmatch 3
325 for details on the implementation).
326 The check on hosts is made against both the remote system's Internet address
327 and hostname (if available).
328 If both lists are empty or not specified, then logins from any remote host
329 are allowed.
330 If host.allow contains one or more hosts, then only remote systems matching
331 any of the items in that list are allowed to log in.
332 If host.deny contains one or more hosts, then a login from any matching hosts
333 will be disallowed.
334 .Pp
335 The
336 .Em times.allow
337 and
338 .Em times.deny
339 entries consist of a comma-separated list of time periods during which the users
340 in a class are allowed to be logged in.
341 These are expressed as one or more day codes followed by a start and end times
342 expressed in 24 hour format, separated by a hyphen or dash.
343 For example, MoThSa0200-1300 translates to Monday, Thursday and Saturday between
344 the hours of 2 am and 1 p.m..
345 If both of these time lists are empty, users in the class are allowed access at
346 any time.
347 If
348 .Em times.allow
349 is specified, then logins are only allowed during the periods given.
350 If
351 .Em times.deny
352 is specified, then logins are denied during the periods given, regardless of whether
353 one of the periods specified in
354 .Em times.allow
355 applies.
356 .Pp
357 Note that
358 .Xr login 1
359 enforces only that the actual login falls within periods allowed by these entries.
360 Further enforcement over the life of a session requires a separate daemon to
361 monitor transitions from an allowed period to a non-allowed one.
362 .Pp
363 The
364 .Em ttys.allow
365 and
366 .Em ttys.deny
367 entries contain a comma-separated list of tty devices (without the /dev/ prefix)
368 that a user in a class may use to access the system, and/or a list of ttygroups
369 (See
370 .Xr getttyent 3
371 and
372 .Xr ttys 5
373 for information on ttygroups).
374 If neither entry exists, then the choice of login device used by the user is
375 unrestricted.
376 If only
377 .Em ttys.allow
378 is specified, then the user is restricted only to ttys in the given
379 group or device list.
380 If only
381 .Em ttys.deny
382 is specified, then the user is prevented from using the specified devices or
383 devices in the group.
384 If both lists are given and are non-empty, the user is restricted to those
385 devices allowed by ttys.allow that are not available by ttys.deny.
386 .Pp
387 The
388 .Em minpasswordlen
389 and
390 .Em minpasswordcase
391 facilities for enforcing restrictions on password quality, which used
392 to be supported by
393 .Nm ,
394 have been superseded by the
395 .Xr pam_passwdqc 8
396 PAM module.
397 .Sh RESERVED CAPABILITIES
398 The following capabilities are reserved for the purposes indicated and
399 may be supported by third-party software.
400 They are not implemented in the base system.
401 .Bl -column host.accounted indent indent
402 .It Sy "Name    Type    Notes   Description"
403 .It "accounted  bool    false   Enable session time accounting for all users"
404 in this class.
405 .It "auth       list    passwd  Allowed authentication styles."
406 The first item is the default style.
407 .It "auth-" Ns Ar type Ta "list         Allowed authentication styles for the"
408 authentication
409 .Ar type .
410 .It "autodelete time            Time after expiry when account is auto-deleted."
411 .It "bootfull   bool    false   Enable 'boot only if ttygroup is full' strategy"
412 when terminating sessions.
413 .It "daytime    time            Maximum login time per day."
414 .It "expireperiod       time            Time for expiry allocation."
415 .It "graceexpire        time            Grace days for expired account."
416 .It "gracetime  time            Additional grace login time allowed."
417 .It "host.accounted     list            List of remote host wildcards from which"
418 login sessions will be accounted.
419 .It "host.exempt        list            List of remote host wildcards from which"
420 login session accounting is exempted.
421 .It "idletime   time            Maximum idle time before logout."
422 .It "minpasswordlen     number  6       The minimum length a local"
423 password may be.
424 .It "mixpasswordcase    bool    true    Whether"
425 .Xr passwd 1
426 will warn the user if an all lower case password is entered.
427 .It "monthtime  time            Maximum login time per month."
428 .It "passwordtime       time            Used by"
429 .Xr passwd 1
430 to set next password expiry date.
431 .It "refreshtime        time            New time allowed on account refresh."
432 .It "refreshperiod      str             How often account time is refreshed."
433 .It "sessiontime        time            Maximum login time per session."
434 .It "sessionlimit       number          Maximum number of concurrent"
435 login sessions on ttys in any group.
436 .It "ttys.accounted     list            List of ttys and ttygroups for which"
437 login accounting is active.
438 .It "ttys.exempt        list            List of ttys and ttygroups for which login accounting"
439 is exempt.
440 .It "warntime   time            Advance notice for pending out-of-time."
441 .It "weektime   time            Maximum login time per week."
442 .El
443 .Pp
444 The
445 .Em ttys.accounted
446 and
447 .Em ttys.exempt
448 fields operate in a similar manner to
449 .Em ttys.allow
450 and
451 .Em ttys.deny
452 as explained
453 above.
454 Similarly with the
455 .Em host.accounted
456 and
457 .Em host.exempt
458 lists.
459 .Sh SEE ALSO
460 .Xr cap_mkdb 1 ,
461 .Xr login 1 ,
462 .Xr chroot 2 ,
463 .Xr getcap 3 ,
464 .Xr getttyent 3 ,
465 .Xr login_cap 3 ,
466 .Xr login_class 3 ,
467 .Xr pam 3 ,
468 .Xr passwd 5 ,
469 .Xr ttys 5 ,
470 .Xr ftpd 8 ,
471 .Xr pam_passwdqc 8