I've seen Attribute Based Access Control mentioned several times on Stack Overflow (example). However, a Google search and stack overflow search later I cannot find much, only abac (which doesn't seem mature enough to warrant real consideration).

But some more research indicates that XACML is basically an ABAC approach, and that seems to have gotten some use. So is anyone actively using ABAC/XACML?


Note: my use case is an enterprisey java system that seems to need more than simple RBAC. For example:

  • Let's say that there are two organizations within a single company called A and B
  • Each company has its own set of data, DataSetA and DataSetB
  • There are roles Employee and Manager
  • Employees can view data from their own organization
  • Managers can edit data from their own organization and view data from the other organization (i.e. company-wide)

I cannot find a way to implement this in a RBAC system without creating roles such as ReadDataSetA and EditDataSetA. Approaches that require this many roles are too cumbersome since there will be hundreds of organizations and companies.

link|improve this question

50% accept rate
feedback

4 Answers

up vote 5 down vote accepted

I've implemented a number of system that used attribute based access control. There are certain classes of systems where RBAC simply doesn't work (such as the example you've listed)

I've never used a 3rd party library for ABAC though, our use cases have tended to be sufficiently specialised to justify building our own solutions.

The better (and more complex) systems I worked on were built on top of Java Permissions (and PermissionCollections), making heavy use of "implies" (with some relatively complex logic) and conjunctions (a specially handled AndPermission)

You also need somewhere to check permissions that is low enough down the stack to know which data is being acted on. This is different to a RBAC system, where you might be able to simply mark a URL as belonging to a given Role. In an ABAC system you typically need to know (and include) that attributes, and sometimes that might actually involved loading some additional data first - e.g. Whether user "X" can update record "123" depends on whether that is in DataSet "A" or DataSet "B" Without knowing the internals of your application, it's tricky to offer much advice there, but if you have a "services" layer, then that's probably the place to put the ABAC checks (I've have success with an interception [decorator] framework sitting on top of our services layer to control access)

Once you have those, then it tends to be relatively straight forward. A request comes in for

"delete record 123"

The logged in user is "X"

Then you'd do something like

(Access Check)

   String org = getOrganisitionForRecord(123);
   Permission required = new EditRecordPermission(org);
   if( userX.getPermissions().implies( required ) )
   {
      // Proceed
   }
   else
   {
      throw new SecurityException("...");
   }
   // .........

(ManagerPermission)

  public boolean implies(Permission permission)
  {
     if(permission instanceof EditRecordPermission)
     {
          return this.organisation.equals( ((EditRecordPermission)permission).getOrganisation() );
     }
     if(permission instanceof ViewRecordPermission)
     {
          return this.organisation.equals( ((ViewRecordPermission)permission).getOrganisation() );
     }
     return false;
  }

Alternatively, you can have move that complexity into a user permissions resolver, that will determine all the permissions a user has (e.g. A manager has "edit for Org X" and "view for Org X"). That makes the "does this user have this permission?" check a lot simpler, but depending on the complexity of your ABAC rules, it's not always feasible. My experience is that for complex systems you end up somewhere in between - you interpret the user's attributes to create a set of derived permissions, but those permissions still have some complexity in their implies methods.

HTH.

link|improve this answer
feedback

The main users are big, complex organizations like DoD that want fine-grained centralized access control, but are large enough that getting A and B to agree on role (for RBAC) meanings is next to impossible. Imagine Army and Navy agreeing on what files a General/Admiral can access. For pure ABAC, there's a similar problem; imagine Army Intelligence and the base commissary agreeing on whether a credit card number attribute should be stored.

In such circles, there's a strong desire to move away from both RBAC and ABAC to something new. They call it PBAC for policy-based access control, which boils down to something finer-grained than either predecessor can provide.

link|improve this answer
feedback

My brother's company, Jericho Systems, does something of that nature, although it's a little more complicated. You can poke around their website, they might have something on there about how their system works.

I know their flagship product is a sort of single-signon system where access is controlled by a decision-making algorithm, which takes many attributes into consideration.

link|improve this answer
feedback

A few companies use it but it is very difficult to get right so most companies get by with broader access control like role base, resource level, or instance level.

The major challenge is getting the data model built properly and handling performance, especially in higher traffic applications.

Regardless of which type of access control you choose, I suggest you check out the Apache Shiro Java Security Framework. http://shiro.apache.org.

It will make you life much easier when it comes time to build access control into your application. They have a very handy but optional permission syntax, Wildcard Permissions, that should save you a lot of effort.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.