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