Configuring Database Authorization

Configuring Database Authorization

Describes how to restrict authorization access to database data at the user level by using roles and permissions.

Parent topic: Greenplum Database Security Configuration Guide

Access Permissions and Roles

Greenplum Database manages database access permissions using roles. The concept of roles subsumes the concepts of users and groups. A role can be a database user, a group, or both. Roles can own database objects (for example, tables) and can assign privileges on those objects to other roles to control access to the objects. Roles can be members of other roles, thus a member role can inherit the object privileges of its parent role.

Every Greenplum Database system contains a set of database roles (users and groups). Those roles are separate from the users and groups managed by the operating system on which the server runs. However, for convenience you may want to maintain a relationship between operating system user names and Greenplum Database role names, since many of the client applications use the current operating system user name as the default.

In Greenplum Database, users log in and connect through the master instance, which verifies their role and access privileges. The master then issues out commands to the segment instances behind the scenes using the currently logged in role.

Roles are defined at the system level, so they are valid for all databases in the system.

To bootstrap the Greenplum Database system, a freshly initialized system always contains one predefined superuser role (also referred to as the system user). This role will have the same name as the operating system user that initialized the Greenplum Database system. Customarily, this role is named gpadmin. To create more roles you first must connect as this initial role.

Managing Object Privileges

When an object (table, view, sequence, database, function, language, schema, or tablespace) is created, it is assigned an owner. The owner is normally the role that executed the creation statement. For most kinds of objects, the initial state is that only the owner (or a superuser) can do anything with the object. To allow other roles to use it, privileges must be granted. Greenplum Database supports the following privileges for each object type:

Object TypePrivileges
Tables, Views, Sequences
  • SELECT
  • INSERT
  • UPDATE
  • DELETE
  • RULE
  • ALL
External Tables
  • SELECT
  • RULE
  • ALL
Databases
  • CONNECT
  • CREATE
  • TEMPORARY | TEMP
  • ALL
FunctionsEXECUTE
Procedural LanguagesUSAGE
Schemas
  • CREATE
  • USAGE
  • ALL

Privileges must be granted for each object individually. For example, granting ALL on a database does not grant full access to the objects within that database. It only grants all of the database-level privileges (CONNECT, CREATE, TEMPORARY) to the database itself.

Use the GRANT SQL command to give a specified role privileges on an object. For example:

  1. =# GRANT INSERT ON mytable TO jsmith;

To revoke privileges, use the REVOKE command. For example:

  1. =# REVOKE ALL PRIVILEGES ON mytable FROM jsmith;

You can also use the DROP OWNED and REASSIGN OWNED commands for managing objects owned by deprecated roles. (Note: only an object’s owner or a superuser can drop an object or reassign ownership.) For example:

  1. =# REASSIGN OWNED BY sally TO bob;
  2. =# DROP OWNED BY visitor;

Using SSH-256 Encryption

Greenplum Database access control corresponds roughly to the Orange Book ‘C2’ level of security, not the ‘B1’ level. Greenplum Database currently supports access privileges at the object level. Greenplum Database does not support row-level access or row-level, labeled security.

You can simulate row-level access by using views to restrict the rows that are selected. You can simulate row-level labels by adding an extra column to the table to store sensitivity information, and then using views to control row-level access based on this column. You can then grant roles access to the views rather than the base table. While these workarounds do not provide the same as “B1” level security, they may still be a viable alternative for many organizations.

To use SHA-256 encryption, you must set a parameter either at the system or the session level. This section outlines how to use a server parameter to implement SHA-256 encrypted password storage. Note that in order to use SHA-256 encryption for storage, the client authentication method must be set to password rather than the default, MD5. (See Configuring the SSL Client Connection for more details.) This means that the password is transmitted in clear text over the network, so we highly recommend that you set up SSL to encrypt the client server communication channel.

You can set your chosen encryption method system-wide or on a per-session basis. The available encryption methods are SHA-256 and MD5 (for backward compatibility).

Setting Encryption Method System-wide

To set the password_hash_algorithm server parameter on a complete Greenplum system (master and its segments):

  1. Log in to your Greenplum Database instance as a superuser.
  2. Execute gpconfig with the password_hash_algorithm set to SHA-256:

    1. $ gpconfig -c password_hash_algorithm -v 'SHA-256'
  3. Verify the setting:

    1. $ gpconfig -s

    You will see:

    1. Master value: SHA-256
    2. Segment value: SHA-256

Setting Encryption Method for an Individual Session

To set the password_hash_algorithm server parameter for an individual session:

  1. Log in to your Greenplum Database instance as a superuser.
  2. Set the password_hash_algorithm to SHA-256:

    1. # set password_hash_algorithm = 'SHA-256'
  3. Verify the setting:

    1. # show password_hash_algorithm;

    You will see:

    1. SHA-256

Following is an example of how the new setting works:

  1. Log in as a super user and verify the password hash algorithm setting:

    1. # show password_hash_algorithm
    2. password_hash_algorithm
    3. -------------------------------
    4. SHA-256
  2. Create a new role with password that has login privileges.

    1. create role testdb with password 'testdb12345#' LOGIN;
  3. Change the client authentication method to allow for storage of SHA-256 encrypted passwords:

    Open the pg_hba.conf file on the master and add the following line:

    1. host all testdb 0.0.0.0/0 password
  4. Restart the cluster.

  5. Log in to the database as the user just created, testdb.

    1. psql -U testdb
  6. Enter the correct password at the prompt.

  7. Verify that the password is stored as a SHA-256 hash.

    Password hashes are stored in pg_authid.rolpasswod.

  8. Log in as the super user.

  9. Execute the following query:

    1. # SELECT rolpassword FROM pg_authid WHERE rolname = 'testdb';
    2. Rolpassword
    3. -----------
    4. sha256<64 hexadecimal characters>

Restricting Access by Time

Greenplum Database enables the administrator to restrict access to certain times by role. Use the CREATE ROLE or ALTER ROLE commands to specify time-based constraints.

Access can be restricted by day or by day and time. The constraints are removable without deleting and recreating the role.

Time-based constraints only apply to the role to which they are assigned. If a role is a member of another role that contains a time constraint, the time constraint is not inherited.

Time-based constraints are enforced only during login. The SET ROLE and SET SESSION AUTHORIZATION commands are not affected by any time-based constraints.

Superuser or CREATEROLE privileges are required to set time-based constraints for a role. No one can add time-based constraints to a superuser.

There are two ways to add time-based constraints. Use the keyword DENY in the CREATE ROLE or ALTER ROLE command followed by one of the following.

  • A day, and optionally a time, when access is restricted. For example, no access on Wednesdays.
  • An interval—that is, a beginning and ending day and optional time—when access is restricted. For example, no access from Wednesday 10 p.m. through Thursday at 8 a.m.

You can specify more than one restriction; for example, no access Wednesdays at any time and no access on Fridays between 3:00 p.m. and 5:00 p.m.

There are two ways to specify a day. Use the word DAY followed by either the English term for the weekday, in single quotation marks, or a number between 0 and 6, as shown in the table below.

English TermNumber
DAY ‘Sunday’DAY 0
DAY ‘Monday’DAY 1
DAY ‘Tuesday’DAY 2
DAY ‘Wednesday’DAY 3
DAY ‘Thursday’DAY 4
DAY ‘Friday’DAY 5
DAY ‘Saturday’DAY 6

A time of day is specified in either 12- or 24-hour format. The word TIME is followed by the specification in single quotation marks. Only hours and minutes are specified and are separated by a colon ( : ). If using a 12-hour format, add AM or PM at the end. The following examples show various time specifications.

  1. TIME '14:00' # 24-hour time implied
  2. TIME '02:00 PM' # 12-hour time specified by PM
  3. TIME '02:00' # 24-hour time implied. This is equivalent to TIME '02:00 AM'.

Important: Time-based authentication is enforced with the server time. Timezones are disregarded.

To specify an interval of time during which access is denied, use two day/time specifications with the words BETWEEN and AND, as shown. DAY is always required.

  1. BETWEEN DAY 'Monday' AND DAY 'Tuesday'
  2. BETWEEN DAY 'Monday' TIME '00:00' AND
  3. DAY 'Monday' TIME '01:00'
  4. BETWEEN DAY 'Monday' TIME '12:00 AM' AND
  5. DAY 'Tuesday' TIME '02:00 AM'
  6. BETWEEN DAY 'Monday' TIME '00:00' AND
  7. DAY 'Tuesday' TIME '02:00'
  8. DAY 2 TIME '02:00'

The last three statements are equivalent.

Note: Intervals of days cannot wrap past Saturday.

The following syntax is not correct:

  1. DENY BETWEEN DAY 'Saturday' AND DAY 'Sunday'

The correct specification uses two DENY clauses, as follows:

  1. DENY DAY 'Saturday'
  2. DENY DAY 'Sunday'

The following examples demonstrate creating a role with time-based constraints and modifying a role to add time-based constraints. Only the statements needed for time-based constraints are shown. For more details on creating and altering roles see the descriptions of CREATE ROLE and ALTER ROLE in the Greenplum Database Reference Guide.

Example 1 – Create a New Role with Time-based Constraints

No access is allowed on weekends.

  1. CREATE ROLE generaluser
  2. DENY DAY 'Saturday'
  3. DENY DAY 'Sunday'
  4. ...

Example 2 – Alter a Role to Add Time-based Constraints

No access is allowed every night between 2:00 a.m. and 4:00 a.m.

  1. ALTER ROLE generaluser
  2. DENY BETWEEN DAY 'Monday' TIME '02:00' AND DAY 'Monday' TIME '04:00'
  3. DENY BETWEEN DAY 'Tuesday' TIME '02:00' AND DAY 'Tuesday' TIME '04:00'
  4. DENY BETWEEN DAY 'Wednesday' TIME '02:00' AND DAY 'Wednesday' TIME '04:00'
  5. DENY BETWEEN DAY 'Thursday' TIME '02:00' AND DAY 'Thursday' TIME '04:00'
  6. DENY BETWEEN DAY 'Friday' TIME '02:00' AND DAY 'Friday' TIME '04:00'
  7. DENY BETWEEN DAY 'Saturday' TIME '02:00' AND DAY 'Saturday' TIME '04:00'
  8. DENY BETWEEN DAY 'Sunday' TIME '02:00' AND DAY 'Sunday' TIME '04:00'
  9. ...

Excample 3 – Alter a Role to Add Time-based Constraints

No access is allowed Wednesdays or Fridays between 3:00 p.m. and 5:00 p.m.

  1. ALTER ROLE generaluser
  2. DENY DAY 'Wednesday'
  3. DENY BETWEEN DAY 'Friday' TIME '15:00' AND DAY 'Friday' TIME '17:00'

Dropping a Time-based Restriction

To remove a time-based restriction, use the ALTER ROLE command. Enter the keywords DROP DENY FOR followed by a day/time specification to drop.

  1. DROP DENY FOR DAY 'Sunday'

Any constraint containing all or part of the conditions in a DROP clause is removed. For example, if an existing constraint denies access on Mondays and Tuesdays, and the DROP clause removes constraints for Mondays, the existing constraint is completely dropped. The DROP clause completely removes all constraints that overlap with the constraint in the drop clause. The overlapping constraints are completely removed even if they contain more restrictions that the restrictions mentioned in the DROP clause.

Example 1 - Remove a Time-based Restriction from a Role

  1. ALTER ROLE generaluser
  2. DROP DENY FOR DAY 'Monday'
  3. ...

This statement would remove all constraints that overlap with a Monday constraint for the role generaluser in Example 2, even if there are additional constraints.