Skip to content

Commit 76b646f

Browse files
committed
WIP: PG-1442 Enable encryption of catalog tables
1 parent 148a051 commit 76b646f

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

ci_scripts/tde_setup_global.sql

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ CREATE SCHEMA tde;
22
CREATE EXTENSION IF NOT EXISTS pg_tde SCHEMA tde;
33

44
SELECT tde.pg_tde_add_global_key_provider_file('reg_file-global', '/tmp/pg_tde_test_keyring.per');
5-
SELECT tde.pg_tde_set_server_principal_key('global-principal-key', 'reg_file-global');
5+
SELECT tde.pg_tde_set_server_principal_key('wal-principal-key', 'reg_file-global');
6+
SELECT tde.pg_tde_set_default_principal_key('default-principal-key', 'reg_file-global', false);
67
ALTER SYSTEM SET pg_tde.wal_encrypt = on;
78
ALTER SYSTEM SET default_table_access_method = 'tde_heap';
89
ALTER SYSTEM SET search_path = "$user",public,tde;

contrib/pg_tde/expected/default_principal_key.out

+6-3
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,14 @@ SELECT current_database() AS regress_database
4747
CREATE DATABASE regress_pg_tde_other;
4848
\c regress_pg_tde_other
4949
CREATE EXTENSION pg_tde;
50-
-- Should fail: no principal key for the database yet
50+
-- TODO
5151
SELECT key_provider_id, key_provider_name, principal_key_name
5252
FROM pg_tde_principal_key_info();
53-
ERROR: Principal key does not exists for the database
54-
HINT: Use set_principal_key interface to set the principal key
53+
key_provider_id | key_provider_name | principal_key_name
54+
-----------------+-------------------+-----------------------
55+
-3 | file-provider | default-principal-key
56+
(1 row)
57+
5558
-- Should succeed: "localizes" the default principal key for the database
5659
CREATE TABLE test_enc(
5760
id SERIAL,

contrib/pg_tde/sql/default_principal_key.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CREATE DATABASE regress_pg_tde_other;
3434

3535
CREATE EXTENSION pg_tde;
3636

37-
-- Should fail: no principal key for the database yet
37+
-- TODO
3838
SELECT key_provider_id, key_provider_name, principal_key_name
3939
FROM pg_tde_principal_key_info();
4040

contrib/pg_tde/src/smgr/pg_tde_smgr.c

+5-6
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,18 @@ tde_smgr_get_key(SMgrRelation reln, RelFileLocator *old_locator, bool can_create
4141
TdeCreateEvent *event;
4242
InternalKey *key;
4343

44-
if (IsCatalogRelationOid(reln->smgr_rlocator.locator.relNumber))
45-
{
46-
/* do not try to encrypt/decrypt catalog tables */
47-
return NULL;
48-
}
49-
5044
/* see if we have a key for the relation, and return if yes */
5145
key = GetSMGRRelationKey(reln->smgr_rlocator);
5246
if (key != NULL)
5347
{
5448
return key;
5549
}
5650

51+
if (IsCatalogRelationOid(reln->smgr_rlocator.locator.relNumber) && can_create)
52+
{
53+
return pg_tde_create_smgr_key(&reln->smgr_rlocator);
54+
}
55+
5756
event = GetCurrentTdeCreateEvent();
5857

5958
/*

0 commit comments

Comments
 (0)