Re: Improving psql's \password command
Nathan Bossart <bossartn@amazon.com>
From: "Bossart, Nathan" <bossartn@amazon.com>
To: Tom Lane <tgl@sss.pgh.pa.us>, "pgsql-hackers@lists.postgresql.org" <pgsql-hackers@lists.postgresql.org>
Date: 2021-10-29T20:45:33Z
Lists: pgsql-hackers
On 10/29/21, 12:47 PM, "Tom Lane" <tgl@sss.pgh.pa.us> wrote: > While testing that, I noticed another bit of user-unfriendliness: > there's no obvious way to get out of it if you realize you are > setting the wrong user's password. simple_prompt() ignores > control-C, and when you give up and press return, you'll just > get the prompt to enter the password again. If at this point > you have the presence of mind to enter a deliberately different > string, you'll be out of the woods. If you don't, and just hit > return again, you will get this response from the backend: > > NOTICE: empty string is not a valid password, clearing password > > which is just about the worst default behavior I can think of. > If you're superuser, and you meant to set the password for user1 > but typed user2 instead, you just clobbered user2's password, > and you have no easy way to undo that. Well, as of bf6b9e9, "ALTER ROLE nathan PASSWORD ''" is effectively the same as "ALTER ROLE nathan PASSWORD NULL". I agree about the user-unfriendliness, but maybe simple_prompt() ignoring control-C is the root-cause of the user-unfriendliness. I'm not sure that it's totally unreasonable to expect the password to be cleared if you don't enter a new one in the prompts. > A compromise position could be to keep PQuser() as the default > target role name in the back branches, but back-patch the other > aspects (the prompt addition and the exit on empty password). I think it would be okay to back-patch the PQuser() fix. I would argue that it's clearly a bug because the docs say it uses the current user. Nathan
Commits
-
pg_receivewal, pg_recvlogical: allow canceling initial password prompt.
- c2242d3640ea 11.15 landed
- 93295932d1f4 12.10 landed
- 3ce5d0884c56 10.20 landed
- 3bd7556bbe0a 14.2 landed
- 33edf4a3ca4c 13.6 landed
- 282b6d00abf5 15.0 landed
-
Allow psql's other uses of simple_prompt() to be interrupted by ^C.
- 46d665bc26ce 15.0 landed
-
Provide a variant of simple_prompt() that can be interrupted by ^C.
- 5f1148224bd7 15.0 landed
-
Make psql's \password default to CURRENT_USER, not PQuser(conn).
- d6eb5a0c258d 15.0 landed
- b062ca508cd4 11.15 landed
- 99389cb66bb7 14.2 landed
- 843925fadbd8 13.6 landed
- 523adcc12900 12.10 landed
- 3bc46e4e9d7a 10.20 landed