2002-12-05 14:11:41 +05:30
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see scripts/kbuild/config-language.txt.
|
|
|
|
#
|
|
|
|
|
|
|
|
menu "Login/Password Management Utilities"
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_SHADOWPASSWDS
|
2005-12-20 20:55:25 +05:30
|
|
|
bool "Support for shadow passwords"
|
|
|
|
default n
|
|
|
|
help
|
2008-07-22 23:57:53 +05:30
|
|
|
Build support for shadow password in /etc/shadow. This file is only
|
2005-12-20 20:55:25 +05:30
|
|
|
readable by root and thus the encrypted passwords are no longer
|
|
|
|
publicly readable.
|
|
|
|
|
2008-06-16 00:05:34 +05:30
|
|
|
config USE_BB_PWD_GRP
|
|
|
|
bool "Use internal password and group functions rather than system functions"
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
If you leave this disabled, busybox will use the system's password
|
2008-07-22 23:57:53 +05:30
|
|
|
and group functions. And if you are using the GNU C library
|
2008-06-16 00:05:34 +05:30
|
|
|
(glibc), you will then need to install the /etc/nsswitch.conf
|
|
|
|
configuration file and the required /lib/libnss_* libraries in
|
2008-07-22 23:57:53 +05:30
|
|
|
order for the password and group functions to work. This generally
|
2008-06-16 00:05:34 +05:30
|
|
|
makes your embedded system quite a bit larger.
|
|
|
|
|
|
|
|
Enabling this option will cause busybox to directly access the
|
|
|
|
system's /etc/password, /etc/group files (and your system will be
|
|
|
|
smaller, and I will get fewer emails asking about how glibc NSS
|
2008-07-22 23:57:53 +05:30
|
|
|
works). When this option is enabled, you will not be able to use
|
|
|
|
PAM to access remote LDAP password servers and whatnot. And if you
|
2008-06-16 00:05:34 +05:30
|
|
|
want hostname resolution to work with glibc, you still need the
|
|
|
|
/lib/libnss_* libraries.
|
|
|
|
|
|
|
|
If you need to use glibc's nsswitch.conf mechanism
|
|
|
|
(e.g. if user/group database is NOT stored in /etc/passwd etc),
|
|
|
|
you must NOT use this option.
|
|
|
|
|
2008-06-16 01:44:26 +05:30
|
|
|
If you enable this option, it will add about 1.5k.
|
2008-06-16 00:05:34 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config USE_BB_SHADOW
|
2008-06-16 01:44:26 +05:30
|
|
|
bool "Use internal shadow password functions"
|
2005-12-20 20:55:25 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on USE_BB_PWD_GRP && FEATURE_SHADOWPASSWDS
|
2005-12-20 20:55:25 +05:30
|
|
|
help
|
2008-06-16 00:05:34 +05:30
|
|
|
If you leave this disabled, busybox will use the system's shadow
|
2008-07-22 23:57:53 +05:30
|
|
|
password handling functions. And if you are using the GNU C library
|
2008-06-16 00:05:34 +05:30
|
|
|
(glibc), you will then need to install the /etc/nsswitch.conf
|
|
|
|
configuration file and the required /lib/libnss_* libraries in
|
2008-07-22 23:57:53 +05:30
|
|
|
order for the shadow password functions to work. This generally
|
2008-06-16 00:05:34 +05:30
|
|
|
makes your embedded system quite a bit larger.
|
|
|
|
|
|
|
|
Enabling this option will cause busybox to directly access the
|
2008-07-22 23:57:53 +05:30
|
|
|
system's /etc/shadow file when handling shadow passwords. This
|
2008-06-16 01:44:26 +05:30
|
|
|
makes your system smaller (and I will get fewer emails asking about
|
2008-07-22 23:57:53 +05:30
|
|
|
how glibc NSS works). When this option is enabled, you will not be
|
2008-06-16 00:05:34 +05:30
|
|
|
able to use PAM to access shadow passwords from remote LDAP
|
|
|
|
password servers and whatnot.
|
|
|
|
|
|
|
|
config USE_BB_CRYPT
|
2008-11-11 00:22:35 +05:30
|
|
|
bool "Use internal crypt functions"
|
2008-06-16 00:05:34 +05:30
|
|
|
default y
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2008-06-16 01:44:26 +05:30
|
|
|
Busybox has internal DES and MD5 crypt functions.
|
|
|
|
They produce results which are identical to corresponding
|
|
|
|
standard C library functions.
|
|
|
|
|
2008-06-16 00:32:31 +05:30
|
|
|
If you leave this disabled, busybox will use the system's
|
2008-07-22 23:57:53 +05:30
|
|
|
crypt functions. Most C libraries use large (~70k)
|
2008-06-16 01:44:26 +05:30
|
|
|
static buffers there, and also combine them with more general
|
|
|
|
DES encryption/decryption.
|
2008-06-16 00:05:34 +05:30
|
|
|
|
2008-06-16 01:44:26 +05:30
|
|
|
For busybox, having large static buffers is undesirable,
|
2008-06-16 09:39:25 +05:30
|
|
|
especially on NOMMU machines. Busybox also doesn't need
|
|
|
|
DES encryption/decryption and can do with smaller code.
|
2008-06-16 00:05:34 +05:30
|
|
|
|
2008-06-16 01:44:26 +05:30
|
|
|
If you enable this option, it will add about 4.8k of code
|
2008-06-16 00:05:34 +05:30
|
|
|
if you are building dynamically linked executable.
|
2008-06-16 01:44:26 +05:30
|
|
|
In static build, it makes code _smaller_ by about 1.2k,
|
|
|
|
and likely many kilobytes less of bss.
|
2003-07-15 12:45:03 +05:30
|
|
|
|
2008-11-11 00:22:35 +05:30
|
|
|
config USE_BB_CRYPT_SHA
|
|
|
|
bool "Enable SHA256/512 crypt functions"
|
|
|
|
default n
|
|
|
|
depends on USE_BB_CRYPT
|
|
|
|
help
|
|
|
|
Enable this if you have passwords starting with "$5$" or "$6$"
|
|
|
|
in your /etc/passwd or /etc/shadow files. These passwords
|
|
|
|
are hashed using SHA256 and SHA512 algorithms. Support for them
|
|
|
|
was added to glibc in 2008.
|
|
|
|
With this option off, login will fail password check for any
|
|
|
|
user which has password encrypted with these algorithms.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config ADDGROUP
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "addgroup"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-15 01:07:08 +05:30
|
|
|
Utility for creating a new group account.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2007-04-05 18:46:39 +05:30
|
|
|
config FEATURE_ADDUSER_TO_GROUP
|
|
|
|
bool "Support for adding users to groups"
|
|
|
|
default n
|
|
|
|
depends on ADDGROUP
|
|
|
|
help
|
|
|
|
If called with two non-option arguments,
|
|
|
|
addgroup will add an existing user to an
|
|
|
|
existing group.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config DELGROUP
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "delgroup"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-15 01:07:08 +05:30
|
|
|
Utility for deleting a group account.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2007-04-15 14:13:23 +05:30
|
|
|
config FEATURE_DEL_USER_FROM_GROUP
|
2008-07-17 05:15:11 +05:30
|
|
|
bool "Support for removing users from groups"
|
2007-04-15 14:13:23 +05:30
|
|
|
default n
|
|
|
|
depends on DELGROUP
|
|
|
|
help
|
2007-05-30 05:59:55 +05:30
|
|
|
If called with two non-option arguments, deluser
|
2007-04-15 14:13:23 +05:30
|
|
|
or delgroup will remove an user from a specified group.
|
|
|
|
|
2008-03-20 04:45:26 +05:30
|
|
|
config FEATURE_CHECK_NAMES
|
|
|
|
bool "Enable sanity check on user/group names in adduser and addgroup"
|
|
|
|
default n
|
|
|
|
depends on ADDUSER || ADDGROUP
|
|
|
|
help
|
|
|
|
Enable sanity check on user and group names in adduser and addgroup.
|
|
|
|
To avoid problems, the user or group name should consist only of
|
|
|
|
letters, digits, underscores, periods, at signs and dashes,
|
|
|
|
and not start with a dash (as defined by IEEE Std 1003.1-2001).
|
|
|
|
For compatibility with Samba machine accounts "$" is also supported
|
|
|
|
at the end of the user or group name.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config ADDUSER
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "adduser"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-15 01:07:08 +05:30
|
|
|
Utility for creating a new user account.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2008-02-15 20:47:23 +05:30
|
|
|
config FEATURE_ADDUSER_LONG_OPTIONS
|
|
|
|
bool "Enable long options"
|
|
|
|
default n
|
|
|
|
depends on ADDUSER && GETOPT_LONG
|
|
|
|
help
|
|
|
|
Support long options for the adduser applet.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config DELUSER
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "deluser"
|
|
|
|
default n
|
|
|
|
help
|
2003-07-15 01:07:08 +05:30
|
|
|
Utility for deleting a user account.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config GETTY
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "getty"
|
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SYSLOG
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-10-22 15:28:56 +05:30
|
|
|
getty lets you log in on a tty, it is normally invoked by init.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_UTMP
|
2006-04-14 04:52:16 +05:30
|
|
|
bool "Support utmp file"
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on GETTY || LOGIN || SU || WHO
|
2004-07-30 22:54:47 +05:30
|
|
|
default n
|
|
|
|
help
|
2005-07-01 06:34:32 +05:30
|
|
|
The file /var/run/utmp is used to track who is currently logged in.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_WTMP
|
2006-04-14 04:52:16 +05:30
|
|
|
bool "Support wtmp file"
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on GETTY || LOGIN || SU || LAST
|
2005-07-01 06:34:32 +05:30
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_UTMP
|
2005-07-01 06:34:32 +05:30
|
|
|
help
|
2006-01-25 05:38:53 +05:30
|
|
|
The file /var/run/wtmp is used to track when user's have logged into
|
2005-07-01 06:34:32 +05:30
|
|
|
and logged out of the system.
|
2004-07-30 22:54:47 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config LOGIN
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "login"
|
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SUID
|
|
|
|
select FEATURE_SYSLOG
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-10-22 15:28:56 +05:30
|
|
|
login is used when signing onto a system.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2004-08-27 04:43:00 +05:30
|
|
|
Note that Busybox binary must be setuid root for this applet to
|
|
|
|
work properly.
|
|
|
|
|
2007-08-21 16:28:18 +05:30
|
|
|
config PAM
|
|
|
|
bool "Support for PAM (Pluggable Authentication Modules)"
|
|
|
|
default n
|
|
|
|
depends on LOGIN
|
|
|
|
help
|
|
|
|
Use PAM in login(1) instead of direct access to password database.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config LOGIN_SCRIPTS
|
2006-09-08 22:52:45 +05:30
|
|
|
bool "Support for login scripts"
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on LOGIN
|
2006-09-08 22:52:45 +05:30
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable this if you want login to execute $LOGIN_PRE_SUID_SCRIPT
|
2006-11-22 23:51:08 +05:30
|
|
|
just prior to switching from root to logged-in user.
|
2006-09-08 22:52:45 +05:30
|
|
|
|
2007-06-13 03:34:57 +05:30
|
|
|
config FEATURE_NOLOGIN
|
|
|
|
bool "Support for /etc/nologin"
|
|
|
|
default y
|
|
|
|
depends on LOGIN
|
|
|
|
help
|
|
|
|
The file /etc/nologin is used by (some versions of) login(1).
|
|
|
|
If it exists, non-root logins are prohibited.
|
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config FEATURE_SECURETTY
|
2006-04-14 04:52:16 +05:30
|
|
|
bool "Support for /etc/securetty"
|
2002-12-05 14:11:41 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on LOGIN
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2007-06-13 03:34:57 +05:30
|
|
|
The file /etc/securetty is used by (some versions of) login(1).
|
2003-10-22 15:28:56 +05:30
|
|
|
The file contains the device names of tty lines (one per line,
|
|
|
|
without leading /dev/) on which root is allowed to login.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config PASSWD
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "passwd"
|
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SUID
|
|
|
|
select FEATURE_SYSLOG
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2008-07-22 23:57:53 +05:30
|
|
|
passwd changes passwords for user and group accounts. A normal user
|
2003-10-22 15:28:56 +05:30
|
|
|
may only change the password for his/her own account, the super user
|
2008-07-22 23:57:53 +05:30
|
|
|
may change the password for any account. The administrator of a group
|
2003-07-15 01:07:08 +05:30
|
|
|
may change the password for the group.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2004-08-27 04:43:00 +05:30
|
|
|
Note that Busybox binary must be setuid root for this applet to
|
|
|
|
work properly.
|
|
|
|
|
2006-12-19 06:03:53 +05:30
|
|
|
config FEATURE_PASSWD_WEAK_CHECK
|
|
|
|
bool "Check new passwords for weakness"
|
|
|
|
default y
|
|
|
|
depends on PASSWD
|
|
|
|
help
|
|
|
|
With this option passwd will refuse new passwords which are "weak".
|
|
|
|
|
2007-05-08 23:22:17 +05:30
|
|
|
config CRYPTPW
|
|
|
|
bool "cryptpw"
|
|
|
|
default n
|
|
|
|
help
|
2008-12-04 17:35:26 +05:30
|
|
|
Encrypts the given password with the crypt(3) libc function
|
|
|
|
using the given salt. Debian has this utility under mkpasswd
|
|
|
|
name. Busybox provides mkpasswd as an alias for cryptpw.
|
2007-05-08 23:22:17 +05:30
|
|
|
|
2007-07-21 02:58:41 +05:30
|
|
|
config CHPASSWD
|
2008-10-29 06:49:15 +05:30
|
|
|
bool "chpasswd"
|
|
|
|
default n
|
|
|
|
help
|
2008-12-04 17:35:26 +05:30
|
|
|
Reads a file of user name and password pairs from standard input
|
|
|
|
and uses this information to update a group of existing users.
|
2008-12-04 00:18:39 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config SU
|
2002-12-05 14:11:41 +05:30
|
|
|
bool "su"
|
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SUID
|
|
|
|
select FEATURE_SYSLOG
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-10-22 15:28:56 +05:30
|
|
|
su is used to become another user during a login session.
|
|
|
|
Invoked without a username, su defaults to becoming the super user.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2004-08-27 04:43:00 +05:30
|
|
|
Note that Busybox binary must be setuid root for this applet to
|
|
|
|
work properly.
|
|
|
|
|
2006-12-19 14:25:38 +05:30
|
|
|
config FEATURE_SU_SYSLOG
|
2006-12-19 05:50:20 +05:30
|
|
|
bool "Enable su to write to syslog"
|
2006-07-10 08:35:46 +05:30
|
|
|
default y
|
2006-10-05 15:47:08 +05:30
|
|
|
depends on SU
|
2006-12-19 05:50:20 +05:30
|
|
|
|
|
|
|
config FEATURE_SU_CHECKS_SHELLS
|
|
|
|
bool "Enable su to check user's shell to be listed in /etc/shells"
|
|
|
|
depends on SU
|
|
|
|
default y
|
2006-07-10 08:35:46 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config SULOGIN
|
2003-01-21 05:42:11 +05:30
|
|
|
bool "sulogin"
|
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SYSLOG
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-10-22 15:28:56 +05:30
|
|
|
sulogin is invoked when the system goes into single user
|
2003-07-15 01:07:08 +05:30
|
|
|
mode (this is done through an entry in inittab).
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2006-10-05 15:47:08 +05:30
|
|
|
config VLOCK
|
2003-01-21 05:42:11 +05:30
|
|
|
bool "vlock"
|
2002-12-05 14:11:41 +05:30
|
|
|
default n
|
2006-10-05 15:47:08 +05:30
|
|
|
select FEATURE_SUID
|
2002-12-05 14:11:41 +05:30
|
|
|
help
|
2003-10-22 15:28:56 +05:30
|
|
|
Build the "vlock" applet which allows you to lock (virtual) terminals.
|
2002-12-05 14:11:41 +05:30
|
|
|
|
2004-08-27 04:43:00 +05:30
|
|
|
Note that Busybox binary must be setuid root for this applet to
|
|
|
|
work properly.
|
|
|
|
|
2002-12-05 14:11:41 +05:30
|
|
|
endmenu
|