mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-07-26 00:15:27 +00:00
acl: fix any_priv_below when used with API tokens
The previous implementation had one issue with not handling API tokens correctly. In general, AclTree(Node) operates on the role level, not the priv level - the latter is handled by cached_user_info.rs Accordingly, the ACL tree helpers now return a list of paths where *any* role is defined for the given AuthId, and any_priv_below then maps those paths to privs via the regular helpers for priv lookup/checking. this approach should also be robust if groups and group ACLs are ever introduced. Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
663165d662
commit
d8ec2a25ba
@ -4,7 +4,7 @@ use std::path::{Path, PathBuf};
|
|||||||
use std::str::FromStr;
|
use std::str::FromStr;
|
||||||
use std::sync::{Arc, RwLock};
|
use std::sync::{Arc, RwLock};
|
||||||
|
|
||||||
use anyhow::{bail, format_err, Error};
|
use anyhow::{bail, Error};
|
||||||
|
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
|
|
||||||
@ -302,43 +302,21 @@ impl AclTreeNode {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Check if auth_id has any of the provided privileges on the current note.
|
fn get_child_paths(
|
||||||
///
|
|
||||||
/// If `only_propagated` is set to true only propagating privileges will be checked.
|
|
||||||
fn check_any_privs(
|
|
||||||
&self,
|
&self,
|
||||||
|
path: String,
|
||||||
auth_id: &Authid,
|
auth_id: &Authid,
|
||||||
privs: u64,
|
paths: &mut Vec<String>,
|
||||||
only_propagated: bool,
|
) -> Result<(), Error> {
|
||||||
) -> Result<bool, Error> {
|
for (sub_comp, child_node) in &self.children {
|
||||||
for role in self.extract_roles(&auth_id, !only_propagated).into_keys() {
|
let roles = child_node.extract_roles(auth_id, true);
|
||||||
let current_privs = Role::from_str(&role)
|
let child_path = format!("{path}/{sub_comp}");
|
||||||
.map_err(|e| format_err!("invalid role in current node: {role} - {e}"))?
|
if !roles.is_empty() {
|
||||||
as u64;
|
paths.push(child_path.clone());
|
||||||
|
|
||||||
if privs & current_privs != 0 {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
}
|
||||||
|
child_node.get_child_paths(child_path, auth_id, paths)?;
|
||||||
}
|
}
|
||||||
|
Ok(())
|
||||||
return Ok(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Checks if the given auth_id has any of the privileges specified by `privs` on the sub-tree
|
|
||||||
/// below the current node.
|
|
||||||
fn any_privs_below(&self, auth_id: &Authid, privs: u64) -> Result<bool, Error> {
|
|
||||||
// set only_propagated to false to check all roles on the current node
|
|
||||||
if self.check_any_privs(auth_id, privs, false)? {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (_comp, child) in self.children.iter() {
|
|
||||||
if child.any_privs_below(auth_id, privs)? {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return Ok(false);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -356,6 +334,17 @@ impl AclTree {
|
|||||||
self.get_node_mut(&path)
|
self.get_node_mut(&path)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn get_node(&self, path: &[&str]) -> Option<&AclTreeNode> {
|
||||||
|
let mut node = &self.root;
|
||||||
|
for comp in path {
|
||||||
|
node = match node.children.get(*comp) {
|
||||||
|
Some(n) => n,
|
||||||
|
None => return None,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
Some(node)
|
||||||
|
}
|
||||||
|
|
||||||
fn get_node_mut(&mut self, path: &[&str]) -> Option<&mut AclTreeNode> {
|
fn get_node_mut(&mut self, path: &[&str]) -> Option<&mut AclTreeNode> {
|
||||||
let mut node = &mut self.root;
|
let mut node = &mut self.root;
|
||||||
for comp in path {
|
for comp in path {
|
||||||
@ -668,42 +657,16 @@ impl AclTree {
|
|||||||
role_map
|
role_map
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Checks whether the `auth_id` has any of the privilegs `privs` on any object below `path`.
|
pub fn get_child_paths(&self, auth_id: &Authid, path: &[&str]) -> Result<Vec<String>, Error> {
|
||||||
pub fn any_privs_below(
|
let path = path.join("/");
|
||||||
&self,
|
|
||||||
auth_id: &Authid,
|
|
||||||
path: &[&str],
|
|
||||||
privs: u64,
|
|
||||||
) -> Result<bool, Error> {
|
|
||||||
let mut node = &self.root;
|
|
||||||
|
|
||||||
// check first if there's any propagated priv we need to be aware of
|
let mut res = Vec::new();
|
||||||
for outer in path {
|
|
||||||
for c in outer.split('/') {
|
if let Some(node) = self.get_node(&split_acl_path(&path)) {
|
||||||
if node.check_any_privs(auth_id, privs, true)? {
|
node.get_child_paths(path, auth_id, &mut res)?;
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
// check next component
|
|
||||||
node = node.children.get(&c.to_string()).ok_or(format_err!(
|
|
||||||
"component '{c}' of path '{path:?}' does not exist in current acl tree"
|
|
||||||
))?;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// check last node in the path too
|
Ok(res)
|
||||||
if node.check_any_privs(auth_id, privs, true)? {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
// now search through the sub-tree
|
|
||||||
for (_comp, child) in node.children.iter() {
|
|
||||||
if child.any_privs_below(auth_id, privs)? {
|
|
||||||
return Ok(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// we could not find any privileges, return false
|
|
||||||
return Ok(false);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -791,7 +754,7 @@ mod test {
|
|||||||
use super::AclTree;
|
use super::AclTree;
|
||||||
use anyhow::Error;
|
use anyhow::Error;
|
||||||
|
|
||||||
use pbs_api_types::{Authid, ROLE_ADMIN, ROLE_DATASTORE_READER, ROLE_TAPE_READER};
|
use pbs_api_types::Authid;
|
||||||
|
|
||||||
fn check_roles(tree: &AclTree, auth_id: &Authid, path: &str, expected_roles: &str) {
|
fn check_roles(tree: &AclTree, auth_id: &Authid, path: &str, expected_roles: &str) {
|
||||||
let path_vec = super::split_acl_path(path);
|
let path_vec = super::split_acl_path(path);
|
||||||
@ -935,7 +898,7 @@ acl:1:/storage/store1:user1@pbs:DatastoreBackup
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn test_any_privs_below() -> Result<(), Error> {
|
fn test_get_child_paths() -> Result<(), Error> {
|
||||||
let tree = AclTree::from_raw(
|
let tree = AclTree::from_raw(
|
||||||
"\
|
"\
|
||||||
acl:0:/store/store2:user1@pbs:Admin\n\
|
acl:0:/store/store2:user1@pbs:Admin\n\
|
||||||
@ -948,29 +911,28 @@ acl:1:/storage/store1:user1@pbs:DatastoreBackup
|
|||||||
let user1: Authid = "user1@pbs".parse()?;
|
let user1: Authid = "user1@pbs".parse()?;
|
||||||
let user2: Authid = "user2@pbs".parse()?;
|
let user2: Authid = "user2@pbs".parse()?;
|
||||||
|
|
||||||
// user1 has admin on "/store/store2/store3" -> return true
|
// user1 has admin on "/store/store2/store3" -> return paths
|
||||||
assert!(tree.any_privs_below(&user1, &["store"], ROLE_ADMIN)?);
|
let paths = tree.get_child_paths(&user1, &["store"])?;
|
||||||
|
assert!(paths.contains(&"store/store2/store3".to_string()));
|
||||||
|
|
||||||
// user2 has not privileges under "/store/store2/store3" --> return false
|
// user2 has no privileges under "/store/store2/store3" --> return empty
|
||||||
assert!(!tree.any_privs_below(
|
assert!(tree
|
||||||
&user2,
|
.get_child_paths(&user2, &["store", "store2", "store3"],)?
|
||||||
&["store", "store2", "store3"],
|
.is_empty());
|
||||||
ROLE_DATASTORE_READER
|
|
||||||
)?);
|
|
||||||
|
|
||||||
// user2 has DatastoreReader privileges under "/store/store2/store31" --> return true
|
// user2 has DatastoreReader privileges under "/store/store2/store31" --> return paths
|
||||||
assert!(tree.any_privs_below(&user2, &["store/store2/store31"], ROLE_DATASTORE_READER)?);
|
let paths = tree.get_child_paths(&user2, &["store/store2/store31"])?;
|
||||||
|
assert!(paths.contains(&"store/store2/store31/store4/store6".to_string()));
|
||||||
|
|
||||||
// user2 has no TapeReader privileges under "/store/store2/store31" --> return false
|
// user2 has no privileges under "/store/store2/foo/bar/baz"
|
||||||
assert!(!tree.any_privs_below(&user2, &["store/store2/store31"], ROLE_TAPE_READER)?);
|
assert!(tree
|
||||||
|
.get_child_paths(&user2, &["store", "store2", "foo/bar/baz"])?
|
||||||
|
.is_empty());
|
||||||
|
|
||||||
// user2 has no DatastoreReader propagating privileges on
|
// user2 has DatastoreReader privileges on "/store/store2/store31/store4/store6", but not on any child paths --> return empty
|
||||||
// "/store/store2/store31/store4/store6" --> return true
|
assert!(tree
|
||||||
assert!(tree.any_privs_below(
|
.get_child_paths(&user2, &["store/store2/store31/store4/store6"],)?
|
||||||
&user2,
|
.is_empty());
|
||||||
&["store/store2/store31/store4/store6"],
|
|
||||||
ROLE_DATASTORE_READER
|
|
||||||
)?);
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
@ -187,7 +187,24 @@ impl CachedUserInfo {
|
|||||||
path: &[&str],
|
path: &[&str],
|
||||||
privs: u64,
|
privs: u64,
|
||||||
) -> Result<bool, Error> {
|
) -> Result<bool, Error> {
|
||||||
self.acl_tree.any_privs_below(auth_id, path, privs)
|
// if the anchor path itself has matching propagated privs, we skip checking children
|
||||||
|
let (_privs, propagated_privs) = self.lookup_privs_details(auth_id, path);
|
||||||
|
if propagated_privs & privs != 0 {
|
||||||
|
return Ok(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
// get all sub-paths with roles defined for `auth_id`
|
||||||
|
let paths = self.acl_tree.get_child_paths(auth_id, path)?;
|
||||||
|
|
||||||
|
for path in paths.iter() {
|
||||||
|
// early return if any sub-path has any of the privs we are looking for
|
||||||
|
if privs & self.lookup_privs(auth_id, &[path.as_str()]) != 0 {
|
||||||
|
return Ok(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// no paths or no matching paths
|
||||||
|
Ok(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user