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