8000 Restore PGREQUIRESSL recognition in libpq. · dinesh372/postgres@3eab811 · GitHub
[go: up one dir, main page]

Skip to content

Co 8000 mmit 3eab811

Browse files
committed
Restore PGREQUIRESSL recognition in libpq.
Commit 65c3bf1 moved handling of the, already then, deprecated requiressl parameter into conninfo_storeval(). The default PGREQUIRESSL environment variable was however lost in the change resulting in a potentially silent accept of a non-SSL connection even when set. Its documentation remained. Restore its implementation. Also amend the documentation to mark PGREQUIRESSL as deprecated for those not following the link to requiressl. Back-patch to 9.3, where commit 65c3bf1 first appeared. Behavior has been more complex when the user provides both deprecated and non-deprecated settings. Before commit 65c3bf1, libpq operated according to the first of these found: requiressl=1 PGREQUIRESSL=1 sslmode=* PGSSLMODE=* (Note requiressl=0 didn't override sslmode=*; it would only suppress PGREQUIRESSL=1 or a previous requiressl=1. PGREQUIRESSL=0 had no effect whatsoever.) Starting with commit 65c3bf1, libpq ignored PGREQUIRESSL, and order of precedence changed to this: last of requiressl=* or sslmode=* PGSSLMODE=* Starting now, adopt the following order of precedence: last of requiressl=* or sslmode=* PGSSLMODE=* PGREQUIRESSL=1 This retains the 65c3bf1 behavior for connection strings that contain both requiressl=* and sslmode=*. It retains the 65c3bf1 change that either connection string option overrides both environment variables. For the first time, PGSSLMODE has precedence over PGREQUIRESSL; this avoids reducing security of "PGREQUIRESSL=1 PGSSLMODE=verify-full" configurations originating under v9.3 and later. Daniel Gustafsson Security: CVE-2017-7485
1 parent e2a20e4 commit 3eab811

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

doc/src/sgml/libpq.sgml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6710,6 +6710,9 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
67106710
</indexterm>
67116711
<envar>PGREQUIRESSL</envar> behaves the same as the <xref
67126712
linkend="libpq-connect-requiressl"> connection parameter.
6713+
This environment variable is deprecated in favor of the
6714+
<envar>PGSSLMODE</envar> variable; setting both variables suppresses the
6715+
effect of this one.
67136716
</para>
67146717
</listitem>
67156718

src/interfaces/libpq/fe-connect.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4608,6 +4608,30 @@ conninfo_add_defaults(PQconninfoOption *options, PQExpBuffer errorMessage)
46084608
}
46094609
}
46104610

4611+
/*
4612+
* Interpret the deprecated PGREQUIRESSL environment variable. Per
4613+
* tradition, translate values starting with "1" to sslmode=require,
4614+
* and ignore other values. Given both PGREQUIRESSL=1 and PGSSLMODE,
4615+
* PGSSLMODE takes precedence; the opposite was true before v9.3.
4616+
*/
4617+
if (strcmp(option->keyword, "sslmode") == 0)
4618+
{
4619+
const char *requiresslenv = getenv("PGREQUIRESSL");
4620+
4621+
if (requiresslenv != NULL && requiresslenv[0] == '1')
4622+
{
4623+
option->val = strdup("require");
4624+
if (!option->val)
4625+
{
4626+
if (errorMessage)
4627+
printfPQExpBuffer(errorMessage,
4628+
libpq_gettext("out of memory\n"));
4629+
return false;
4630+
}
4631+
continue;
4632+
}
4633+
}
4634+
46114635
/*
46124636
* No environment variable specified or the variable isn't set - try
46134637
* compiled-in default

0 commit comments

Comments
 (0)
0