shadow/lib
Alex Colomar 155c9421b9 libmisc: agetpass(), erase_pass(): Add functions for getting passwords safely
There are several issues with getpass(3).

Many implementations of it share the same issues that the infamous
gets(3).  In glibc it's not so terrible, since it's a wrapper
around getline(3).  But it still has an important bug:

If the password is long enough, getline(3) will realloc(3) memory,
and prefixes of the password will be laying around in some
deallocated memory.

See the getpass(3) manual page for more details, and especially
the commit that marked it as deprecated, which links to a long
discussion in the linux-man@ mailing list.

So, readpassphrase(3bsd) is preferrable, which is provided by
libbsd on GNU systems.  However, using readpassphrase(3) directly
is a bit verbose, so we can write our own wrapper with a simpler
interface similar to that of getpass(3).

One of the benefits of writing our own interface around
readpassphrase(3) is that we can hide there any checks that should
be done always and which would be error-prone to repeat every
time.  For example, check that there was no truncation in the
password.

Also, use malloc(3) to get the buffer, instead of using a global
buffer.  We're not using a multithreaded program (and it wouldn't
make sense to do so), but it's nice to know that the visibility of
our passwords is as limited as possible.

erase_pass() is a clean-up function that handles all clean-up
correctly, including zeroing the entire buffer, and then
free(3)ing the memory.  By using [[gnu::malloc(erase_pass)]], we
make sure that we don't leak the buffers in any case, since the
compiler will be able to enforce clean up.

Link: <https://git.kernel.org/pub/scm/docs/man-pages/man-pages.git/commit?id=7ca189099d73bde954eed2d7fc21732bcc8ddc6b>
Reported-by: Christian Göttsche <cgzones@googlemail.com>
Signed-off-by: Alejandro Colomar <alx@kernel.org>
2022-12-05 10:47:19 +01:00
..
.indent.pro [svn-upgrade] Integrating new upstream version, shadow (4.0.8) 2007-10-07 11:46:07 +00:00
commonio.c Don't test for NULL before calling free(3) 2022-09-29 16:03:53 +02:00
commonio.h Update licensing info 2021-12-23 19:36:50 -06:00
defines.h Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
encrypt.c Merge pull request #451 from hallyn/2021-12-05/license 2022-01-02 18:38:42 -06:00
exitcodes.h Update licensing info 2021-12-23 19:36:50 -06:00
faillog.h Update licensing info 2021-12-23 19:36:50 -06:00
fields.c Update licensing info 2021-12-23 19:36:50 -06:00
fputsx.c Update licensing info 2021-12-23 19:36:50 -06:00
get_gid.c Update licensing info 2021-12-23 19:36:50 -06:00
get_pid.c Update licensing info 2021-12-23 19:36:50 -06:00
get_uid.c Update licensing info 2021-12-23 19:36:50 -06:00
getdef.c Don't test for NULL before calling free(3) 2022-09-29 16:03:53 +02:00
getdef.h Update licensing info 2021-12-23 19:36:50 -06:00
getlong.c Update licensing info 2021-12-23 19:36:50 -06:00
getulong.c Update licensing info 2021-12-23 19:36:50 -06:00
groupio.c Don't test for NULL before calling free(3) 2022-09-29 16:03:53 +02:00
groupio.h Update licensing info 2021-12-23 19:36:50 -06:00
groupmem.c lib: use strzero where applicable 2022-09-27 16:52:06 +02:00
gshadow_.h Update licensing info 2021-12-23 19:36:50 -06:00
gshadow.c Update licensing info 2021-12-23 19:36:50 -06:00
lockpw.c Update licensing info 2021-12-23 19:36:50 -06:00
Makefile.am build: include lib/shadowlog_internal.h in dist tarballs 2022-01-02 21:06:36 -06:00
nscd.c lib: rename Prog to shadow_progname, with only one definition 2021-12-25 22:41:58 +00:00
nscd.h * configure.in, lib/nscd.h, lib/nscd.c: Added --with-nscd flag to 2008-08-30 18:30:36 +00:00
nss.c Don't warn when failed to open /etc/nsswitch.conf 2022-11-08 10:18:17 -06:00
pam_defs.h Update licensing info 2021-12-23 19:36:50 -06:00
port.c Update licensing info 2021-12-23 19:36:50 -06:00
port.h Update licensing info 2021-12-23 19:36:50 -06:00
prototypes.h libmisc: agetpass(), erase_pass(): Add functions for getting passwords safely 2022-12-05 10:47:19 +01:00
pwauth.c Update licensing info 2021-12-23 19:36:50 -06:00
pwauth.h Add header guards 2022-05-24 07:49:11 -05:00
pwio.c Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
pwio.h Update licensing info 2021-12-23 19:36:50 -06:00
pwmem.c lib: use strzero where applicable 2022-09-27 16:52:06 +02:00
run_part.c Initialize local variables 2022-05-24 07:49:11 -05:00
run_part.h Add header guards 2022-05-24 07:49:11 -05:00
selinux.c Use function format attribute where applicable 2022-08-06 11:27:56 -05:00
semanage.c useradd: check MLS enablement before setting serange Resolves: https://github.com/shadow-maint/shadow/issues/552 2022-09-02 20:29:34 -05:00
sgetgrent.c Don't test for NULL before calling free(3) 2022-09-29 16:03:53 +02:00
sgetpwent.c Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
sgetspent.c Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
sgroupio.c lib: use strzero where applicable 2022-09-27 16:52:06 +02:00
sgroupio.h Update licensing info 2021-12-23 19:36:50 -06:00
shadow.c Remove commented out code and FIXMEs 2022-05-24 07:49:11 -05:00
shadowio.c Raise limit for passwd and shadow entry length 2022-10-14 10:41:40 +02:00
shadowio.h Update licensing info 2021-12-23 19:36:50 -06:00
shadowlog_internal.h Add header guards 2022-05-24 07:49:11 -05:00
shadowlog.c lib: provide default values for shadow_progname/shadow_logfd 2021-12-27 16:28:23 +00:00
shadowlog.h Drop obsolete prototype for log_dolog() 2022-08-06 11:27:56 -05:00
shadowmem.c lib: use strzero where applicable 2022-09-27 16:52:06 +02:00
spawn.c Merge pull request #451 from hallyn/2021-12-05/license 2022-01-02 18:38:42 -06:00
sssd.c lib: rename Prog to shadow_progname, with only one definition 2021-12-25 22:41:58 +00:00
sssd.h Flush sssd caches in addition to nscd caches 2018-09-13 14:20:02 +02:00
subordinateio.c Drop superfluous const from return type 2022-08-06 11:27:56 -05:00
subordinateio.h fix newusers when nss provides subids 2021-05-23 08:16:16 -05:00
tcbfuncs.c Don't test for NULL before calling free(3) 2022-09-29 16:03:53 +02:00
tcbfuncs.h * lib/tcbfuncs.h: Re-indent. 2010-03-18 19:23:00 +00:00
utent.c Update licensing info 2021-12-23 19:36:50 -06:00