Skip to content

Commit

Permalink
Any column that can cast to text can be associated. (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
michelp committed Aug 17, 2022
1 parent 7de1d55 commit ac191f6
Show file tree
Hide file tree
Showing 4 changed files with 96 additions and 7 deletions.
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "pgsodium",
"abstract": "Postgres extension for libsodium functions",
"description": "pgsodium is a PostgreSQL extension that exposes modern libsodium based cryptographic functions to SQL.",
"version": "3.0.3",
"version": "3.0.4",
"maintainer": [
"Michel Pelletier <pelletier.michel@gmail.com>"
],
Expand All @@ -13,7 +13,7 @@
"abstract": "Postgres extension for libsodium functions",
"file": "src/pgsodium.h",
"docfile": "README.md",
"version": "3.0.3"
"version": "3.0.4"
}
},
"prereqs": {
Expand Down
2 changes: 1 addition & 1 deletion pgsodium.control
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# pgsodium extension
comment = 'Postgres extension for libsodium functions'
default_version = '3.0.3'
default_version = '3.0.4'
relocatable = false
88 changes: 88 additions & 0 deletions sql/pgsodium--3.0.3--3.0.4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
CREATE OR REPLACE FUNCTION @extschema@.encrypted_columns(
relid OID
)
RETURNS TEXT AS
$$
DECLARE
m RECORD;
expression TEXT;
comma TEXT;
BEGIN
expression := '';
comma := E' ';
FOR m IN SELECT * FROM @extschema@.mask_columns(relid) LOOP
IF m.key_id IS NULL AND m.key_id_column is NULL THEN
CONTINUE;
ELSE
expression := expression || comma;
expression := expression || format(
$f$%s = pg_catalog.encode(
@extschema@.crypto_aead_det_encrypt(
pg_catalog.convert_to(%s, 'utf8'),
pg_catalog.convert_to(%s::text, 'utf8'),
%s::uuid,
%s
),
'base64')$f$,
'new.' || quote_ident(m.attname),
'new.' || quote_ident(m.attname),
COALESCE('new.' || quote_ident(m.associated_column), quote_literal('')),
COALESCE('new.' || quote_ident(m.key_id_column), quote_literal(m.key_id)),
COALESCE('new.' || quote_ident(m.nonce_column), 'NULL')
);
END IF;
comma := E';\n ';
END LOOP;
RETURN expression;
END
$$
LANGUAGE plpgsql
VOLATILE
SET search_path=''
;

CREATE OR REPLACE FUNCTION @extschema@.decrypted_columns(
relid OID
)
RETURNS TEXT AS
$$
DECLARE
m RECORD;
expression TEXT;
comma TEXT;
padding text = ' ';
BEGIN
expression := E'\n';
comma := padding;
FOR m IN SELECT * FROM @extschema@.mask_columns(relid) LOOP
expression := expression || comma;
IF m.key_id IS NULL AND m.key_id_column IS NULL THEN
expression := expression || padding || quote_ident(m.attname);
ELSE
expression := expression || padding || quote_ident(m.attname) || E',\n';
expression := expression || format(
$f$
pg_catalog.convert_from(
@extschema@.crypto_aead_det_decrypt(
pg_catalog.decode(%s, 'base64'),
pg_catalog.convert_to(%s::text, 'utf8'),
%s::uuid,
%s
),
'utf8') AS %s$f$,
quote_ident(m.attname),
coalesce(quote_ident(m.associated_column), quote_literal('')),
coalesce(quote_ident(m.key_id_column), quote_literal(m.key_id)),
coalesce(quote_ident(m.nonce_column), 'NULL'),
'decrypted_' || quote_ident(m.attname)
);
END IF;
comma := E', \n';
END LOOP;
RETURN expression;
END
$$
LANGUAGE plpgsql
VOLATILE
SET search_path=''
;
9 changes: 5 additions & 4 deletions test/tce.sql
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ CREATE TABLE private.foo(
);

CREATE TABLE private.bar(
id bigserial primary key,
secret text,
associated text,
nonce bytea,
secret2 text,
associated2 text,
Expand Down Expand Up @@ -52,7 +52,7 @@ SELECT lives_ok(
SELECT lives_ok(
format($test$
SECURITY LABEL FOR pgsodium ON COLUMN private.bar.secret
IS 'ENCRYPT WITH KEY ID %s ASSOCIATED associated NONCE nonce'
IS 'ENCRYPT WITH KEY ID %s ASSOCIATED id NONCE nonce'
$test$, :'secret_key_id'),
'can label column for encryption');

Expand All @@ -61,6 +61,7 @@ CREATE ROLE bobo with login password 'foo';
GRANT USAGE ON SCHEMA private to bobo;
GRANT SELECT ON TABLE private.foo to bobo;
GRANT SELECT ON TABLE private.bar to bobo;
GRANT USAGE ON ALL SEQUENCES IN SCHEMA private TO bobo;

SELECT lives_ok(
$test$
Expand Down Expand Up @@ -96,8 +97,8 @@ SELECT lives_ok(
SELECT lives_ok(
format(
$test$
INSERT INTO bar (secret, associated, nonce, secret2, associated2, nonce2, secret2_key_id)
VALUES ('s3kr3t', 'alice was here', %L, 'shhh', 'bob was here', %L, %L::uuid);
INSERT INTO bar (secret, nonce, secret2, associated2, nonce2, secret2_key_id)
VALUES ('s3kr3t', %L, 'shhh', 'bob was here', %L, %L::uuid);
$test$,
:'nonce',
:'nonce2',
Expand Down

0 comments on commit ac191f6

Please sign in to comment.