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>
Cc: "pgsql-hackers@lists.postgresql.org" <pgsql-hackers@lists.postgresql.org>
Date: 2021-11-19T23:03:26Z
Lists: pgsql-hackers
Attachments
- v1-0001-Add-control-C-handling-for-password-prompts-in-pg.patch (application/octet-stream) patch v1-0001
On 11/19/21, 9:17 AM, "Tom Lane" <tgl@sss.pgh.pa.us> wrote: > "Bossart, Nathan" <bossartn@amazon.com> writes: >> Okay, here is an attempt at adding control-C support for \prompt and >> \connect. It was reasonably straightforward. I did have to teach >> simple_prompt_extended() to add a newline after a cancellation when >> "echo" is true. > > LGTM, pushed after very minor fooling with the comments. Thanks! >> I think that's it for psql. After a quick glance, I didn't see any >> other obvious candidates for control-C support, but I'll look a little >> closer to be sure. > > Hmm, initdb's prompt-for-superuser-password might need it. > I think the rest of our frontend programs don't trap SIGINT, > or at least don't do so while requesting user input. I'm able to cancel the superuser password prompt in initdb already. It looks like the signal handlers aren't set up until after get_su_pwd(). I did find some missing control-C handling in pg_receivewal/pg_recvlogical, though. Attached is a patch for those. 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