package guardian
Role-based access control for OCaml
Install
Dune Dependency
Authors
Maintainers
Sources
0.0.4.tar.gz
md5=45ecb4358a2405a3b4cc263f25ad995c
sha512=d070bd79c14123f720bd0c14291ee520bda3bfac5d6ceb58ceb85185c9be4cebbc5c99894ce29b62bf9e2ed4291ae094506d4d176c12945e99ed9d0283f55db8
doc/src/guardian/guardian.ml.html
Source file guardian.ml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
type context = (string * string) list module Uuid = Uuid module type RoleSig = Role.Sig module Util = struct let decompose_variant_string s = let open CCString in let s = trim s in let fmt = format_of_string "`%s (%s@)" in try Scanf.sscanf s fmt (fun name params -> lowercase_ascii name, CCList.map trim (split_on_char ',' params)) with | End_of_file -> let fmt = format_of_string "`%s" in Scanf.sscanf s fmt (fun name -> lowercase_ascii name, []) ;; end module Make (A : RoleSig) (T : RoleSig) = struct module Uuid = Uuid module Action = Action module ActorRoleSet : Role_set.S with type elt = A.t = Role_set.Make (A) module TargetRoleSet : Role_set.S with type elt = T.t = Role_set.Make (T) module Authorizable = struct type 'a t = { roles : ActorRoleSet.t ; owner : Uuid.Actor.t option ; uuid : Uuid.Actor.t ; typ : 'a } [@@deriving eq, ord, show, yojson] let to_string t = show (fun f _x -> Format.pp_print_string f "") t let make ?owner roles typ uuid = { roles; owner; uuid; typ } let a_owns_b a b = CCOption.map_or ~default:false (fun b' -> a.uuid = b') b.owner ;; let has_role t role = ActorRoleSet.mem role t.roles end module AuthorizableTarget = struct type 'a t = { uuid : Uuid.Target.t ; owner : Uuid.Actor.t option ; entity : TargetRoleSet.t ; typ : 'a } [@@deriving eq, ord, show, yojson] let to_string t = show (fun f _x -> Format.pp_print_string f "") t let make ?owner entity typ uuid = { owner; uuid; typ; entity } end module Authorizer = struct module Actor = struct type spec = [ `ActorEntity of A.t | `Actor of Uuid.Actor.t ] [@@deriving eq, show, ord] let value = function | `ActorEntity x -> A.show x | `Actor x -> Uuid.Actor.to_string x ;; end module Target = struct type spec = [ `TargetEntity of T.t | `Target of Uuid.Target.t ] [@@deriving eq, show, ord] let value = function | `TargetEntity x -> T.show x | `Target x -> Uuid.Target.to_string x ;; end type auth_rule = Actor.spec * Action.t * Target.spec [@@deriving eq, show, ord] (** [action, target] Denotes an effect a function may have on and therefore which permissions an actor needs to invoke it. *) type effect = Action.t * Target.spec [@@deriving eq, show, ord] module Effect_set = Set.Make (struct type t = effect [@@deriving ord] end) (** Convenience function to return a [can] function. Takes an optional target specification (for error reporting purposes) and a list of [guardian] rules of the form [actor, action, target] and returns a function that looks like: [any_of]: indicates that the checker should pass if any of the rules in the list is satisfied. The default behaviour is to only pass if all rules are. [val can : actor:\[ whatever \] Guard.Authorizable.t -> (unit, string) result] *) let checker_of_rules ?(any_of = false) actor (rules : auth_rule list) = let open CCResult in let results = rules |> CCList.map (fun (actor', action, target) -> let is_matched = function | `Actor uuid -> uuid = actor.Authorizable.uuid | `ActorEntity role -> ActorRoleSet.mem role actor.Authorizable.roles in if is_matched actor' then Ok () else Error (Format.asprintf "Actor %s does not have permission to %s" (Authorizable.to_string actor) (show_effect (action, target)))) in if any_of then if CCList.exists (( = ) (Ok ())) results then Ok () else Error (Format.asprintf "Actor %s does not satisfy any of the following rules: %s" (Authorizable.to_string actor) ([%show: auth_rule list] rules)) else results |> CCResult.flatten_l |> CCResult.map (fun (_ : unit list) -> ()) ;; module Auth_rule_set = Set.Make (struct type t = auth_rule let compare = compare_auth_rule end) module type Actor_module = sig type t type kind (** [to_authorizable x] converts [x] to a uniquely identifiable object, complete * with roles. The [authorizable] may not, however, be converted back into type [t]. **) end module type Target_module = sig type t type kind (** [to_authorizable x] converts [x] to a uniquely identifiable object, complete * with roles. The [authorizable] may not, however, be converted back into type [t]. **) end end module type Persistence_s = Persistence.Contract with type 'a authorizable = 'a Authorizable.t and type 'b authorizable_target = 'b AuthorizableTarget.t and type actor_role_set = ActorRoleSet.t and type actor_spec = Authorizer.Actor.spec and type target_role_set = TargetRoleSet.t and type target_spec = Authorizer.Target.spec and type auth_rule = Authorizer.auth_rule module Make_persistence (Backend : Persistence.Backend with type 'a authorizable = 'a Authorizable.t and type 'b authorizable_target = 'b AuthorizableTarget.t and type actor_role_set = ActorRoleSet.t and type actor_spec = Authorizer.Actor.spec and type target_role_set = TargetRoleSet.t and type target_spec = Authorizer.Target.spec and type auth_rule = Authorizer.auth_rule and type role = A.t) : Persistence_s = struct include Backend (** turn a single argument function returning a [result] into one that raises a [Failure] instead *) let with_exn ?ctx f name arg = match%lwt f ?ctx arg with | Ok x -> Lwt.return x | Error s -> failwith @@ Format.asprintf "%s failed: %s" name s ;; let exists_in (auth_rules : auth_rule list) actor action = CCList.exists (fun (actor', action', _) -> match actor' with | `Actor id -> actor.Authorizable.uuid = id && action = action' | `ActorEntity role -> ActorRoleSet.mem role actor.Authorizable.roles && (action = action' || action' = `Manage)) auth_rules ;; module Actor = struct module AuthorizableActor = Authorizable include Actor let revoke_role ?ctx id role = revoke_roles ?ctx id (ActorRoleSet.singleton role) ;; let ?ctx (typ : 'kind) (id : Uuid.Actor.t) = let open Lwt_result.Infix in Authorizable.mem ?ctx id >>= fun exists -> if exists then find ?ctx typ id else Lwt_result.fail (Format.asprintf "Authorizable %s doesn't exist." (Uuid.Actor.to_string id)) ;; (** [save_rules rules] adds all the permissions [rules] to the backend. If there is an error at any point, it returns a `result` containing all of the items that were not added. *) let save_rules ?ctx = Lwt_list.fold_left_s (fun acc x -> match%lwt save_rule ?ctx x with | Ok () -> CCResult.map (CCList.cons x) acc |> Lwt_result.lift | Error _ -> CCResult.map_err (CCList.cons x) acc |> Lwt_result.lift) (Ok []) ;; (** This convenience function should be used to decorate the [to_authorizable] * functions of authorizable modules. The newly decorated function connects * to the persistent backend to ensure that the authorizable's roles and ownership * are consistent in both spaces. *) let decorate ?ctx ( : 'a -> 'kind AuthorizableActor.t) : 'a -> ('kind AuthorizableActor.t, string) Lwt_result.t = fun x -> let open Lwt_result.Syntax in let ent = to_authorizable x in let uuid = ent.uuid in let* mem = Authorizable.mem ?ctx uuid in if mem then let* ent' = find_authorizable ?ctx ent.typ uuid in let roles = ActorRoleSet.union ent.roles ent'.roles in let* () = grant_roles ?ctx uuid roles in let* owner = match ent.owner, ent'.owner with | Some owner, None -> let* () = save_owner ?ctx ~owner uuid in Lwt.return_ok (Some owner) | None, Some owner -> Lwt.return_ok (Some owner) | None, None -> Lwt.return_ok None | Some x, Some y when x <> y -> (* Still unclear what the desirable behaviour is in this case. *) (* Lwt_result.fail( "decorate: both the database and the decorated function \ returned distinct values for the owner of authorizable " ^ Uuid.to_string uuid) *) let* () = save_owner ?ctx ~owner:x uuid in Lwt.return_ok (Some x) | Some x, Some _ (* when x = y *) -> Lwt.return_ok (Some x) in Lwt.return_ok AuthorizableActor.{ uuid; roles; owner; typ = ent.typ } else let* () = Authorizable.create ?ctx ?owner:ent.owner ent.roles uuid in Lwt.return_ok ent ;; let find_roles_exn ?ctx = with_exn find_roles ?ctx "find_roles_exn" end module Target = struct module AuthorizableActor = Authorizable include Target let flatten = CCFun.(CCResult.flatten_l %> CCResult.map CCList.flatten) let decorate ?ctx ( : 'a -> 'kind AuthorizableTarget.t) : 'a -> ('kind AuthorizableTarget.t, string) Lwt_result.t = fun x -> let open Lwt_result.Syntax in let (ent : 'kind AuthorizableTarget.t) = to_authorizable x in let* mem = Authorizable.mem ?ctx ent.uuid in if mem then let* ent' = find ?ctx ent.typ ent.uuid in let* owner = match ent.owner, ent'.owner with | Some owner, None -> let* () = save_owner ?ctx ~owner ent.uuid in Lwt.return_ok (Some owner) | None, Some owner -> Lwt.return_ok (Some owner) | None, None -> Lwt.return_ok None | Some x, Some y when x <> y -> (* Still unclear what the desirable behaviour is in this case. *) (* Lwt_result.fail( "decorate: both the database and the decorated function \ returned distinct values for the owner of authorizable " ^ Uuid.to_string ent.uuid) *) let* () = save_owner ?ctx ~owner:x ent.uuid in Lwt.return_ok (Some x) | Some x, Some _ (* when x = y *) -> Lwt.return_ok (Some x) in AuthorizableTarget.make ?owner ent.entity ent.typ ent.uuid |> Lwt.return_ok else let* () = Authorizable.create ?ctx ?owner:ent.owner ent.entity ent.uuid in Lwt.return_ok ent ;; let find_checker ?ctx target = let open Lwt_result.Syntax in let* roles = find_roles ?ctx target.AuthorizableTarget.uuid in let%lwt auth_rules = TargetRoleSet.elements roles |> CCList.map (fun m -> `TargetEntity m) |> CCList.cons (`Target target.AuthorizableTarget.uuid) |> Lwt_list.map_s (Actor.find_rules ?ctx) in let* auth_rules = auth_rules |> flatten |> Lwt_result.lift in Lwt.return_ok @@ fun actor action -> let is_owner = target.AuthorizableTarget.owner |> CCOption.map_or ~default:false (Uuid.Actor.equal actor.AuthorizableActor.uuid) in let is_self = let open Uuid in target.AuthorizableTarget.uuid |> Target.equal (actor.uuid |> Actor.to_string |> Target.of_string_exn) in if is_self || is_owner then true else exists_in auth_rules actor action ;; let find_role_checker ?ctx role_set = let open Lwt_result.Syntax in let%lwt auth_rules = TargetRoleSet.elements role_set |> CCList.map (fun r -> `TargetEntity r) |> Lwt_list.map_s (Actor.find_rules ?ctx) in let* auth_rules = auth_rules |> flatten |> Lwt_result.lift in Lwt.return_ok @@ exists_in auth_rules ;; end (** [wrap_function ?error ~effects f] produces a wrapped version of [f] which checks permissions and gracefully reports authorization errors. *) let wrap_function ?ctx (error : string -> 'etyp) (effects : Authorizer.effect list) (fcn : 'param -> ('rval, 'etyp) Lwt_result.t) = let open Lwt_result.Infix in let open Lwt_result.Syntax in let* (collect_cans : ('a authorizable -> (unit, 'etyp) result) list) = effects |> Lwt_list.map_s (fun (action, target) -> (match target with | `Target uuid -> Target.(find ?ctx () uuid >>= find_checker ?ctx) | `TargetEntity role -> Target.find_role_checker ?ctx (TargetRoleSet.singleton role)) |> Lwt_result.map (fun can actor -> CCFun.( can actor action |> function | true -> Ok () | false -> Error (Format.asprintf "Entity %s does not have permission to %s target %s." (Authorizable.to_string actor) (Action.to_string action) (Authorizer.Target.value target) |> error)))) |> Lwt.map CCResult.flatten_l in let can actor = CCList.map (fun can -> can actor) collect_cans |> CCResult.flatten_l |> CCResult.map (fun (_ : unit list) -> ()) |> Lwt_result.lift in Lwt.return_ok (fun actor param -> let* () = can actor in fcn param) ;; (* Because of effects that look like [`Action A, `Target X] we need to make an extra pass to get all of entity X's roles, because if you have permission to do A to one of X's roles, then you should be able to do A to X. *) let rec expand_effects ?ctx (effects : Authorizer.effect list) : (Authorizer.effect list, string) result Lwt.t = let open CCFun in let open Lwt.Infix in let open Authorizer.Effect_set in let actor_of = Uuid.(Target.to_string %> Actor.of_string_exn) in let flatten = CCResult.flatten_l %> CCResult.map CCList.flatten in let expand = Lwt_list.map_s (fun effect -> match effect with | action, `Target (x : Uuid.Target.t) -> actor_of x |> Actor.find_roles ?ctx (* search for roles if target would be an actor, default: empty *) >|= CCResult.get_or ~default:ActorRoleSet.empty >|= ActorRoleSet.elements >>= Lwt_list.map_s (fun role -> expand_effects ?ctx [ action, `TargetEntity (role |> A.show |> T.of_string) ]) >|= flatten |> Lwt_result.map (CCList.fold_left (flip add) (singleton effect) %> elements) | x -> Lwt.return_ok [ x ]) in effects |> expand >|= flatten |> Lwt_result.map_error (Format.asprintf "Failed to expand the effects of the target. Error message: %s") ;; (** [collect_rules e] Query the database for a list of rules pertaining to the effects [e]. *) let collect_rules ?ctx (effects : Authorizer.effect list) = let open CCFun in let flatten = CCResult.flatten_l %> CCResult.map CCList.flatten in Lwt_result.map_error (Format.asprintf "Failed to collect rules for effects list %s. Error message: %s" ([%show: Authorizer.effect list] effects)) @@ let open Lwt_result.Infix in let open Authorizer.Auth_rule_set in effects |> expand_effects ?ctx >>= Lwt_list.map_s (fun (action, target) -> Actor.find_rules ?ctx target >|= CCList.filter (fun (_, rule_action, _) -> action = rule_action || rule_action = `Manage)) %> Lwt.map flatten >|= flip (CCList.fold_right add) empty >|= elements ;; let checker_of_effects ?ctx effects actor : (unit, string) result Lwt.t = let ( >>> ) = Lwt_result.bind_result in collect_rules ?ctx effects >>> Authorizer.checker_of_rules ~any_of:true actor ;; let find_rules_exn ?ctx = with_exn Actor.find_rules ?ctx "find_rules_exn" let save_rule_exn ?ctx = with_exn Actor.save_rule ?ctx "save_rule_exn" let delete_rule_exn ?ctx = with_exn Actor.delete_rule ?ctx "delete_rule_exn" end end
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>