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