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