Re: pgsql: With gssencmode='require', check credential cache before connect

From: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
To: heikki(dot)linnakangas(at)iki(dot)fi
Cc: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: Re: pgsql: With gssencmode='require', check credential cache before connect
Date: 2024-04-09 01:46:13
Message-ID: 20240409.104613.1653854506705708036.horikyota.ntt@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Hello.

At Sun, 07 Apr 2024 23:50:08 +0000, Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi> wrote in
> With gssencmode='require', check credential cache before connecting

This commit adds the following error message (indentations are adjusted):

+ libpq_append_conn_error(conn,
+ "GSSAPI encryption required but it is not supported over a local socket)");

The closing parenthesis at the end of the message seems to be a
leftover from editing.

diff --git a/src/interfaces/libpq/fe-connect.c b/src/interfaces/libpq/fe-connect.c
index 4bd523ec6e..e35bdc4036 100644
--- a/src/interfaces/libpq/fe-connect.c
+++ b/src/interfaces/libpq/fe-connect.c
@@ -2927,7 +2927,7 @@ keep_going: /* We will come back to here until there is
if (conn->raddr.addr.ss_family == AF_UNIX)
{
libpq_append_conn_error(conn,
- "GSSAPI encryption required but it is not supported over a local socket)");
+ "GSSAPI encryption required but it is not supported over a local socket");
goto error_return;
}
if (conn->gcred == GSS_C_NO_CREDENTIAL)

About the following message:

+ libpq_append_conn_error(conn, "could not set ssl alpn extension: %s", err);

I'm not sure about the policy for writing acronyms in lowercase, but
other occurrences of ALPN (in backend code) seem to be written in
uppercase.

regards.

--
Kyotaro Horiguchi
NTT Open Source Software Center

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Amit Kapila 2024-04-09 02:07:45 Re: pgsql: Fix the intermittent buildfarm failures in 040_standby_failover_
Previous Message Michael Paquier 2024-04-09 01:31:52 pgsql: injection_points: Fix race condition with local injection point