]> granicus.if.org Git - postgresql/commitdiff
Restrict the use of temporary namespace in two-phase transactions
authorMichael Paquier <michael@paquier.xyz>
Fri, 18 Jan 2019 00:21:44 +0000 (09:21 +0900)
committerMichael Paquier <michael@paquier.xyz>
Fri, 18 Jan 2019 00:21:44 +0000 (09:21 +0900)
Attempting to use a temporary table within a two-phase transaction is
forbidden for ages.  However, there have been uncovered grounds for
a couple of other object types and commands which work on temporary
objects with two-phase commit.  In short, trying to create, lock or drop
an object on a temporary schema should not be authorized within a
two-phase transaction, as it would cause its state to create
dependencies with other sessions, causing all sorts of side effects with
the existing session or other sessions spawned later on trying to use
the same temporary schema name.

Regression tests are added to cover all the grounds found, the original
report mentioned function creation, but monitoring closer there are many
other patterns with LOCK, DROP or CREATE EXTENSION which are involved.
One of the symptoms resulting in combining both is that the session
which used the temporary schema is not able to shut down completely,
waiting for being able to drop the temporary schema, something that it
cannot complete because of the two-phase transaction involved with
temporary objects.  In this case the client is able to disconnect but
the session remains alive on the backend-side, potentially blocking
connection backend slots from being used.  Other problems reported could
also involve server crashes.

This is back-patched down to v10, which is where 9b013dc has introduced
MyXactFlags, something that this patch relies on.

Reported-by: Alexey Bashtanov
Author: Michael Paquier
Reviewed-by: Masahiko Sawada
Discussion: https://postgr.es/m/5d910e2e-0db8-ec06-dd5f-baec420513c3@imap.cc
Backpatch-through: 10

doc/src/sgml/ref/prepare_transaction.sgml
src/backend/access/transam/xact.c
src/backend/catalog/namespace.c
src/backend/commands/dropcmds.c
src/backend/commands/extension.c
src/backend/commands/lockcmds.c
src/include/access/xact.h
src/test/modules/test_extensions/expected/test_extensions.out
src/test/modules/test_extensions/sql/test_extensions.sql
src/test/regress/expected/temp.out
src/test/regress/sql/temp.sql

index d958f7a06f546b56c3a5709878f6e97f0dc1af1f..5016ca287e3065bdf89ea4666360215c6f23b8f7 100644 (file)
@@ -98,9 +98,9 @@ PREPARE TRANSACTION <replaceable class="parameter">transaction_id</replaceable>
 
   <para>
    It is not currently allowed to <command>PREPARE</command> a transaction that
-   has executed any operations involving temporary tables,
-   created any cursors <literal>WITH HOLD</literal>, or executed
-   <command>LISTEN</command>, <command>UNLISTEN</command>, or
+   has executed any operations involving temporary tables or the session's
+   temporary namespace, created any cursors <literal>WITH HOLD</literal>, or
+   executed <command>LISTEN</command>, <command>UNLISTEN</command>, or
    <command>NOTIFY</command>.
    Those features are too tightly
    tied to the current session to be useful in a transaction to be prepared.
index f665e38ecfc9a4a9932d918189dfabe3f622fc6c..18467d96d28003efb880d4a06a931f9e03c7019f 100644 (file)
@@ -2278,6 +2278,18 @@ PrepareTransaction(void)
                                (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
                                 errmsg("cannot PREPARE a transaction that has operated on temporary tables")));
 
+       /*
+        * Similarly, PREPARE TRANSACTION is not allowed if the temporary
+        * namespace has been involved in this transaction as we cannot allow it
+        * to create, lock, or even drop objects within the temporary namespace
+        * as this can mess up with this session or even a follow-up session
+        * trying to use the same temporary namespace.
+        */
+       if ((MyXactFlags & XACT_FLAGS_ACCESSEDTEMPNAMESPACE))
+               ereport(ERROR,
+                               (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
+                                errmsg("cannot PREPARE a transaction that has operated on temporary namespace")));
+
        /*
         * Likewise, don't allow PREPARE after pg_export_snapshot.  This could be
         * supported if we added cleanup logic to twophase.c, but for now it
index 5a6eb495d48b381bd736ed7b9d2b0fae62216651..cdd5006a72f7dc9c5bf97a9ce86ce14386a2da6e 100644 (file)
@@ -192,6 +192,7 @@ char           *namespace_search_path = NULL;
 
 /* Local functions */
 static void recomputeNamespacePath(void);
+static void AccessTempTableNamespace(bool force);
 static void InitTempTableNamespace(void);
 static void RemoveTempRelations(Oid tempNamespaceId);
 static void RemoveTempRelationsCallback(int code, Datum arg);
@@ -459,9 +460,8 @@ RangeVarGetCreationNamespace(const RangeVar *newRelation)
                /* check for pg_temp alias */
                if (strcmp(newRelation->schemaname, "pg_temp") == 0)
                {
-                       /* Initialize temp namespace if first time through */
-                       if (!OidIsValid(myTempNamespace))
-                               InitTempTableNamespace();
+                       /* Initialize temp namespace */
+                       AccessTempTableNamespace(false);
                        return myTempNamespace;
                }
                /* use exact schema given */
@@ -470,9 +470,8 @@ RangeVarGetCreationNamespace(const RangeVar *newRelation)
        }
        else if (newRelation->relpersistence == RELPERSISTENCE_TEMP)
        {
-               /* Initialize temp namespace if first time through */
-               if (!OidIsValid(myTempNamespace))
-                       InitTempTableNamespace();
+               /* Initialize temp namespace */
+               AccessTempTableNamespace(false);
                return myTempNamespace;
        }
        else
@@ -482,7 +481,7 @@ RangeVarGetCreationNamespace(const RangeVar *newRelation)
                if (activeTempCreationPending)
                {
                        /* Need to initialize temp namespace */
-                       InitTempTableNamespace();
+                       AccessTempTableNamespace(true);
                        return myTempNamespace;
                }
                namespaceId = activeCreationNamespace;
@@ -2921,9 +2920,8 @@ LookupCreationNamespace(const char *nspname)
        /* check for pg_temp alias */
        if (strcmp(nspname, "pg_temp") == 0)
        {
-               /* Initialize temp namespace if first time through */
-               if (!OidIsValid(myTempNamespace))
-                       InitTempTableNamespace();
+               /* Initialize temp namespace */
+               AccessTempTableNamespace(false);
                return myTempNamespace;
        }
 
@@ -2986,9 +2984,8 @@ QualifiedNameGetCreationNamespace(List *names, char **objname_p)
                /* check for pg_temp alias */
                if (strcmp(schemaname, "pg_temp") == 0)
                {
-                       /* Initialize temp namespace if first time through */
-                       if (!OidIsValid(myTempNamespace))
-                               InitTempTableNamespace();
+                       /* Initialize temp namespace */
+                       AccessTempTableNamespace(false);
                        return myTempNamespace;
                }
                /* use exact schema given */
@@ -3002,7 +2999,7 @@ QualifiedNameGetCreationNamespace(List *names, char **objname_p)
                if (activeTempCreationPending)
                {
                        /* Need to initialize temp namespace */
-                       InitTempTableNamespace();
+                       AccessTempTableNamespace(true);
                        return myTempNamespace;
                }
                namespaceId = activeCreationNamespace;
@@ -3832,6 +3829,38 @@ recomputeNamespacePath(void)
        list_free(oidlist);
 }
 
+/*
+ * AccessTempTableNamespace
+ *             Provide access to a temporary namespace, potentially creating it
+ *             if not present yet.  This routine registers if the namespace gets
+ *             in use in this transaction.  'force' can be set to true to allow
+ *             the caller to enforce the creation of the temporary namespace for
+ *             use in this backend, which happens if its creation is pending.
+ */
+static void
+AccessTempTableNamespace(bool force)
+{
+       /*
+        * Make note that this temporary namespace has been accessed in this
+        * transaction.
+        */
+       MyXactFlags |= XACT_FLAGS_ACCESSEDTEMPNAMESPACE;
+
+       /*
+        * If the caller attempting to access a temporary schema expects the
+        * creation of the namespace to be pending and should be enforced, then go
+        * through the creation.
+        */
+       if (!force && OidIsValid(myTempNamespace))
+               return;
+
+       /*
+        * The temporary tablespace does not exist yet and is wanted, so
+        * initialize it.
+        */
+       InitTempTableNamespace();
+}
+
 /*
  * InitTempTableNamespace
  *             Initialize temp table namespace on first use in a particular backend
@@ -4275,7 +4304,7 @@ fetch_search_path(bool includeImplicit)
         */
        if (activeTempCreationPending)
        {
-               InitTempTableNamespace();
+               AccessTempTableNamespace(true);
                recomputeNamespacePath();
        }
 
index 1dc1c746f1f8ea4b33674a16656365869df5b2d2..980ce89c62bd10455bbbdb6b1e2903b3eb8bcd26 100644 (file)
@@ -14,6 +14,7 @@
  */
 #include "postgres.h"
 
+#include "access/xact.h"
 #include "access/heapam.h"
 #include "access/htup_details.h"
 #include "catalog/dependency.h"
@@ -107,6 +108,13 @@ RemoveObjects(DropStmt *stmt)
                        check_object_ownership(GetUserId(), stmt->removeType, address,
                                                                   object, relation);
 
+               /*
+                * Make note if a temporary namespace has been accessed in this
+                * transaction.
+                */
+               if (OidIsValid(namespaceId) && isTempNamespace(namespaceId))
+                       MyXactFlags |= XACT_FLAGS_ACCESSEDTEMPNAMESPACE;
+
                /* Release any relcache reference count, but keep lock until commit. */
                if (relation)
                        heap_close(relation, NoLock);
index e381a30760143ce7af5c5ecde17eef560bb3b84b..4fe71196c41b315b41e745ae86484d9e1171d7a6 100644 (file)
@@ -1475,6 +1475,13 @@ CreateExtensionInternal(char *extensionName,
                list_free(search_path);
        }
 
+       /*
+        * Make note if a temporary namespace has been accessed in this
+        * transaction.
+        */
+       if (isTempNamespace(schemaOid))
+               MyXactFlags |= XACT_FLAGS_ACCESSEDTEMPNAMESPACE;
+
        /*
         * We don't check creation rights on the target namespace here.  If the
         * extension script actually creates any objects there, it will fail if
index 1b33be18958098ebe6794e470a5b87119114b295..4cd7ec2d5fa2faffb2b8242bc85d62c78e4155b8 100644 (file)
@@ -14,6 +14,7 @@
  */
 #include "postgres.h"
 
+#include "access/xact.h"
 #include "catalog/namespace.h"
 #include "catalog/pg_inherits.h"
 #include "commands/lockcmds.h"
@@ -83,6 +84,7 @@ RangeVarCallbackForLockTable(const RangeVar *rv, Oid relid, Oid oldrelid,
 {
        LOCKMODE        lockmode = *(LOCKMODE *) arg;
        char            relkind;
+       char            relpersistence;
        AclResult       aclresult;
 
        if (!OidIsValid(relid))
@@ -100,6 +102,14 @@ RangeVarCallbackForLockTable(const RangeVar *rv, Oid relid, Oid oldrelid,
                                 errmsg("\"%s\" is not a table or a view",
                                                rv->relname)));
 
+       /*
+        * Make note if a temporary relation has been accessed in this
+        * transaction.
+        */
+       relpersistence = get_rel_persistence(relid);
+       if (relpersistence == RELPERSISTENCE_TEMP)
+               MyXactFlags |= XACT_FLAGS_ACCESSEDTEMPREL;
+
        /* Check permissions. */
        aclresult = LockTableAclCheck(relid, lockmode, GetUserId());
        if (aclresult != ACLCHECK_OK)
index 169cf2834c4f5bc052be2b7e5122c77476fc12c8..ed21a13896f49315d133ce40a3100d9aabfbe208 100644 (file)
@@ -98,6 +98,11 @@ extern int   MyXactFlags;
  */
 #define XACT_FLAGS_ACQUIREDACCESSEXCLUSIVELOCK (1U << 1)
 
+/*
+ * XACT_FLAGS_ACCESSEDTEMPNAMESPACE - set when a temporary namespace is
+ * accessed.  We don't allow PREPARE TRANSACTION in that case.
+ */
+#define XACT_FLAGS_ACCESSEDTEMPNAMESPACE               (1U << 2)
 
 /*
  *     start- and end-of-transaction callbacks for dynamically loaded modules
index 28d86c4b87f6c9b9eae2e6520ccf98589809ef52..1eec5a37d33c8f4eedbd2681e2f01fd707880988 100644 (file)
@@ -121,3 +121,36 @@ Objects in extension "test_ext8"
 
 -- dropping it should still work
 drop extension test_ext8;
+-- Test creation of extension in temporary schema with two-phase commit,
+-- which should not work.  This function wrapper is useful for portability.
+-- Avoid noise caused by CONTEXT and NOTICE messages including the temporary
+-- schema name.
+\set SHOW_CONTEXT never
+SET client_min_messages TO 'warning';
+-- First enforce presence of temporary schema.
+CREATE TEMP TABLE test_ext4_tab ();
+CREATE OR REPLACE FUNCTION create_extension_with_temp_schema()
+  RETURNS VOID AS $$
+  DECLARE
+    tmpschema text;
+    query text;
+  BEGIN
+    SELECT INTO tmpschema pg_my_temp_schema()::regnamespace;
+    query := 'CREATE EXTENSION test_ext4 SCHEMA ' || tmpschema || ' CASCADE;';
+    RAISE NOTICE 'query %', query;
+    EXECUTE query;
+  END; $$ LANGUAGE plpgsql;
+BEGIN;
+SELECT create_extension_with_temp_schema();
+ create_extension_with_temp_schema 
+-----------------------------------
+(1 row)
+
+PREPARE TRANSACTION 'twophase_extension';
+ERROR:  cannot PREPARE a transaction that has operated on temporary namespace
+-- Clean up
+DROP TABLE test_ext4_tab;
+DROP FUNCTION create_extension_with_temp_schema();
+RESET client_min_messages;
+\unset SHOW_CONTEXT
index 9e64503eb5035f7f0f7f11c4218887354b3de273..f505466ab4ebbf00034c8b6836f85eee8c90a4b2 100644 (file)
@@ -64,3 +64,32 @@ end';
 
 -- dropping it should still work
 drop extension test_ext8;
+
+-- Test creation of extension in temporary schema with two-phase commit,
+-- which should not work.  This function wrapper is useful for portability.
+
+-- Avoid noise caused by CONTEXT and NOTICE messages including the temporary
+-- schema name.
+\set SHOW_CONTEXT never
+SET client_min_messages TO 'warning';
+-- First enforce presence of temporary schema.
+CREATE TEMP TABLE test_ext4_tab ();
+CREATE OR REPLACE FUNCTION create_extension_with_temp_schema()
+  RETURNS VOID AS $$
+  DECLARE
+    tmpschema text;
+    query text;
+  BEGIN
+    SELECT INTO tmpschema pg_my_temp_schema()::regnamespace;
+    query := 'CREATE EXTENSION test_ext4 SCHEMA ' || tmpschema || ' CASCADE;';
+    RAISE NOTICE 'query %', query;
+    EXECUTE query;
+  END; $$ LANGUAGE plpgsql;
+BEGIN;
+SELECT create_extension_with_temp_schema();
+PREPARE TRANSACTION 'twophase_extension';
+-- Clean up
+DROP TABLE test_ext4_tab;
+DROP FUNCTION create_extension_with_temp_schema();
+RESET client_min_messages;
+\unset SHOW_CONTEXT
index f018f17ca0a8e702a4f3f4e22e3c8405fa62187c..860f58a3bf4d2b608d2e5c23b75966ce698d6b6a 100644 (file)
@@ -301,3 +301,74 @@ select relname from pg_class where relname like 'temp_inh_oncommit_test%';
 (1 row)
 
 drop table temp_inh_oncommit_test;
+-- Tests with two-phase commit
+-- Transactions creating objects in a temporary namespace cannot be used
+-- with two-phase commit.
+-- These cases generate errors about temporary namespace.
+-- Function creation
+begin;
+create function pg_temp.twophase_func() returns void as
+  $$ select '2pc_func'::text $$ language sql;
+prepare transaction 'twophase_func';
+ERROR:  cannot PREPARE a transaction that has operated on temporary namespace
+-- Function drop
+create function pg_temp.twophase_func() returns void as
+  $$ select '2pc_func'::text $$ language sql;
+begin;
+drop function pg_temp.twophase_func();
+prepare transaction 'twophase_func';
+ERROR:  cannot PREPARE a transaction that has operated on temporary namespace
+-- Operator creation
+begin;
+create operator pg_temp.@@ (leftarg = int4, rightarg = int4, procedure = int4mi);
+prepare transaction 'twophase_operator';
+ERROR:  cannot PREPARE a transaction that has operated on temporary namespace
+-- These generate errors about temporary tables.
+begin;
+create type pg_temp.twophase_type as (a int);
+prepare transaction 'twophase_type';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+begin;
+create view pg_temp.twophase_view as select 1;
+prepare transaction 'twophase_view';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+begin;
+create sequence pg_temp.twophase_seq;
+prepare transaction 'twophase_sequence';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+-- Temporary tables cannot be used with two-phase commit.
+create temp table twophase_tab (a int);
+begin;
+select a from twophase_tab;
+ a 
+---
+(0 rows)
+
+prepare transaction 'twophase_tab';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+begin;
+insert into twophase_tab values (1);
+prepare transaction 'twophase_tab';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+begin;
+lock twophase_tab in access exclusive mode;
+prepare transaction 'twophase_tab';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+begin;
+drop table twophase_tab;
+prepare transaction 'twophase_tab';
+ERROR:  cannot PREPARE a transaction that has operated on temporary tables
+-- Corner case: current_schema may create a temporary schema if namespace
+-- creation is pending, so check after that.  First reset the connection
+-- to remove the temporary namespace.
+\c -
+SET search_path TO 'pg_temp';
+BEGIN;
+SELECT current_schema() ~ 'pg_temp' AS is_temp_schema;
+ is_temp_schema 
+----------------
+ t
+(1 row)
+
+PREPARE TRANSACTION 'twophase_search';
+ERROR:  cannot PREPARE a transaction that has operated on temporary namespace
index 1beccc6cebb0f6828a6b75898e99a40ed9bdc681..e634ddb9ca4202b187fd22604c69cb252f34dd04 100644 (file)
@@ -224,3 +224,59 @@ select * from temp_inh_oncommit_test;
 -- one relation remains
 select relname from pg_class where relname like 'temp_inh_oncommit_test%';
 drop table temp_inh_oncommit_test;
+
+-- Tests with two-phase commit
+-- Transactions creating objects in a temporary namespace cannot be used
+-- with two-phase commit.
+
+-- These cases generate errors about temporary namespace.
+-- Function creation
+begin;
+create function pg_temp.twophase_func() returns void as
+  $$ select '2pc_func'::text $$ language sql;
+prepare transaction 'twophase_func';
+-- Function drop
+create function pg_temp.twophase_func() returns void as
+  $$ select '2pc_func'::text $$ language sql;
+begin;
+drop function pg_temp.twophase_func();
+prepare transaction 'twophase_func';
+-- Operator creation
+begin;
+create operator pg_temp.@@ (leftarg = int4, rightarg = int4, procedure = int4mi);
+prepare transaction 'twophase_operator';
+
+-- These generate errors about temporary tables.
+begin;
+create type pg_temp.twophase_type as (a int);
+prepare transaction 'twophase_type';
+begin;
+create view pg_temp.twophase_view as select 1;
+prepare transaction 'twophase_view';
+begin;
+create sequence pg_temp.twophase_seq;
+prepare transaction 'twophase_sequence';
+
+-- Temporary tables cannot be used with two-phase commit.
+create temp table twophase_tab (a int);
+begin;
+select a from twophase_tab;
+prepare transaction 'twophase_tab';
+begin;
+insert into twophase_tab values (1);
+prepare transaction 'twophase_tab';
+begin;
+lock twophase_tab in access exclusive mode;
+prepare transaction 'twophase_tab';
+begin;
+drop table twophase_tab;
+prepare transaction 'twophase_tab';
+
+-- Corner case: current_schema may create a temporary schema if namespace
+-- creation is pending, so check after that.  First reset the connection
+-- to remove the temporary namespace.
+\c -
+SET search_path TO 'pg_temp';
+BEGIN;
+SELECT current_schema() ~ 'pg_temp' AS is_temp_schema;
+PREPARE TRANSACTION 'twophase_search';