Build a Bitwise Permission System

jannisdev

Jannis

Posted on October 20, 2022

Build a Bitwise Permission System

Permissions are everywhere and very important to secure your application from unauthorized actions and potential data loss.
A system to handle and combine permissions can be overwhelming and maybe too complex, but there's a better way called πŸ” Bitwise Permission System!

πŸ›  How to build your own

I will be doing this in JavaScript but the system is pretty much in every language possible.

Operators

Let's quickly discuss the bitwise operators. I'll give you a small overview here.

Bits is the unit 0 or 1. It's the smallest unit of data a computer can process and store.
For example you can convert the number 3 into bits which would be 110. I'm not going any deeper on bits, there's a lot of resources in the internet.

Example Β Operator Name Description
1100 & 0100 = 0100 & AND Sets bit to 1 if both are 1
Β 1100 | 1000 = 1100 | OR Sets bit to 1 if one is 1
Β 0100 1010 = 1110 ^ XOR Sets bit to 1 if only one is 1
~0110 = 1001 ~ NOT Invert each bit

We are going to build a small project to check if a person is allowed to enter different areas in our headquarter.

First create our permissions for each area.



const DEFAULT = 1 // 0001
const LABORATORY = 2 // 0010
const CAFE = 4 // 0100
const PARK = 8 // 1000


Enter fullscreen mode Exit fullscreen mode

Next let's create three different users and give them some unique permissions. Do not use addition only OR operator! (Thanks to @naveennamani for correcting me)



const Elen = DEFAULT | CAFE // 0101
const Carl = DEFAULT | LABORATORY // 0011
const Jenny = DEFAULT | CAFE | PARK // 1101


Enter fullscreen mode Exit fullscreen mode

Here quickly some operations to change a person's permissions.



let Naveen = DEFAULT;
Naveen |= PARK; // add permission
Naveen ^= LABORATORY; // toggle permission
Naveen &= (~PARK); // remove permission
console.log(Naveen);  // 0011 (DEFAULT and LABORATORY)


Enter fullscreen mode Exit fullscreen mode

To check where each person has permission to access too we'll create a function that should return us an object with true or false for each area.



function checkPermissions(person) {
  // Default if you have no permissions
  var permissions = {
    default: false,
    laboratory: false,
    cafe: false,
    park: false,
  }

  // Person can enter the building
  if(person & DEFAULT) {
    permissions.default = true
  }

  // Person can enter the laboratory
  if(person & LABORATORY) {
    permissions.laboratory = true
  }

  // Person can enter the cafe
  if(person & CAFE) {
    permissions.cafe = true
  }

  // Person can enter the park
  if(person & PARK) {
    permissions.park = true
  }

  // Return permissions of this person
  return permissions
}


Enter fullscreen mode Exit fullscreen mode

To check if this worked let's print out the permissions of each persons.



const permsOfElen = checkPermissions(Elen)
console.log("Permissions of Elen: ", JSON.parse(permsOfElen))

const permsOfCarl = checkPermissions(Carl)
console.log("Permissions of Carl: ", JSON.parse(permsOfCarl))

const permsOfJenny = checkPermissions(Jenny)
console.log("Permissions of Jenny: ", JSON.parse(permsOfJenny))


Enter fullscreen mode Exit fullscreen mode

And here we have the correct output:



"Permissions of Elen: ", {
  default: true, // <--
  laboratory: false,
  cafe: true, // <--
  park: false
}
"Permissions of Carl: ", {
  default: true, // <--
  laboratory: true, // <--
  cafe: false,
  park: false
}
"Permissions of Jenny: ", {
  default: true, // <--
  laboratory: false,
  cafe: true, // <--
  park: true // <--
}


Enter fullscreen mode Exit fullscreen mode

Here's the Code!

Β πŸ“ Where can you use them

You can use bitwise permission systems in every application. It's fast because of binary and very easy to implement. Also the scalability of this system is to so easy and almost to infinite or let's say until you reached the limit of your datatype πŸ˜‰.

You can use bitwise also for a role-based permission system where you give a role multiple permissions and then maybe only check for the role and not each permission πŸ€·β€β™‚οΈ.

Me at AquaHubStudio will use this system in every application to authorize certain actions. Follow me on my journey of AquaHub!

πŸ”₯ Last words

Thanks for reading!
Don't hesitate to comment on tips or problems. I will respond to every comment with joy.

Support me

πŸ’– πŸ’ͺ πŸ™… 🚩
jannisdev
Jannis

Posted on October 20, 2022

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related

Build a Bitwise Permission System
javascript Build a Bitwise Permission System

October 20, 2022