top of page
  • Shawn McKinney

The Seven Steps of Role Engineering

DEFINED

Role Engineering is the process by which an organization develops, defines, enforces, and maintains role-based access control. RBAC is often seen as a way to improve security controls for access and authorization, as well as to enforce access policies such as segregation of duties (SoD) to meet regulatory compliance. Nov 5, 2014

— Oracle Corporation (Blogs)



PRESENTATION

Link to slides for a related presentation, A Practical Guide To Role Engineering, JavaOne conference, October 27, 2015.

INTRODUCTION

The Role engineering process takes us from a human readable policy syntax to what is loaded into an rbac engine and used by a given application or system.

Here we follow the ANSI RBAC (INCITS 359) spec which prescribes methods like:

This tutorial demonstrates role engineering techniques using standard rbac as applied to a sample set of security use cases.

There is a corresponding github project, written in Java that uses Apache Fortress to show how:


1. DEFINE SECURITY USE CASES FOR THE APPLICATION

SAMPLE USE CASE:


First we’ll describe the policies in a way humans can understand by writing them down as use cases translated from the diagram.

USE CASE DEFINITIONS:

[ LEGEND: RED – ROLES | BLUE – OBJECTS | GREEN – OPERATIONS ]

USE CASE #1 : USER MUST AUTHENTICATE BEFORE LANDING ON THE HOME PAGE.

Every set of security use cases necessarily contains a logon step. With rbac, it implies a call to the createSession api, where credentials are checked and roles activated.

USE CASE #2 : USER MUST BE A BUYER BEFORE PLACING BID ON AUCTION OR BUYING AN ITEM.

A role named ‘Buyers’ is granted rights to place bids and purchase auction items. This use case requires a call to the checkAccess api which we’ll discuss later.

USE CASE #3 : USER MUST BE A SELLER TO CREATE AN AUCTION OR SHIP AN ITEM PURCHASED.

We add role ‘Sellers’, and grant the authority to create an auction and ship an itemthat has just been sold.

USE CASE #4 : ALL USERS MAY CREATE AN ACCOUNT AND SEARCH ITEMS.

Another role, named ‘Users’, is granted the rights to create a new account and search a list of items up for auction. It will be a base role that Buyers and Sellers both extend.

USE CASE #5 : A PARTICULAR USER MAY BE A BUYER, OR A SELLER, BUT NEVER BOTH SIMULTANEOUSLY.

An interesting scenario to consider. Perhaps a conflict of interest due to how they collide. Not to worry, document and move on.

2. DEFINE THE ROLES IN THE APP

The use cases must now be converted into entity lists. Though still human readable, the new data formats are aligned with RBAC.

Create a list of Role names. Use names pulled from use cases 2, 3, and 4.

ADD ROLES:

  • role name: “Users” description: “Basic rights for all buyers and sellers”

  • role name: “Buyers” description: “May bid on and purchase items”

  • role name: “Sellers” description: “May setup auctions and ship items”

Buyers and Sellers inherit from Users as described in use case #4.

Add Role Inheritance Relationships

  • child name: “Buyers” parent name: “Users

  • child name: “Sellers” parent name: “Users

Don’t forget the role combination rule in use case #5:

Role Activation Constraint

  • role name: “Buyers

  • role name: “Sellers

  • type: “DYNAMIC

  • cardinality: “2

3. DEFINE THE RESOURCES AND OPERATIONS

RBAC Permissions are mappings between objects and operations. Here we list the perms described in use cases 2, 3 and 4.

ADD PERMISSIONS:

  • object name: “Item” description: “This is a product that is available for purchase”

    • operation name: “search” description: “Search through list of items”

    • operation name: “bid” description: “Place a bid on a given product”

    • operation name: “buy” description: “Purchase a given product”

    • operation name: “ship” description: “Ships a given product after sale”

  • object name: “Auction” description: “Controls a particular online auction”

    • operation name: “create” description: “May start a new auction”

  • object name: “Account” description: “Each user must have one of these”

    • operation name: “create” description: “Ability to setup a new account”

4. MAP THE ROLES TO THE RESOURCES AND OPERATIONS

Get the list of grants. Again, these mappings naturally derive from the use cases.

GRANT PERMISSIONS TO ROLES:

  • role: “Buyers” object name: “Item” oper: “bid

  • role: “Buyers” object name: “Item” oper: “buy

  • role: “Sellers” object name: “Item” oper: “ship

  • role: “Sellers” object name: “Auction” oper: “create

  • role: “Users” object name: “Item” oper: “search

  • role: “Users” object name: “Account” oper: “create

5. CREATE THE RBAC POLICY LOAD FILE

Hand to the analyst, trained in the particulars of the RBAC engine, the entity lists created in steps 2, 3 and 4. That info will be hand keyed into graphical interface screen, or (better yet) translated to machine readable syntax and loaded automatically by recurrent batch job.

...
<addrole>
  <role name="Role_Users" description=“Base Role for Buyers and Sellers"/>
  <role name="Role_Buyers" description="May bid on and purchase products"/>
  <role name="Role_Sellers" description="May start auctions and ship items"/>
</addrole>

<addroleinheritance>
  <relationship child="Role_Buyers" parent="Role_Users"/>
  <relationship child="Role_Sellers" parent="Role_Users"/>
</addroleinheritance>

<addpermgrant>
  <permgrant objName="SellersPage" opName="link" roleNm="Role_Sellers"/>
  <permgrant objName="BuyersPage" opName="link" roleNm="Role_Buyers"/>
  <permgrant objName="Item" opName="bid" roleNm="Role_Buyers"/>
  <permgrant objName="Item" opName="buy" roleNm="Role_Buyers"/>
  <permgrant objName="Item" opName="ship" roleNm="Role_Sellers"/>
  <permgrant objName="Auction" opName="create" roleNm="Role_Sellers"/>
  <permgrant objName="Item" opName="search" roleNm="Role_Users"/>
  <permgrant objName="Account" opName="create" roleNm="Role_Users"/>
</addpermgrant>

<addsdset>
  <sdset name="BuySel" 
         setmembers="Role_Buyers,Role_Sellers" 
         cardinality="2“
         setType="DYNAMIC" 
         description="Cannot activate both at once."/>
</addsdset>

<addpermobj>
  <permobj objName="Item" description=“..." ou="p1" />
  <permobj objName="Auction" description=“..." ou="p1" />
  <permobj objName="Account" description=“..." ou="p1" />
</addpermobj>

<addpermop>
  <permop objName="Item" opName="bid" description="Bid on a given product"/>
  <permop objName="Item" opName="buy" description="Purchase a given product"/>
  <permop objName="Item" opName="ship" description="Place a product up for sale"/>
  <permop objName="Item" opName="search" description="Search through item list"/>
  <permop objName="Auction" opName="create" description="May start a new auction"/>
  <permop objName="Account" opName="create" description="Ability to add a new account"/>
</addpermop>
...

At the completion of this step, the RBAC policy is loaded into the engine and ready for use.

6. ADD PERMISSION CHECKS TO APPLICATION

It’s time to get the developers involved because there will be code that looks (something) like this:

RbacSession session = getSession();
Permission permission = new Permission( "Item", "bid" );
return accessMgr.checkAccess( session, permission );

How to instrument the checks is up to you. Obviously you won’t hard code the perms. Observe proper isolation to decouple your app from the details of the underlying security system. Favor declarative checks over programmatic. The usual concerns.

A previous post offers ideas, if willing to get dirty hands

7. ASSIGN ROLES TO THE USERS

Before users may access the app, they must be assigned one or more of the corresponding roles. These relationships may be recorded into the RBAC datastore with a batch script (as below), but often times performed by GUI, e.g. during application enrollment.

SAMPLE USER TO ROLE ASSIGNMENT POLICY FILE

...
<adduserrole>
  <userrole userId="johndoe" name="Role_Buyers"/>
  <userrole userId="johndoe" name="Role_Sellers"/>
  <userrole userId="johndoe" name="Super_Users"/>
  <userrole userId="ssmith" name="Role_Buyers"/>
  <userrole userId="rtaylor" name="Role_Sellers"/>
</adduserrole>
...

The following diagram depicts the role to role and user to role relationships defined by this policy.

ROLE-ROLE AND USER-ROLE RELATIONSHIPS


RBAC EXTRA CREDIT

A. WHAT HAPPENS WHEN JOHNDOE SIGNS ON?

(Will both roles be activated into the RBAC session?)

No, one of the roles must be discarded due to SoD constraint.

BEGIN JOHNDOE LOGON TRACE USING FORTRESS CONSOLE

Enter userId:
johndoe 
 name :Sellers
 msg :validate userId [johndoe] failed activation of assignedRole [Sellers] 
 validates DSD Set Name:BuySel Cardinality:2

RBAC allows the caller to select one or more roles during createSession. So we may call with johndoe passing either of their assigned roles in the argument list. This process is called selective role activation. Thus John Doe may be a Buyer during one session and Seller the next, never both at once.


MORE ON CREATESESSION:

Session createSession(User user,
                    boolean isTrusted)
                      throws SecurityException

THE FOLLOWING ATTRIBUTES MAY BE SET WHEN CALLING THIS METHOD

  • User.userId

  • User.password

  • User.roles – This is where you list role names for activation. Default is all assigned roles will be attempted.

B. WHAT IF WE WANT TO PREVENT SOMEONE FROM BEING ASSIGNED BOTH ROLES?

USE STATIC SEPARATION OF DUTIES INSTEAD


...
<addsdset> 
  <sdset name="BuySel" 
         setmembers="Role_Buyers,Role_Sellers" 
         cardinality="2“ 
         setType="STATIC" 
         description="Cannot assign both to one user."
  /> 
</addsdset>
...

WHAT HAPPENS NOW WHEN WE TRY TO ASSIGN A USER BOTH ROLES?

BEGIN ASSIGNUSER TRACE IN FORTRESS CONSOLE


Enter userId:
janedoe
Enter role name:
sellers
ERROR: assignUser failed SSD check, rc=5088
Role [sellers], SSD Set Name [buysel2], Cardinality:2

REMEMBER, CONSTRAINTS APPLIED AT ROLE…

  • assignment time: are Static Separation of Duties (SSD)

  • activation time: are Dynamic Separation of Duties (DSD)

C. WHAT PERMS WILL A BUYER GET?

When a user activates the Buyers role what perms will they have?

BEGIN SSMITH PERM TRACE USING FORTRESS CONSOLE


**perm:1***
object name [Account]
operation name [create]

**perm:2***
object name [Item] 
operation name [search]

**perm:3***
object name [Item]
operation name [buy]

**perm:4***
object name [Item] 
operation name [bid]

D. WHAT ABOUT A SELLER?

When a user activates the Sellers role what perms will they have?

BEGIN RTAYLOR PERM TRACE USING FORTRESS CONSOLE

**perm:1***
object name [Account]
operation name [create]

**perm:2***
object name [Item] 
operation name [search] 

**perm:3***
object name [Auction] 
operation name [create]
 
**perm:4***
object name [Item]
operation name [ship]

E. WHY DO BUYERS AND SELLERS HAVE COMMON PERMS?

Notice that Buyers and Sellers both have access rights to Account.create and Item.search. The reason is both extend a common base role: Users.

F. THE ABOVE USE CASE IS OVERLY SIMPLISTIC. CAN WE DO SOMETHING MORE REALISTIC?

The Apache Fortress End-to-End Security Tutorial delves into fine-grained access control of data tied to customers. It demonstrates how to implement a complicated set of requirements, verified with automated selenium test cases.


USER TO ROLE RELATIONS IN TUTORIAL

USER TO ROLE RELATIONS IN SECURITY TUTORIAL

ROLE TO PERMISSION RELATIONS IN TUTORIAL

ROLE TO PERMISSION RELATIONS IN TUTORIAL

127 views0 comments

Recent Posts

See All

OpenSSL 3

Symas is pleased to announce that all of its OpenLDAP 2.5, starting with 2.5.17-2, and its 2.6 builds, starting with 2.6.7-2, feature OpenSSL 3.0.8-1 and later. Upgrades are seamless and functionality

OpenLDAP Containers and a Helm Chart

Symas announces commercial support for an OpenLDAP container and associated Helm Chart, simplifying deployment of OpenLDAP within Kubernetes or anywhere Docker is available. The containers and chart,

bottom of page