blob: c57d9976edcdcdda05ef7d3061a9858158e916ff [file] [log] [blame]
Eric Andersenc9f20d92002-12-05 08:41:41 +00001#
2# For a description of the syntax of this configuration file,
3# see scripts/kbuild/config-language.txt.
4#
5
6menu "Login/Password Management Utilities"
7
Denis Vlasenko7d219aa2006-10-05 10:17:08 +00008config FEATURE_SHADOWPASSWDS
Rob Landleyb9620412005-12-20 15:25:25 +00009 bool "Support for shadow passwords"
10 default n
Rob Landleyb9620412005-12-20 15:25:25 +000011 help
12 Build support for shadow password in /etc/shadow. This file is only
13 readable by root and thus the encrypted passwords are no longer
14 publicly readable.
15
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000016config USE_BB_SHADOW
Denis Vlasenko4ee7cd42008-03-17 09:13:22 +000017 bool "Use busybox shadow password functions"
Rob Landleyb9620412005-12-20 15:25:25 +000018 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000019 depends on USE_BB_PWD_GRP && FEATURE_SHADOWPASSWDS
Rob Landleyb9620412005-12-20 15:25:25 +000020 help
21 If you leave this disabled, busybox will use the system's shadow
22 password handling functions. And if you are using the GNU C library
23 (glibc), you will then need to install the /etc/nsswitch.conf
24 configuration file and the required /lib/libnss_* libraries in
25 order for the shadow password functions to work. This generally
26 makes your embedded system quite a bit larger.
27
28 Enabling this option will cause busybox to directly access the
29 system's /etc/shadow file when handling shadow passwords. This
30 makes your system smaller and I will get fewer emails asking about
31 how glibc NSS works). When this option is enabled, you will not be
32 able to use PAM to access shadow passwords from remote LDAP
33 password servers and whatnot.
34
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000035config USE_BB_PWD_GRP
Eric Andersenc9f20d92002-12-05 08:41:41 +000036 bool "Use internal password and group functions rather than system functions"
37 default n
38 help
Eric Andersendb210ae2003-07-15 07:15:03 +000039 If you leave this disabled, busybox will use the system's password
40 and group functions. And if you are using the GNU C library
41 (glibc), you will then need to install the /etc/nsswitch.conf
42 configuration file and the required /lib/libnss_* libraries in
43 order for the password and group functions to work. This generally
44 makes your embedded system quite a bit larger.
45
46 Enabling this option will cause busybox to directly access the
47 system's /etc/password, /etc/group files (and your system will be
48 smaller, and I will get fewer emails asking about how glibc NSS
49 works). When this option is enabled, you will not be able to use
50 PAM to access remote LDAP password servers and whatnot. And if you
51 want hostname resolution to work with glibc, you still need the
52 /lib/libnss_* libraries.
53
54 If you enable this option, it will add about 1.5k to busybox.
55
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000056config ADDGROUP
Eric Andersenc9f20d92002-12-05 08:41:41 +000057 bool "addgroup"
58 default n
59 help
Eric Andersene5642112003-07-14 19:37:08 +000060 Utility for creating a new group account.
Eric Andersenc9f20d92002-12-05 08:41:41 +000061
Bernhard Reutner-Fischer00c2c482007-04-05 13:16:39 +000062config FEATURE_ADDUSER_TO_GROUP
63 bool "Support for adding users to groups"
64 default n
65 depends on ADDGROUP
66 help
67 If called with two non-option arguments,
68 addgroup will add an existing user to an
69 existing group.
70
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000071config DELGROUP
Eric Andersenc9f20d92002-12-05 08:41:41 +000072 bool "delgroup"
73 default n
74 help
Eric Andersene5642112003-07-14 19:37:08 +000075 Utility for deleting a group account.
Eric Andersenc9f20d92002-12-05 08:41:41 +000076
Denis Vlasenkobe1a9d42007-04-15 08:43:23 +000077config FEATURE_DEL_USER_FROM_GROUP
78 bool "Support for removing users from groups."
79 default n
80 depends on DELGROUP
81 help
Denis Vlasenko4b924f32007-05-30 00:29:55 +000082 If called with two non-option arguments, deluser
Denis Vlasenkobe1a9d42007-04-15 08:43:23 +000083 or delgroup will remove an user from a specified group.
84
Denis Vlasenkoa7d6c8b2008-03-19 23:15:26 +000085config FEATURE_CHECK_NAMES
86 bool "Enable sanity check on user/group names in adduser and addgroup"
87 default n
88 depends on ADDUSER || ADDGROUP
89 help
90 Enable sanity check on user and group names in adduser and addgroup.
91 To avoid problems, the user or group name should consist only of
92 letters, digits, underscores, periods, at signs and dashes,
93 and not start with a dash (as defined by IEEE Std 1003.1-2001).
94 For compatibility with Samba machine accounts "$" is also supported
95 at the end of the user or group name.
96
Denis Vlasenko7d219aa2006-10-05 10:17:08 +000097config ADDUSER
Eric Andersenc9f20d92002-12-05 08:41:41 +000098 bool "adduser"
99 default n
100 help
Eric Andersene5642112003-07-14 19:37:08 +0000101 Utility for creating a new user account.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000102
Denis Vlasenko753f42a2008-02-15 15:17:23 +0000103config FEATURE_ADDUSER_LONG_OPTIONS
104 bool "Enable long options"
105 default n
106 depends on ADDUSER && GETOPT_LONG
107 help
108 Support long options for the adduser applet.
109
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000110config DELUSER
Eric Andersenc9f20d92002-12-05 08:41:41 +0000111 bool "deluser"
112 default n
113 help
Eric Andersene5642112003-07-14 19:37:08 +0000114 Utility for deleting a user account.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000115
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000116config GETTY
Eric Andersenc9f20d92002-12-05 08:41:41 +0000117 bool "getty"
118 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000119 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000120 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000121 getty lets you log in on a tty, it is normally invoked by init.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000122
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000123config FEATURE_UTMP
Rob Landley2ec922e2006-04-13 23:22:16 +0000124 bool "Support utmp file"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000125 depends on GETTY || LOGIN || SU || WHO
Eric Andersenaad29b32004-07-30 17:24:47 +0000126 default n
127 help
Mike Frysinger8deb6862005-07-01 01:04:32 +0000128 The file /var/run/utmp is used to track who is currently logged in.
129
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000130config FEATURE_WTMP
Rob Landley2ec922e2006-04-13 23:22:16 +0000131 bool "Support wtmp file"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000132 depends on GETTY || LOGIN || SU || LAST
Mike Frysinger8deb6862005-07-01 01:04:32 +0000133 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000134 select FEATURE_UTMP
Mike Frysinger8deb6862005-07-01 01:04:32 +0000135 help
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000136 The file /var/run/wtmp is used to track when user's have logged into
Mike Frysinger8deb6862005-07-01 01:04:32 +0000137 and logged out of the system.
Eric Andersenaad29b32004-07-30 17:24:47 +0000138
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000139config LOGIN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000140 bool "login"
141 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000142 select FEATURE_SUID
143 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000144 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000145 login is used when signing onto a system.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000146
Eric Andersen13879102004-08-26 23:13:00 +0000147 Note that Busybox binary must be setuid root for this applet to
148 work properly.
149
Denis Vlasenkod6e81c72007-08-21 10:58:18 +0000150config PAM
151 bool "Support for PAM (Pluggable Authentication Modules)"
152 default n
153 depends on LOGIN
154 help
155 Use PAM in login(1) instead of direct access to password database.
156
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000157config LOGIN_SCRIPTS
Denis Vlasenko2e502912006-09-08 17:22:45 +0000158 bool "Support for login scripts"
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000159 depends on LOGIN
Denis Vlasenko2e502912006-09-08 17:22:45 +0000160 default n
161 help
162 Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
Bernhard Reutner-Fischer7627cc12006-11-22 18:21:08 +0000163 just prior to switching from root to logged-in user.
Denis Vlasenko2e502912006-09-08 17:22:45 +0000164
Denis Vlasenkof312e322007-06-12 22:04:57 +0000165config FEATURE_NOLOGIN
166 bool "Support for /etc/nologin"
167 default y
168 depends on LOGIN
169 help
170 The file /etc/nologin is used by (some versions of) login(1).
171 If it exists, non-root logins are prohibited.
172
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000173config FEATURE_SECURETTY
Rob Landley2ec922e2006-04-13 23:22:16 +0000174 bool "Support for /etc/securetty"
Eric Andersenc9f20d92002-12-05 08:41:41 +0000175 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000176 depends on LOGIN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000177 help
Denis Vlasenkof312e322007-06-12 22:04:57 +0000178 The file /etc/securetty is used by (some versions of) login(1).
Eric Andersen88c916b2003-10-22 09:58:56 +0000179 The file contains the device names of tty lines (one per line,
180 without leading /dev/) on which root is allowed to login.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000181
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000182config PASSWD
Eric Andersenc9f20d92002-12-05 08:41:41 +0000183 bool "passwd"
184 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000185 select FEATURE_SUID
186 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000187 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000188 passwd changes passwords for user and group accounts. A normal user
189 may only change the password for his/her own account, the super user
190 may change the password for any account. The administrator of a group
Eric Andersene5642112003-07-14 19:37:08 +0000191 may change the password for the group.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000192
Eric Andersen13879102004-08-26 23:13:00 +0000193 Note that Busybox binary must be setuid root for this applet to
194 work properly.
195
Denis Vlasenko8eb3b392006-12-19 00:33:53 +0000196config FEATURE_PASSWD_WEAK_CHECK
197 bool "Check new passwords for weakness"
198 default y
199 depends on PASSWD
200 help
201 With this option passwd will refuse new passwords which are "weak".
202
Denis Vlasenko7e84e532007-05-08 17:52:17 +0000203config CRYPTPW
204 bool "cryptpw"
205 default n
206 help
207 Applet for crypting a string.
208
Denis Vlasenko21d10142007-07-20 21:28:41 +0000209config CHPASSWD
210 bool "chpasswd"
211 default n
212 help
213 chpasswd reads a file of user name and password pairs from
214 standard input and uses this information to update a group of
215 existing users.
216
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000217config SU
Eric Andersenc9f20d92002-12-05 08:41:41 +0000218 bool "su"
219 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000220 select FEATURE_SUID
221 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000222 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000223 su is used to become another user during a login session.
224 Invoked without a username, su defaults to becoming the super user.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000225
Eric Andersen13879102004-08-26 23:13:00 +0000226 Note that Busybox binary must be setuid root for this applet to
227 work properly.
228
Bernhard Reutner-Fischer359d7ca2006-12-19 08:55:38 +0000229config FEATURE_SU_SYSLOG
Denis Vlasenko15b213e2006-12-19 00:20:20 +0000230 bool "Enable su to write to syslog"
Rob Landley3bfcf3c2006-07-10 03:05:46 +0000231 default y
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000232 depends on SU
Denis Vlasenko15b213e2006-12-19 00:20:20 +0000233
234config FEATURE_SU_CHECKS_SHELLS
235 bool "Enable su to check user's shell to be listed in /etc/shells"
236 depends on SU
237 default y
Rob Landley3bfcf3c2006-07-10 03:05:46 +0000238
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000239config SULOGIN
Eric Andersenc9f20d92002-12-05 08:41:41 +0000240 bool "sulogin"
241 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000242 select FEATURE_SYSLOG
Eric Andersenc9f20d92002-12-05 08:41:41 +0000243 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000244 sulogin is invoked when the system goes into single user
Eric Andersene5642112003-07-14 19:37:08 +0000245 mode (this is done through an entry in inittab).
Eric Andersenc9f20d92002-12-05 08:41:41 +0000246
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000247config VLOCK
Eric Andersenc9f20d92002-12-05 08:41:41 +0000248 bool "vlock"
249 default n
Denis Vlasenko7d219aa2006-10-05 10:17:08 +0000250 select FEATURE_SUID
Eric Andersenc9f20d92002-12-05 08:41:41 +0000251 help
Eric Andersen88c916b2003-10-22 09:58:56 +0000252 Build the "vlock" applet which allows you to lock (virtual) terminals.
Eric Andersenc9f20d92002-12-05 08:41:41 +0000253
Eric Andersen13879102004-08-26 23:13:00 +0000254 Note that Busybox binary must be setuid root for this applet to
255 work properly.
256
Eric Andersenc9f20d92002-12-05 08:41:41 +0000257endmenu
258