2020-07-21 11:41:07 +00:00
|
|
|
use apt_pkg_native::Cache;
|
|
|
|
use anyhow::{Error, bail};
|
|
|
|
use serde_json::{json, Value};
|
|
|
|
|
|
|
|
use proxmox::{list_subdirs_api_method, const_regex};
|
2020-07-23 09:19:52 +00:00
|
|
|
use proxmox::api::{api, RpcEnvironment, RpcEnvironmentType, Permission};
|
|
|
|
use proxmox::api::router::{Router, SubdirMap};
|
2020-07-21 11:41:07 +00:00
|
|
|
|
2020-07-23 09:19:52 +00:00
|
|
|
use crate::server::WorkerTask;
|
|
|
|
|
|
|
|
use crate::config::acl::{PRIV_SYS_AUDIT, PRIV_SYS_MODIFY};
|
2020-08-06 13:46:01 +00:00
|
|
|
use crate::api2::types::{APTUpdateInfo, NODE_SCHEMA, Userid, UPID_SCHEMA};
|
2020-07-21 11:41:07 +00:00
|
|
|
|
|
|
|
const_regex! {
|
|
|
|
VERSION_EPOCH_REGEX = r"^\d+:";
|
|
|
|
FILENAME_EXTRACT_REGEX = r"^.*/.*?_(.*)_Packages$";
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:41:12 +00:00
|
|
|
// FIXME: once the 'changelog' API call switches over to 'apt-get changelog' only,
|
|
|
|
// consider removing this function entirely, as it's value is never used anywhere
|
|
|
|
// then (widget-toolkit doesn't use the value either)
|
2020-07-21 11:41:07 +00:00
|
|
|
fn get_changelog_url(
|
|
|
|
package: &str,
|
|
|
|
filename: &str,
|
|
|
|
version: &str,
|
|
|
|
origin: &str,
|
|
|
|
component: &str,
|
|
|
|
) -> Result<String, Error> {
|
|
|
|
if origin == "" {
|
|
|
|
bail!("no origin available for package {}", package);
|
|
|
|
}
|
|
|
|
|
|
|
|
if origin == "Debian" {
|
2020-10-21 09:41:12 +00:00
|
|
|
let mut command = std::process::Command::new("apt-get");
|
|
|
|
command.arg("changelog");
|
|
|
|
command.arg("--print-uris");
|
|
|
|
command.arg(package);
|
|
|
|
let output = crate::tools::run_command(command, None)?; // format: 'http://foo/bar' package.changelog
|
|
|
|
let output = match output.splitn(2, ' ').next() {
|
|
|
|
Some(output) => {
|
|
|
|
if output.len() < 2 {
|
|
|
|
bail!("invalid output (URI part too short) from 'apt-get changelog --print-uris: {}", output)
|
|
|
|
}
|
|
|
|
output[1..output.len()-1].to_owned()
|
|
|
|
},
|
|
|
|
None => bail!("invalid output from 'apt-get changelog --print-uris': {}", output)
|
2020-07-21 11:41:07 +00:00
|
|
|
};
|
2020-10-21 09:41:12 +00:00
|
|
|
return Ok(output);
|
2020-07-21 11:41:07 +00:00
|
|
|
} else if origin == "Proxmox" {
|
2020-10-21 09:41:12 +00:00
|
|
|
// FIXME: Use above call to 'apt changelog <pkg> --print-uris' as well.
|
|
|
|
// Currently not possible as our packages do not have a URI set in their Release file.
|
2020-07-21 11:41:07 +00:00
|
|
|
let version = (VERSION_EPOCH_REGEX.regex_obj)().replace_all(version, "");
|
|
|
|
|
|
|
|
let base = match (FILENAME_EXTRACT_REGEX.regex_obj)().captures(filename) {
|
|
|
|
Some(captures) => {
|
|
|
|
let base_capture = captures.get(1);
|
|
|
|
match base_capture {
|
|
|
|
Some(base_underscore) => base_underscore.as_str().replace("_", "/"),
|
|
|
|
None => bail!("incompatible filename, cannot find regex group")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => bail!("incompatible filename, doesn't match regex")
|
|
|
|
};
|
|
|
|
|
|
|
|
return Ok(format!("http://download.proxmox.com/{}/{}_{}.changelog",
|
|
|
|
base, package, version));
|
|
|
|
}
|
|
|
|
|
|
|
|
bail!("unknown origin ({}) or component ({})", origin, component)
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:41:10 +00:00
|
|
|
struct FilterData<'a> {
|
|
|
|
// this is version info returned by APT
|
|
|
|
installed_version: &'a str,
|
|
|
|
candidate_version: &'a str,
|
|
|
|
|
|
|
|
// this is the version info the filter is supposed to check
|
|
|
|
active_version: &'a str,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list_installed_apt_packages<F: Fn(FilterData) -> bool>(filter: F)
|
2020-07-21 11:41:07 +00:00
|
|
|
-> Vec<APTUpdateInfo> {
|
|
|
|
|
|
|
|
let mut ret = Vec::new();
|
|
|
|
|
|
|
|
// note: this is not an 'apt update', it just re-reads the cache from disk
|
|
|
|
let mut cache = Cache::get_singleton();
|
|
|
|
cache.reload();
|
|
|
|
|
|
|
|
let mut cache_iter = cache.iter();
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
match cache_iter.next() {
|
|
|
|
Some(view) => {
|
|
|
|
let di = query_detailed_info(&filter, view);
|
|
|
|
if let Some(info) = di {
|
|
|
|
ret.push(info);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
None => {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2020-10-21 09:41:10 +00:00
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
fn query_detailed_info<'a, F, V>(
|
|
|
|
filter: F,
|
|
|
|
view: V,
|
|
|
|
) -> Option<APTUpdateInfo>
|
|
|
|
where
|
|
|
|
F: Fn(FilterData) -> bool,
|
|
|
|
V: std::ops::Deref<Target = apt_pkg_native::sane::PkgView<'a>>
|
|
|
|
{
|
|
|
|
let current_version = view.current_version();
|
|
|
|
let candidate_version = view.candidate_version();
|
|
|
|
|
|
|
|
let (current_version, candidate_version) = match (current_version, candidate_version) {
|
|
|
|
(Some(cur), Some(can)) => (cur, can), // package installed and there is an update
|
|
|
|
(Some(cur), None) => (cur.clone(), cur), // package installed and up-to-date
|
|
|
|
(None, Some(_)) => return None, // package could be installed
|
|
|
|
(None, None) => return None, // broken
|
|
|
|
};
|
|
|
|
|
|
|
|
// get additional information via nested APT 'iterators'
|
|
|
|
let mut view_iter = view.versions();
|
|
|
|
while let Some(ver) = view_iter.next() {
|
|
|
|
|
|
|
|
let package = view.name();
|
|
|
|
let version = ver.version();
|
|
|
|
let mut origin_res = "unknown".to_owned();
|
|
|
|
let mut section_res = "unknown".to_owned();
|
|
|
|
let mut priority_res = "unknown".to_owned();
|
|
|
|
let mut change_log_url = "".to_owned();
|
|
|
|
let mut short_desc = package.clone();
|
|
|
|
let mut long_desc = "".to_owned();
|
|
|
|
|
|
|
|
let fd = FilterData {
|
|
|
|
installed_version: ¤t_version,
|
|
|
|
candidate_version: &candidate_version,
|
|
|
|
active_version: &version,
|
2020-07-21 11:41:07 +00:00
|
|
|
};
|
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
if filter(fd) {
|
|
|
|
if let Some(section) = ver.section() {
|
|
|
|
section_res = section;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(prio) = ver.priority_type() {
|
|
|
|
priority_res = prio;
|
|
|
|
}
|
2020-07-21 11:41:07 +00:00
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
// assume every package has only one origin file (not
|
|
|
|
// origin, but origin *file*, for some reason those seem to
|
|
|
|
// be different concepts in APT)
|
|
|
|
let mut origin_iter = ver.origin_iter();
|
|
|
|
let origin = origin_iter.next();
|
|
|
|
if let Some(origin) = origin {
|
|
|
|
|
|
|
|
if let Some(sd) = origin.short_desc() {
|
|
|
|
short_desc = sd;
|
2020-10-21 09:41:10 +00:00
|
|
|
}
|
2020-07-21 11:41:07 +00:00
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
if let Some(ld) = origin.long_desc() {
|
|
|
|
long_desc = ld;
|
|
|
|
}
|
2020-10-21 09:41:10 +00:00
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
// the package files appear in priority order, meaning
|
|
|
|
// the one for the candidate version is first - this is fine
|
|
|
|
// however, as the source package should be the same for all
|
|
|
|
// versions anyway
|
|
|
|
let mut pkg_iter = origin.file();
|
|
|
|
let pkg_file = pkg_iter.next();
|
|
|
|
if let Some(pkg_file) = pkg_file {
|
|
|
|
if let Some(origin_name) = pkg_file.origin() {
|
|
|
|
origin_res = origin_name;
|
2020-10-21 09:41:10 +00:00
|
|
|
}
|
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
let filename = pkg_file.file_name();
|
|
|
|
let component = pkg_file.component();
|
2020-07-21 11:41:07 +00:00
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
// build changelog URL from gathered information
|
|
|
|
// ignore errors, use empty changelog instead
|
|
|
|
let url = get_changelog_url(&package, &filename,
|
|
|
|
&version, &origin_res, &component);
|
|
|
|
if let Ok(url) = url {
|
|
|
|
change_log_url = url;
|
2020-07-21 11:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-21 09:41:10 +00:00
|
|
|
}
|
2020-10-21 09:41:14 +00:00
|
|
|
|
|
|
|
return Some(APTUpdateInfo {
|
|
|
|
package,
|
|
|
|
title: short_desc,
|
|
|
|
arch: view.arch(),
|
|
|
|
description: long_desc,
|
|
|
|
change_log_url,
|
|
|
|
origin: origin_res,
|
|
|
|
version: candidate_version.clone(),
|
|
|
|
old_version: current_version.clone(),
|
|
|
|
priority: priority_res,
|
|
|
|
section: section_res,
|
|
|
|
});
|
2020-07-21 11:41:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-21 09:41:14 +00:00
|
|
|
return None;
|
2020-07-21 11:41:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[api(
|
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
node: {
|
|
|
|
schema: NODE_SCHEMA,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
returns: {
|
|
|
|
description: "A list of packages with available updates.",
|
|
|
|
type: Array,
|
|
|
|
items: { type: APTUpdateInfo },
|
|
|
|
},
|
|
|
|
access: {
|
|
|
|
permission: &Permission::Privilege(&[], PRIV_SYS_AUDIT, false),
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// List available APT updates
|
|
|
|
fn apt_update_available(_param: Value) -> Result<Value, Error> {
|
2020-10-21 09:41:10 +00:00
|
|
|
let all_upgradeable = list_installed_apt_packages(|data|
|
|
|
|
data.candidate_version == data.active_version &&
|
|
|
|
data.installed_version != data.candidate_version
|
|
|
|
);
|
|
|
|
Ok(json!(all_upgradeable))
|
2020-07-21 11:41:07 +00:00
|
|
|
}
|
|
|
|
|
2020-07-23 09:19:52 +00:00
|
|
|
#[api(
|
2020-07-23 09:45:46 +00:00
|
|
|
protected: true,
|
2020-07-23 09:19:52 +00:00
|
|
|
input: {
|
|
|
|
properties: {
|
|
|
|
node: {
|
|
|
|
schema: NODE_SCHEMA,
|
|
|
|
},
|
|
|
|
quiet: {
|
|
|
|
description: "Only produces output suitable for logging, omitting progress indicators.",
|
|
|
|
type: bool,
|
|
|
|
default: false,
|
|
|
|
optional: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
returns: {
|
|
|
|
schema: UPID_SCHEMA,
|
|
|
|
},
|
|
|
|
access: {
|
|
|
|
permission: &Permission::Privilege(&[], PRIV_SYS_MODIFY, false),
|
|
|
|
},
|
|
|
|
)]
|
|
|
|
/// Update the APT database
|
|
|
|
pub fn apt_update_database(
|
|
|
|
quiet: Option<bool>,
|
|
|
|
rpcenv: &mut dyn RpcEnvironment,
|
|
|
|
) -> Result<String, Error> {
|
|
|
|
|
2020-08-06 13:46:01 +00:00
|
|
|
let userid: Userid = rpcenv.get_user().unwrap().parse()?;
|
2020-07-23 09:19:52 +00:00
|
|
|
let to_stdout = if rpcenv.env_type() == RpcEnvironmentType::CLI { true } else { false };
|
2020-07-23 10:25:20 +00:00
|
|
|
let quiet = quiet.unwrap_or(API_METHOD_APT_UPDATE_DATABASE_PARAM_DEFAULT_QUIET);
|
2020-07-23 09:19:52 +00:00
|
|
|
|
2020-08-06 13:46:01 +00:00
|
|
|
let upid_str = WorkerTask::new_thread("aptupdate", None, userid, to_stdout, move |worker| {
|
2020-07-23 09:19:52 +00:00
|
|
|
if !quiet { worker.log("starting apt-get update") }
|
|
|
|
|
|
|
|
// TODO: set proxy /etc/apt/apt.conf.d/76pbsproxy like PVE
|
|
|
|
|
|
|
|
let mut command = std::process::Command::new("apt-get");
|
|
|
|
command.arg("update");
|
|
|
|
|
|
|
|
let output = crate::tools::run_command(command, None)?;
|
|
|
|
if !quiet { worker.log(output) }
|
|
|
|
|
|
|
|
// TODO: add mail notify for new updates like PVE
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
})?;
|
|
|
|
|
|
|
|
Ok(upid_str)
|
|
|
|
}
|
|
|
|
|
2020-07-21 11:41:07 +00:00
|
|
|
const SUBDIRS: SubdirMap = &[
|
2020-07-23 09:19:52 +00:00
|
|
|
("update", &Router::new()
|
|
|
|
.get(&API_METHOD_APT_UPDATE_AVAILABLE)
|
|
|
|
.post(&API_METHOD_APT_UPDATE_DATABASE)
|
|
|
|
),
|
2020-07-21 11:41:07 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
pub const ROUTER: Router = Router::new()
|
|
|
|
.get(&list_subdirs_api_method!(SUBDIRS))
|
|
|
|
.subdirs(SUBDIRS);
|