2020-04-17 12:11:25 +00:00
|
|
|
use anyhow::{bail, Error};
|
2020-04-06 10:09:27 +00:00
|
|
|
use serde_json::Value;
|
|
|
|
|
2020-04-17 08:08:45 +00:00
|
|
|
use proxmox::api::{api, ApiMethod, Router, RpcEnvironment, Permission};
|
2020-04-06 10:09:27 +00:00
|
|
|
use proxmox::api::schema::{Schema, StringSchema};
|
|
|
|
|
|
|
|
use crate::api2::types::*;
|
|
|
|
use crate::config::user;
|
2020-04-17 09:04:36 +00:00
|
|
|
use crate::config::acl::{PRIV_SYS_AUDIT, PRIV_PERMISSIONS_MODIFY};
|
2020-04-06 10:09:27 +00:00
|
|
|
|
|
|
|
pub const PBS_PASSWORD_SCHEMA: Schema = StringSchema::new("User Password.")
|
|
|
|
.format(&PASSWORD_FORMAT)
|
|
|
|
.min_length(5)
|
|
|
|
.max_length(64)
|
|
|
|
.schema();
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {},
|
|
|
|
},
|
|
|
|
returns: {
|
|
|
|
description: "List users (with config digest).",
|
|
|
|
type: Array,
|
|
|
|
items: {
|
2020-05-18 12:18:36 +00:00
|
|
|
type: user::User,
|
2020-04-06 10:09:27 +00:00
|
|
|
description: "User configuration (without password).",
|
|
|
|
},
|
|
|
|
},
|
2020-04-17 08:08:45 +00:00
|
|
|
access: {
|
2020-04-30 07:30:00 +00:00
|
|
|
permission: &Permission::Privilege(&["access", "users"], PRIV_SYS_AUDIT, false),
|
2020-04-17 08:08:45 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
)]
|
|
|
|
/// List all users
|
|
|
|
pub fn list_users(
|
|
|
|
_param: Value,
|
|
|
|
_info: &ApiMethod,
|
2020-05-18 12:18:36 +00:00
|
|
|
mut rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<Vec<user::User>, Error> {
|
2020-04-06 10:09:27 +00:00
|
|
|
|
|
|
|
let (config, digest) = user::config()?;
|
|
|
|
|
2020-05-18 12:18:36 +00:00
|
|
|
let list = config.convert_to_typed_array("user")?;
|
|
|
|
|
|
|
|
rpcenv["digest"] = proxmox::tools::digest_to_hex(&digest).into();
|
2020-04-06 10:09:27 +00:00
|
|
|
|
2020-05-18 12:18:36 +00:00
|
|
|
Ok(list)
|
2020-04-06 10:09:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
protected: true,
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
userid: {
|
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
password: {
|
|
|
|
schema: PBS_PASSWORD_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
enable: {
|
|
|
|
schema: user::ENABLE_USER_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
expire: {
|
|
|
|
schema: user::EXPIRE_USER_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
firstname: {
|
|
|
|
schema: user::FIRST_NAME_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
lastname: {
|
|
|
|
schema: user::LAST_NAME_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
email: {
|
|
|
|
schema: user::EMAIL_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-04-17 08:08:45 +00:00
|
|
|
access: {
|
2020-04-30 07:30:00 +00:00
|
|
|
permission: &Permission::Privilege(&["access", "users"], PRIV_PERMISSIONS_MODIFY, false),
|
2020-04-17 08:08:45 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
)]
|
|
|
|
/// Create new user.
|
2020-05-19 07:49:39 +00:00
|
|
|
pub fn create_user(password: Option<String>, param: Value) -> Result<(), Error> {
|
2020-04-06 10:09:27 +00:00
|
|
|
|
|
|
|
let _lock = crate::tools::open_file_locked(user::USER_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
|
|
|
|
|
2020-05-19 07:49:39 +00:00
|
|
|
let user: user::User = serde_json::from_value(param)?;
|
2020-04-06 10:09:27 +00:00
|
|
|
|
|
|
|
let (mut config, _digest) = user::config()?;
|
|
|
|
|
2020-05-19 07:49:39 +00:00
|
|
|
if let Some(_) = config.sections.get(&user.userid) {
|
|
|
|
bail!("user '{}' already exists.", user.userid);
|
2020-04-06 10:09:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-19 07:49:39 +00:00
|
|
|
let (username, realm) = crate::auth::parse_userid(&user.userid)?;
|
2020-04-08 09:57:14 +00:00
|
|
|
let authenticator = crate::auth::lookup_authenticator(&realm)?;
|
2020-04-06 10:09:27 +00:00
|
|
|
|
2020-05-19 07:49:39 +00:00
|
|
|
config.set_data(&user.userid, "user", &user)?;
|
2020-04-06 10:09:27 +00:00
|
|
|
|
|
|
|
user::save_config(&config)?;
|
|
|
|
|
2020-04-08 09:57:14 +00:00
|
|
|
if let Some(password) = password {
|
|
|
|
authenticator.store_password(&username, &password)?;
|
|
|
|
}
|
|
|
|
|
2020-04-06 10:09:27 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
userid: {
|
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
|
|
|
},
|
2020-04-09 08:19:38 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
},
|
|
|
|
returns: {
|
|
|
|
description: "The user configuration (with config digest).",
|
|
|
|
type: user::User,
|
|
|
|
},
|
2020-04-17 08:08:45 +00:00
|
|
|
access: {
|
2020-04-30 07:30:00 +00:00
|
|
|
permission: &Permission::Privilege(&["access", "users"], PRIV_SYS_AUDIT, false),
|
2020-04-17 08:08:45 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
)]
|
|
|
|
/// Read user configuration data.
|
2020-05-18 12:18:36 +00:00
|
|
|
pub fn read_user(userid: String, mut rpcenv: &mut dyn RpcEnvironment) -> Result<user::User, Error> {
|
2020-04-06 10:09:27 +00:00
|
|
|
let (config, digest) = user::config()?;
|
2020-05-18 12:18:36 +00:00
|
|
|
let user = config.lookup("user", &userid)?;
|
|
|
|
rpcenv["digest"] = proxmox::tools::digest_to_hex(&digest).into();
|
|
|
|
Ok(user)
|
2020-04-06 10:09:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
protected: true,
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
userid: {
|
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
comment: {
|
|
|
|
optional: true,
|
|
|
|
schema: SINGLE_LINE_COMMENT_SCHEMA,
|
|
|
|
},
|
|
|
|
password: {
|
|
|
|
schema: PBS_PASSWORD_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
enable: {
|
|
|
|
schema: user::ENABLE_USER_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
expire: {
|
|
|
|
schema: user::EXPIRE_USER_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
firstname: {
|
|
|
|
schema: user::FIRST_NAME_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
lastname: {
|
|
|
|
schema: user::LAST_NAME_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
email: {
|
|
|
|
schema: user::EMAIL_SCHEMA,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
digest: {
|
|
|
|
optional: true,
|
|
|
|
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-04-17 08:08:45 +00:00
|
|
|
access: {
|
2020-04-30 07:30:00 +00:00
|
|
|
permission: &Permission::Privilege(&["access", "users"], PRIV_PERMISSIONS_MODIFY, false),
|
2020-04-17 08:08:45 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
)]
|
|
|
|
/// Update user configuration.
|
|
|
|
pub fn update_user(
|
|
|
|
userid: String,
|
|
|
|
comment: Option<String>,
|
|
|
|
enable: Option<bool>,
|
|
|
|
expire: Option<i64>,
|
|
|
|
password: Option<String>,
|
|
|
|
firstname: Option<String>,
|
|
|
|
lastname: Option<String>,
|
|
|
|
email: Option<String>,
|
|
|
|
digest: Option<String>,
|
|
|
|
) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let _lock = crate::tools::open_file_locked(user::USER_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
|
|
|
|
|
|
|
|
let (mut config, expected_digest) = user::config()?;
|
|
|
|
|
|
|
|
if let Some(ref digest) = digest {
|
|
|
|
let digest = proxmox::tools::hex_to_digest(digest)?;
|
|
|
|
crate::tools::detect_modified_configuration_file(&digest, &expected_digest)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut data: user::User = config.lookup("user", &userid)?;
|
|
|
|
|
|
|
|
if let Some(comment) = comment {
|
|
|
|
let comment = comment.trim().to_string();
|
|
|
|
if comment.is_empty() {
|
|
|
|
data.comment = None;
|
|
|
|
} else {
|
|
|
|
data.comment = Some(comment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(enable) = enable {
|
|
|
|
data.enable = if enable { None } else { Some(false) };
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(expire) = expire {
|
|
|
|
data.expire = if expire > 0 { Some(expire) } else { None };
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(password) = password {
|
2020-04-08 09:57:14 +00:00
|
|
|
let (username, realm) = crate::auth::parse_userid(&userid)?;
|
|
|
|
let authenticator = crate::auth::lookup_authenticator(&realm)?;
|
|
|
|
authenticator.store_password(&username, &password)?;
|
2020-04-06 10:09:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(firstname) = firstname {
|
|
|
|
data.firstname = if firstname.is_empty() { None } else { Some(firstname) };
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(lastname) = lastname {
|
|
|
|
data.lastname = if lastname.is_empty() { None } else { Some(lastname) };
|
|
|
|
}
|
|
|
|
if let Some(email) = email {
|
|
|
|
data.email = if email.is_empty() { None } else { Some(email) };
|
|
|
|
}
|
|
|
|
|
|
|
|
config.set_data(&userid, "user", &data)?;
|
|
|
|
|
|
|
|
user::save_config(&config)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
protected: true,
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
userid: {
|
|
|
|
schema: PROXMOX_USER_ID_SCHEMA,
|
|
|
|
},
|
|
|
|
digest: {
|
|
|
|
optional: true,
|
|
|
|
schema: PROXMOX_CONFIG_DIGEST_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2020-04-17 08:08:45 +00:00
|
|
|
access: {
|
2020-04-30 07:30:00 +00:00
|
|
|
permission: &Permission::Privilege(&["access", "users"], PRIV_PERMISSIONS_MODIFY, false),
|
2020-04-17 08:08:45 +00:00
|
|
|
},
|
2020-04-06 10:09:27 +00:00
|
|
|
)]
|
|
|
|
/// Remove a user from the configuration file.
|
|
|
|
pub fn delete_user(userid: String, digest: Option<String>) -> Result<(), Error> {
|
|
|
|
|
|
|
|
let _lock = crate::tools::open_file_locked(user::USER_CFG_LOCKFILE, std::time::Duration::new(10, 0))?;
|
|
|
|
|
|
|
|
let (mut config, expected_digest) = user::config()?;
|
|
|
|
|
|
|
|
if let Some(ref digest) = digest {
|
|
|
|
let digest = proxmox::tools::hex_to_digest(digest)?;
|
|
|
|
crate::tools::detect_modified_configuration_file(&digest, &expected_digest)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
match config.sections.get(&userid) {
|
|
|
|
Some(_) => { config.sections.remove(&userid); },
|
|
|
|
None => bail!("user '{}' does not exist.", userid),
|
|
|
|
}
|
|
|
|
|
|
|
|
user::save_config(&config)?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
const ITEM_ROUTER: Router = Router::new()
|
|
|
|
.get(&API_METHOD_READ_USER)
|
|
|
|
.put(&API_METHOD_UPDATE_USER)
|
|
|
|
.delete(&API_METHOD_DELETE_USER);
|
|
|
|
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
|
|
.get(&API_METHOD_LIST_USERS)
|
|
|
|
.post(&API_METHOD_CREATE_USER)
|
|
|
|
.match_all("userid", &ITEM_ROUTER);
|