Skip to main content

Row-Level Security

In addition to its general security, InterSystems IRIS® data platform provides SQL security with a granularity of a single row. This is called row-level security. With row-level security, each row holds a list of authorized viewers, which can be either users or roles. See Users and Roles for more information.

Introduction

Typically, SQL security is controlled by granting SELECT privilege on a table or view to a user or role. The use of roles simplifies access control when the number of security roles is substantially fewer than the number of users. In most cases, view-level security provides adequate control over which rows each user can select; however, when the number of views required becomes very large, another alternative for fine-grained access control is needed.

For example, a hospital may make patient-specific data available online to each patient, and creating a separate view for each patient is not practical.

The following are constraints on the use of row-level security:

  • Row-level security is only available for persistent classes.

  • Row-level security is only available for tables on the InterSystems IRIS server. It is not available for linked or foreign tables.

  • Row-level security is only enforced when accessing rows from SQL. It is not enforced when directly accessing globals or when accessing globals via the object interface.

You implement row-level security for a table by adding a field that holds a list of usernames or roles such that only those usernames or roles can access a given row. This special field can be generated or it can have a name that you specify. In either case, the data in this field is for internal use and your code cannot access it. To populate the data in this field, you define a class method in the corresponding class; this method can accept values of fields from the record and returns a list of usernames or roles

Setting Up Row-Level Security

To enable row-level security for a table, you will need to make changes to the class from which the property is projected.

  1. Decide the name of the property that will store the usernames or roles that can access data for a given row. This can be either %READERLIST (the default) or some other name.

    Also decide the logic that will determine values for this property.

  2. In the class definition, set the value of the ROWLEVELSECURITY parameter:

    • If you want to store the usernames or roles in %READERLIST, then set the parameter to 1:

      Parameter ROWLEVELSECURITY = 1;
    • If you want to store the values in another property in the same class, then set the parameter equal to the name of that property.

      Parameter ROWLEVELSECURITY = "rlsprop";

      Where rlsprop is the name of a property in the same class.

  3. Consider the index for this property. Once you compile the class, the %RLI index is automatically added to the class, although it is not visible in the class definition. By default, the %RLI index is a collection index on the %READERLIST property or the property specified by the ROWLEVELSECURITY. The query optimizer uses it to minimize the performance impact when row-level security is enabled.

    If you expect to never have more than one username or role in this property, then explicitly define the %RLI index as an ordinary (non-collection) bitmap index. This generally provides optimal performance.

  4. In the same class, also define a %SecurityPolicy() class method, which specifies the role and usernames that are permitted to select the row, subject to view and table SELECT privileges.

    This class method must return an empty string, a username, a role, or a comma-separated list of usernames or roles. If the method returns an empty string, there is no specific restriction for this row; the row is visible to all users who hold the SELECT privilege on the table.

    Important:

    The %All role does not automatically have access to rows in a table that are protected with row-level security. If %All is to have access to such a row, the %SecurityPolicy() method must explicitly return the %All role, along with others as needed.

    The structure of the %SecurityPolicy() method is:

    ClassMethod %SecurityPolicy() As %String [ SqlProc ]
    {
        RETURN ""
    }
    

    Its characteristics are:

    • It is a class method with the required name %SecurityPolicy.

    • It returns a string (type %String).

    • It takes zero or more arguments. If this method takes any arguments, each argument name must match a property name in the class. If any property names do not exactly match their SQL field names, instead use the SQL field names as argument names.

    • The SqlProc keyword specifies that the method can be invoked as a stored procedure.

  5. Compile the class and any dependent classes.

Adding Row-Level Security to a Table with Existing Data

To add row-level security to a table with existing data, first follow the procedure described in Setting Up Row-Level Security. Then:

  1. Rebuild the indexes for the table.

  2. Update the value of the property that lists the users and roles who can view each row.

Rebuilding the Indexes

Caution:

Do not rebuild indexes while users are accessing the data for this table. Doing so may result in inaccurate query results.

The procedure to rebuild the indexes for a table is:

  1. If the table has any views defined that have the WITH CHECK OPTION clause, remove these views with the DROP VIEW command. (You can re-create these views after updating who has access to each row).

  2. From the Management Portal home page, go to the SQL page (System Explorer > SQL) page.

  3. Select the namespace that contains the table.

  4. Under Tables, select the name of the table. This displays the Catalog Details for the table.

  5. On the Actions drop-down list, click Rebuild Table’s Indices.

For more information on rebuilding indexes, see Define and Build Indexes.

Updating Who Can View Each Row

The procedure to do this is:

  1. From the Management Portal home page, go to the SQL page (System Explorer > SQL) page.

  2. Select the namespace that contains the table.

  3. Click Execute Query.

  4. In the editable area, issue a statement to update the table. It should have the following form:

    UPDATE MySchema.MyClass SET rlsprop = 
                    MySchema.SecurityPolicy(MySQLColumnName1, ...)
    

    where

    • MySchema is the schema (package) containing the class.

    • MyClass is the name of the class.

    • rlsprop is the field containing the list of users and roles who can read the row. This is %READERLIST by default and the property name specified in the declaration of the ROWLEVELSECURITY parameter otherwise.

    • SecurityPolicy is the SqlName of the %SecurityPolicy() method. If SqlName is not specified, the default is classname_sys_SecurityPolicy. For example, if the class is MySchema.MyClass, then the default SqlName of the %SecurityPolicy() method is myClass_sys_SecurityPolicy (and the fully qualified name is MySchema.MyClass_sys_SecurityPolicy).

    • MySQLColumnName1, ... is the set of SQL column names corresponding to the arguments, if any, defined in the %SecurityPolicy() class method.

  5. Click Execute.

  6. If desired, re-create any view that you initially removed.

Performance Tips

The %READERLIST property is a calculated field and its value is determined by the %SecurityPolicy() method. Whenever an INSERT or UPDATE occurs, %SecurityPolicy() is invoked for that row and populates the value of %READERLIST.

A collection index on the %READERLIST property is defined, and can be exploited by the query optimizer to minimize the performance impact when row-level security is enabled.

By default, when you set ROWLEVELSECURITY equal to 1, a collection index is defined for the %READERLIST property (column) because the security policy can, in general, return more than one comma-separated role or username. If your security policy never returns more than one user or role name, then you can override the ROWLEVELSECURITY parameter and explicitly define the %RLI index as an ordinary (non-collection) bitmap index. This generally provides optimal performance.

Security Tips

Keep in mind the following security factors when using row-level security:

  • Row-level security operates in addition to table-level security. To execute a SELECT, INSERT, UPDATE, or DELETE statement, a user must have been granted both table-level access and row-level access for the relevant row.

  • User privileges are checked dynamically at runtime — when there is an attempt to execute an SQL command.

  • If you create an updateable view and specify WITH CHECK OPTION, then an INSERT operation on that view checks if the row to be inserted passes the WHERE clause that is specified in the view. Further, if you are creating the view from a table with row-level security, then the INSERT fails if either the WHERE clause of the view or the implicit row-level security predicate would cause that row to not be visible if you were to issue a command of SELECT * FROM on the view.

  • If you have access to a row, it is possible to change the value of the %READERLIST field (or whatever field holds the list of users and roles who can view the row). This means that you can perform an action that, directly or indirectly, removes your access to the row.

  • If you attempt to insert a row that would have violated a UNIQUE constraint if row-level security had not been defined, then it will still violate the constraint if row-level security is defined, regardless of whether the row causing the constraint failure is visible to the updating transaction.

See Also

FeedbackOpens in a new tab