verify_job: fix priv check
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
bb5c77fffa
commit
0aa5815fb6
|
@ -223,6 +223,15 @@ pub struct VerificationJobConfig {
|
||||||
pub max_depth: Option<usize>,
|
pub max_depth: Option<usize>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl VerificationJobConfig {
|
||||||
|
pub fn store_with_ns(&self) -> DatastoreWithNamespace {
|
||||||
|
DatastoreWithNamespace {
|
||||||
|
store: self.store.clone(),
|
||||||
|
ns: self.ns.clone().unwrap_or_default(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[api(
|
#[api(
|
||||||
properties: {
|
properties: {
|
||||||
config: {
|
config: {
|
||||||
|
|
|
@ -58,7 +58,7 @@ pub fn list_verification_jobs(
|
||||||
.convert_to_typed_array("verification")?
|
.convert_to_typed_array("verification")?
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter(|job: &VerificationJobConfig| {
|
.filter(|job: &VerificationJobConfig| {
|
||||||
let privs = user_info.lookup_privs(&auth_id, &["datastore", &job.store]);
|
let privs = user_info.lookup_privs(&auth_id, &job.store_with_ns().acl_path());
|
||||||
if privs & required_privs == 0 {
|
if privs & required_privs == 0 {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -114,9 +114,11 @@ pub fn run_verification_job(
|
||||||
let (config, _digest) = verify::config()?;
|
let (config, _digest) = verify::config()?;
|
||||||
let verification_job: VerificationJobConfig = config.lookup("verification", &id)?;
|
let verification_job: VerificationJobConfig = config.lookup("verification", &id)?;
|
||||||
|
|
||||||
|
let store_with_ns = verification_job.store_with_ns();
|
||||||
|
|
||||||
user_info.check_privs(
|
user_info.check_privs(
|
||||||
&auth_id,
|
&auth_id,
|
||||||
&["datastore", &verification_job.store],
|
&store_with_ns.acl_path(),
|
||||||
PRIV_DATASTORE_VERIFY,
|
PRIV_DATASTORE_VERIFY,
|
||||||
true,
|
true,
|
||||||
)?;
|
)?;
|
||||||
|
|
|
@ -45,7 +45,7 @@ pub fn list_verification_jobs(
|
||||||
let list = list
|
let list = list
|
||||||
.into_iter()
|
.into_iter()
|
||||||
.filter(|job: &VerificationJobConfig| {
|
.filter(|job: &VerificationJobConfig| {
|
||||||
let privs = user_info.lookup_privs(&auth_id, &["datastore", &job.store]);
|
let privs = user_info.lookup_privs(&auth_id, &job.store_with_ns().acl_path());
|
||||||
|
|
||||||
privs & required_privs != 00
|
privs & required_privs != 00
|
||||||
})
|
})
|
||||||
|
@ -81,7 +81,7 @@ pub fn create_verification_job(
|
||||||
|
|
||||||
user_info.check_privs(
|
user_info.check_privs(
|
||||||
&auth_id,
|
&auth_id,
|
||||||
&["datastore", &config.store],
|
&config.store_with_ns().acl_path(),
|
||||||
PRIV_DATASTORE_VERIFY,
|
PRIV_DATASTORE_VERIFY,
|
||||||
false,
|
false,
|
||||||
)?;
|
)?;
|
||||||
|
@ -132,7 +132,7 @@ pub fn read_verification_job(
|
||||||
let required_privs = PRIV_DATASTORE_AUDIT | PRIV_DATASTORE_VERIFY;
|
let required_privs = PRIV_DATASTORE_AUDIT | PRIV_DATASTORE_VERIFY;
|
||||||
user_info.check_privs(
|
user_info.check_privs(
|
||||||
&auth_id,
|
&auth_id,
|
||||||
&["datastore", &verification_job.store],
|
&verification_job.store_with_ns().acl_path(),
|
||||||
required_privs,
|
required_privs,
|
||||||
true,
|
true,
|
||||||
)?;
|
)?;
|
||||||
|
@ -215,10 +215,10 @@ pub fn update_verification_job(
|
||||||
|
|
||||||
let mut data: VerificationJobConfig = config.lookup("verification", &id)?;
|
let mut data: VerificationJobConfig = config.lookup("verification", &id)?;
|
||||||
|
|
||||||
// check existing store
|
// check existing store and NS
|
||||||
user_info.check_privs(
|
user_info.check_privs(
|
||||||
&auth_id,
|
&auth_id,
|
||||||
&["datastore", &data.store],
|
&data.store_with_ns().acl_path(),
|
||||||
PRIV_DATASTORE_VERIFY,
|
PRIV_DATASTORE_VERIFY,
|
||||||
true,
|
true,
|
||||||
)?;
|
)?;
|
||||||
|
@ -258,13 +258,6 @@ pub fn update_verification_job(
|
||||||
}
|
}
|
||||||
|
|
||||||
if let Some(store) = update.store {
|
if let Some(store) = update.store {
|
||||||
// check new store
|
|
||||||
user_info.check_privs(
|
|
||||||
&auth_id,
|
|
||||||
&["datastore", &store],
|
|
||||||
PRIV_DATASTORE_VERIFY,
|
|
||||||
true,
|
|
||||||
)?;
|
|
||||||
data.store = store;
|
data.store = store;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -289,6 +282,14 @@ pub fn update_verification_job(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// check new store and NS
|
||||||
|
user_info.check_privs(
|
||||||
|
&auth_id,
|
||||||
|
&data.store_with_ns().acl_path(),
|
||||||
|
PRIV_DATASTORE_VERIFY,
|
||||||
|
true,
|
||||||
|
)?;
|
||||||
|
|
||||||
config.set_data(&id, "verification", &data)?;
|
config.set_data(&id, "verification", &data)?;
|
||||||
|
|
||||||
verify::save_config(&config)?;
|
verify::save_config(&config)?;
|
||||||
|
@ -334,7 +335,7 @@ pub fn delete_verification_job(
|
||||||
let job: VerificationJobConfig = config.lookup("verification", &id)?;
|
let job: VerificationJobConfig = config.lookup("verification", &id)?;
|
||||||
user_info.check_privs(
|
user_info.check_privs(
|
||||||
&auth_id,
|
&auth_id,
|
||||||
&["datastore", &job.store],
|
&job.store_with_ns().acl_path(),
|
||||||
PRIV_DATASTORE_VERIFY,
|
PRIV_DATASTORE_VERIFY,
|
||||||
true,
|
true,
|
||||||
)?;
|
)?;
|
||||||
|
|
Loading…
Reference in New Issue