pgsql: Fix initdb misbehavior when user mis-enters superuser password.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема pgsql: Fix initdb misbehavior when user mis-enters superuser password.
Дата
Msg-id E1beoen-0002CN-18@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix initdb misbehavior when user mis-enters superuser password.

While testing simple_prompt() revisions, I happened to notice that
current initdb behaves rather badly when --pwprompt is specified and
the user miskeys the second password.  It complains about the mismatch,
does "rm -rf" on the data directory, and exits.  The problem is that
since commit c4a8812cf, there's a standalone backend sitting waiting
for commands at that point.  It gets unhappy about its datadir having
gone away, and spews a PANIC message at the user, which is not nice.
(And the shell then adds to the mess with meaningless bleating about a
core dump...)  We don't really want that sort of thing to happen unless
there's an internal failure in initdb, which this surely is not.

The best fix seems to be to move the collection of the password
earlier, so that it's done essentially as part of argument collection,
rather than at the rather ad-hoc time it was done before.

Back-patch to 9.6 where the problem was introduced.

Branch
------
REL9_6_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/d9720e4377911d9d4157221ff362226f2169fe4c

Modified Files
--------------
src/bin/initdb/initdb.c | 23 ++++++++++++++---------
1 file changed, 14 insertions(+), 9 deletions(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Robert Haas
Дата:
Сообщение: Re: [COMMITTERS] pgsql: Split hash.h → hash_xlog.h
Следующее
От: Tom Lane
Дата:
Сообщение: pgsql: Fix initdb misbehavior when user mis-enters superuser password.