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 E1WFPlS-0000gX-Gz@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
------
REL9_2_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/820ab11fbfd508fc75a39c43ad2c1b3e79c4982b

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      |    2 +
src/include/parser/parse_utilcmd.h  |    5 +-
src/include/tcop/utility.h          |    2 -
18 files changed, 234 insertions(+), 157 deletions(-)


pgsql-committers by date:

Previous
From: Noah Misch
Date:
Subject: pgsql: Fix handling of wide datetime input/output.
Next
From: Noah Misch
Date:
Subject: pgsql: Shore up ADMIN OPTION restrictions.