pgsql: Avoid repeated name lookups during table and index DDL. - Mailing list pgsql-committers

From Robert Haas
Subject pgsql: Avoid repeated name lookups during table and index DDL.
Date
Msg-id E1WFPlR-0000fU-BQ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Avoid repeated name lookups during table and index DDL.

If the name lookups come to different conclusions due to concurrent
activity, we might perform some parts of the DDL on a different table
than other parts.  At least in the case of CREATE INDEX, this can be
used to cause the permissions checks to be performed against a
different table than the index creation, allowing for a privilege
escalation attack.

This changes the calling convention for DefineIndex, CreateTrigger,
transformIndexStmt, transformAlterTableStmt, CheckIndexCompatible
(in 9.2 and newer), and AlterTable (in 9.1 and older).  In addition,
CheckRelationOwnership is removed in 9.2 and newer and the calling
convention is changed in older branches.  A field has also been added
to the Constraint node (FkConstraint in 8.4).  Third-party code calling
these functions or using the Constraint node will require updating.

Report by Andres Freund.  Patch by Robert Haas and Andres Freund,
reviewed by Tom Lane.

Security: CVE-2014-0062

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/5f173040e324f6c2eebb90d86cf1b0cdb5890f0a

Modified Files
--------------
src/backend/bootstrap/bootparse.y   |   17 ++++-
src/backend/catalog/index.c         |   10 +--
src/backend/catalog/pg_constraint.c |   19 +++++
src/backend/commands/indexcmds.c    |   22 ++++--
src/backend/commands/tablecmds.c    |  137 +++++++++++++++++++++++++----------
src/backend/commands/trigger.c      |   28 +++++--
src/backend/nodes/copyfuncs.c       |    1 +
src/backend/nodes/equalfuncs.c      |    1 +
src/backend/nodes/outfuncs.c        |    1 +
src/backend/parser/parse_utilcmd.c  |   64 ++++++----------
src/backend/tcop/utility.c          |   73 +++++++------------
src/include/catalog/pg_constraint.h |    1 +
src/include/commands/defrem.h       |    4 +-
src/include/commands/tablecmds.h    |    2 +
src/include/commands/trigger.h      |    2 +-
src/include/nodes/parsenodes.h      |    1 +
src/include/parser/parse_utilcmd.h  |    5 +-
src/include/tcop/utility.h          |    2 -
18 files changed, 233 insertions(+), 157 deletions(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Predict integer overflow to avoid buffer overruns.
Next
From: Tom Lane
Date:
Subject: pgsql: Prevent potential overruns of fixed-size buffers.