pgsql: Prevent potential overruns of fixed-size buffers. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Prevent potential overruns of fixed-size buffers.
Date
Msg-id E1WFQwK-0001xR-03@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Prevent potential overruns of fixed-size buffers.

Coverity identified a number of places in which it couldn't prove that a
string being copied into a fixed-size buffer would fit.  We believe that
most, perhaps all of these are in fact safe, or are copying data that is
coming from a trusted source so that any overrun is not really a security
issue.  Nonetheless it seems prudent to forestall any risk by using
strlcpy() and similar functions.

Fixes by Peter Eisentraut and Jozef Mlich based on Coverity reports.

In addition, fix a potential null-pointer-dereference crash in
contrib/chkpass.  The crypt(3) function is defined to return NULL on
failure, but chkpass.c didn't check for that before using the result.
The main practical case in which this could be an issue is if libc is
configured to refuse to execute unapproved hashing algorithms (e.g.,
"FIPS mode").  This ideally should've been a separate commit, but
since it touches code adjacent to one of the buffer overrun changes,
I included it in this commit to avoid last-minute merge issues.
This issue was reported by Honza Horak.

Security: CVE-2014-0065 for buffer overruns, CVE-2014-0066 for crypt()

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/45bf2404a2f586a35e8647890a7d5917b787a623

Modified Files
--------------
contrib/chkpass/chkpass.c           |   29 ++++++++++++++++++++++++++---
contrib/pg_standby/pg_standby.c     |    2 +-
src/backend/access/transam/xlog.c   |    2 +-
src/backend/tsearch/spell.c         |    2 +-
src/backend/utils/adt/datetime.c    |   11 ++++++-----
src/bin/initdb/initdb.c             |    2 +-
src/interfaces/ecpg/preproc/pgc.l   |    2 +-
src/interfaces/libpq/fe-protocol2.c |    2 +-
src/interfaces/libpq/fe-protocol3.c |    2 +-
src/port/exec.c                     |    4 ++--
src/test/regress/pg_regress.c       |    6 +++---
src/timezone/pgtz.c                 |    4 ++--
12 files changed, 46 insertions(+), 22 deletions(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Prevent potential overruns of fixed-size buffers.
Next
From: Tom Lane
Date:
Subject: pgsql: Document risks of "make check" in the regression testing instruc