src/config/cached_user_info.rs - lookup_privs: correctly handle superuser

This commit is contained in:
Dietmar Maurer 2020-04-27 11:21:34 +02:00
parent d00e1a216f
commit 1347b1152d
1 changed files with 4 additions and 1 deletions

View File

@ -8,7 +8,7 @@ use proxmox::api::section_config::SectionConfigData;
use lazy_static::lazy_static;
use proxmox::api::UserInformation;
use super::acl::{AclTree, ROLE_NAMES};
use super::acl::{AclTree, ROLE_NAMES, ROLE_ADMIN};
use super::user::User;
/// Cache User/Group/Acl configuration data for fast permission tests
@ -105,6 +105,9 @@ impl UserInformation for CachedUserInfo {
}
fn lookup_privs(&self, userid: &str, path: &[&str]) -> u64 {
if self.is_superuser(userid) { return ROLE_ADMIN; }
let roles = self.acl_tree.roles(userid, path);
let mut privs: u64 = 0;
for role in roles {