pgsql: Disallow newlines in parameter values to be set in ALTER SYSTEM. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Disallow newlines in parameter values to be set in ALTER SYSTEM.
Date
Msg-id E1anCcs-0000GM-2M@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Disallow newlines in parameter values to be set in ALTER SYSTEM.

As noted by Julian Schauder in bug #14063, the configuration-file parser
doesn't support embedded newlines in string literals.  While there might
someday be a good reason to remove that restriction, there doesn't seem
to be one right now.  However, ALTER SYSTEM SET could accept strings
containing newlines, since many of the variable-specific value-checking
routines would just see a newline as whitespace.  This led to writing a
postgresql.auto.conf file that was broken and had to be removed manually.

Pending a reason to work harder, just throw an error if someone tries this.

In passing, fix several places in the ALTER SYSTEM logic that failed to
provide an errcode() for an ereport(), and thus would falsely log the
failure as an internal XX000 error.

Back-patch to 9.4 where ALTER SYSTEM was introduced.

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/28148e25823a42877b2f2ee0961afcb8b5243a72

Modified Files
--------------
src/backend/utils/misc/guc.c | 23 ++++++++++++++++++++---
1 file changed, 20 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Alvaro Herrera
Date:
Subject: pgsql: Display WAL pointer in rm_redo error callback
Next
From: Tom Lane
Date:
Subject: pgsql: Disallow newlines in parameter values to be set in ALTER SYSTEM.