On Fri, Oct 29, 2021, at 9:55 AM, Theo de Raadt wrote:
> <rsbec...@nexbridge.com> wrote:
>> On October 29, 2021 7:29 AM, Alejandro Colomar wrote:
>> > On 10/29/21 13:15, Alejandro Colomar wrote:
>> > > Hi,
>> > >
>> > > As the manual pages says, SUSv2 marked it as LEGACY, and POSIX doesn't
>> > > have it at all.  The manual page goes further and says "This function
>> > > is obsolete. Do not use it." in its first lines.
...
> The community finally had the balls to get rid of gets(3).
>
> getpass(3) shares the same flaw, that the buffer size isn't passed.
> This has been an issue in the past

I was about to post exactly the same thing.  getpass(3) is not deprecated 
because there's a better replacement, it's deprecated because it's _unsafe_.  
The glibc implementation wraps getline(3) and therefore  doesn't truncate the 
passphrase or overflow a fixed-size buffer, no matter how long the input is, 
but portable code cannot rely on that.  And come to think of it, using 
getline(3) means that prefixes of the passphrase may be left lying around in 
malloc's free lists.

(getpass also cannot be made thread safe, due to recycling of a static buffer, 
but a program in which multiple threads are racing to prompt the user for 
passwords would be a UX disaster anyway, so I don't think that's a critical 
flaw the way it is for e.g. strtok(3).)

The Linux manpage project's documentation is, as I understand it, for Linux 
with glibc _first_, but not _only_; it should not describe this function as 
not-deprecated just because glibc has patched its worst problems and doesn't 
offer any better API.

> readpassphrase(3) has a few too many features/extensions for my taste, but
> at least it is harder to abuse.

I am inclined to agree that readpassphrase has too many knobs, and I can't 
think of any legitimate present-day use for several of them, which is not a 
good property for an API handling security-critical data.  Also, it relies on 
the caller to size the buffer for the passphrase, and therefore risks 
truncating people's passphrases.

With my libxcrypt hat on I've thought a bit about replacements for getpass.  
The conclusion I came to is that the easy changes are all putting lipstick on a 
pig, and if I was going to work on this at all I was going to design a 
privilege-separated authentication service that could be asked to take over a 
tty, read a passphrase, check it, and return just success or failure to the 
caller.  Neither the passphrase itself, nor any strings derived from it, would 
ever be in the caller's address space.  But this is obviously well out of scope 
for the C library.

zw

Reply via email to