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