Files
probo/pkg/itam/policies.go
Ludovic Vielle 6cac6a8775 Split employee devices from DeviceConnection
viewer.enrolledDevices shared DeviceConnection with the admin
org list, so totalCount had to authorize with both
employee-device:list and device:list. Mirror
EmployeeDocumentConnection: a dedicated EmployeeDeviceConnection
without totalCount, and keep DeviceConnection.totalCount for
the org fleet only. Cover assumed-session device:get IDOR in e2e.

Signed-off-by: Ludovic Vielle <ludovic@probo.com>
2026-07-24 15:08:38 +02:00

84 lines
3.4 KiB
Go

// Copyright (c) 2025-2026 Probo Inc <hello@probo.com>.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
package itam
import (
"go.probo.inc/probo/pkg/iam"
"go.probo.inc/probo/pkg/iam/policy"
)
var (
organizationCondition = policy.Equals("principal.organization_id", "resource.organization_id")
ownerCondition = policy.Equals("principal.id", "resource.owner_id")
)
// FullAccessPolicy grants complete ITAM access to organization owners and
// admins.
var FullAccessPolicy = policy.NewPolicy(
"itam:full-access",
"ITAM Full Access",
policy.Allow(
ActionDeviceList, ActionEmployeeDeviceList, ActionDeviceGet, ActionDeviceCreate,
ActionDeviceEnroll, ActionDeviceRevoke, ActionDeviceAssignOwner,
ActionDevicePostureList,
).WithSID("itam-full-access").When(organizationCondition),
policy.Allow(ActionEmployeeDeviceGet).
WithSID("itam-full-access-get-own-device").
When(organizationCondition, ownerCondition),
).WithDescription("Full ITAM access for organization owners and admins")
// ViewerPolicy grants read-only access to ITAM entities for organization
// viewers.
var ViewerPolicy = policy.NewPolicy(
"itam:viewer",
"ITAM Viewer",
policy.Allow(
ActionDeviceGet, ActionDeviceList,
ActionDevicePostureList,
).WithSID("itam-read-access").When(organizationCondition),
).WithDescription("Read-only ITAM access for organization viewers")
// EmployeePolicy grants self-enrollment access to organization employees.
// Employee-device list/get mirror core:employee-document:*: a dedicated
// surface so employees can read their own devices without itam:device:list.
var EmployeePolicy = policy.NewPolicy(
"itam:employee",
"ITAM Employee",
policy.Allow(ActionDeviceEnroll).
WithSID("itam-employee-enroll-device").
When(organizationCondition),
policy.Allow(ActionDeviceGet, ActionEmployeeDeviceGet).
WithSID("itam-employee-get-own-device").
When(organizationCondition, ownerCondition),
policy.Allow(ActionEmployeeDeviceList).
WithSID("itam-employee-device-list").
When(organizationCondition),
).WithDescription("Self-enrollment: enroll own device and read own enrolled devices")
// ITAMPolicySet returns the PolicySet for the ITAM service.
func ITAMPolicySet() *iam.PolicySet {
return iam.NewPolicySet().
AddRolePolicy("OWNER", FullAccessPolicy).
AddRolePolicy("ADMIN", FullAccessPolicy).
AddRolePolicy("VIEWER", ViewerPolicy).
AddRolePolicy("EMPLOYEE", EmployeePolicy)
}