Giter Site home page Giter Site logo

tcle's Introduction

CircleCI Experimental License

Transparent Cell-Level Encryption for PostgreSQL

TCLE is an experimental PostgreSQL extension implementing data encryption at column level. Data encryption and decryption are processed through a dedicated table access method when the tuples are written to or fetched from the OS. This table access method (AM) extends core Heap AM and preserves original MVCC behaviour.

TCLE relies on OpenSSL's libcrypto EVP functions. Only one cryptographic method is currently supported: AES 256b CBC.

Key Management System

TCLE embes a lightweight Key Management System and implements a 2-tier key-based architecture:

  1. Each database where the extension's been created got its own master key. This master key is never stored on disk but resides in PostgreSQL shared memory. Only database owner or superusers can set a master key. For this prototype, the master key is derivated from a user passphrase, but we could imagine more sophisticated ways to do it in the future.

  2. Each table using TCLE access method owns a table key. Table keys are stored encrypted with database master key into dedicated table, inside the database. This kind of key is generated using strong RNG provided by OpenSSL.

Data types

TCLE provides 3 new data types to identify the columns to be encrypted:

  • ENCRYPT_TEXT is a pseudo TEXT type. The main differences with TEXT type are: data are stored with plain storage while with TEXT type they are stored with extended storage (TOAST), and, this type has size limitation to 2kB.

  • ENCRYPT_NUMERIC is a pseudo NUMERIC type and behaves like it.

  • ENCRYPT_TIMESTAMPTZ is a pseudo TIMESTAMPTZ type. Internal representation of this type is a bit different of TIMESTAMPTZ's: we use variable length representation while TIMESTAMPTZ internal representation is 64 bits integer. AES encryption needs extra bytes for AES padding and IV storage.

PostgreSQL versions support

TCLE works with PostgreSQL 12 and 13 (currently in beta2 stage - 2020-06-25).

Installation

PostgreSQL needs to be compiled with OpenSSL support.

TCLE compilation:

$ sudo PG_CONFIG=/path/to/pg_config make clean install

Once the extension is installed, TCLE library must be loaded by adding tcle into shared_preload_libraries parameter and restart PostgreSQL cluster.

Regression tests

Once the extension compiled and installed, PostgreSQL server configured, regression tests can be run with make installcheck like this:

$ PG_CONFIG=/path/to/pg_config make installcheck
...
============== dropping database "contrib_regression" ==============
DROP DATABASE
============== creating database "contrib_regression" ==============
CREATE DATABASE
ALTER DATABASE
============== running regression test queries        ==============
test 001-create-extension         ... ok           47 ms
test 002-set-passphrase           ... ok           27 ms
test 003-create-table             ... ok           43 ms
test 004-update                   ... ok           14 ms
test 005-create-table-as          ... ok           21 ms
test 006-vacuum-full              ... ok           52 ms
test 007-drop-table               ... ok           14 ms
test 008-fetch-by-index-scan      ... ok           33 ms
test 009-op-class                 ... ok           18 ms
test 010-err-set-passphrase       ... ok            7 ms
test 011-copy                     ... ok           28 ms
test 012-change-passphrase        ... ok            9 ms

======================
 All 11 tests passed. 
======================

Usage

  1. Extension creation:
CREATE EXTENSION tcle;
  1. Set a master key:
SELECT tcle_set_passphrase('private passphrase');
  1. Table creation:
CREATE TABLE t (
  id    ENCRYPTED_NUMERIC,
  label ENCRYPTED_TEXT,
  ts    ENCRYPTED_TIMESTAMPTZ
) USING tcleam;

Key rotation

Master key rotation can be achieved by executing tcle_change_passphrase() SQL function. Warning, this function cannot be called inside a transaction block.

SELECT tcle_change_passphrase('private passphrase', 'new private passphrase');

Table key rotation could be done by duplicating the table structure and its content with CREATE TABLE .. AS or CREATE TABLE .. (LIKE ..) / INSERT. Once the table has been duplicated with a new name, and its constraints, indexes and triggers created, table names should be swapped.

Limitations

Due to its experimental status, there are some limitations:

  • DO NOT USE IT IN PRODUCTION.
  • Master key passphrase could leak in PostgreSQL logs.

Concept limitations:

  • Indexing encrypted data not supported.
  • Data could reside not encrypted into PostgreSQL temporary files.
  • Data are not encrypted into dump files.
  • Statements containing clear data could leak into PostgreSQL logs.

tcle's People

Contributors

julmon avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar

Forkers

ioguix

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.