Roles with empty password (probably bug in libpq and in psql as well).

From: Dmitriy Igrishin <dmitigr(at)gmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Roles with empty password (probably bug in libpq and in psql as well).
Date: 2012-07-24 12:41:26
Message-ID: CAAfz9KN9WLbj_4rrEVP6ZSr-TxyL7v=B2jgL6B6O5crVeqqVhw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hey all,

According to http://www.postgresql.org/docs/9.2/static/sql-alterrole.html

A query:
ALTER ROLE davide WITH PASSWORD NULL;
removes a role's password.

But it's impossible to pass empty (NULL) password to the backend
by using libpq, because connectOptions2() defined the fe-connect.c
reads a password from the ~/.pgpass even when a password
specified as an empty string literal ("").

Also, when connecting to the server via psql(1) by using a role
with removed password psql exists with status 2 and prints the error
message:
psql: fe_sendauth: no password supplied

Thanks.

--
// Dmitriy.

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Guillaume Lelarge 2012-07-24 13:16:16 Re: Roles with empty password (probably bug in libpq and in psql as well).
Previous Message Pavel Stehule 2012-07-24 12:03:57 Re: how to connect to oracle database