]> git.proxmox.com Git - proxmox-backup.git/blob - src/bin/proxmox_backup_client/mount.rs
typo fixes all over the place
[proxmox-backup.git] / src / bin / proxmox_backup_client / mount.rs
1 use std::collections::HashMap;
2 use std::ffi::OsStr;
3 use std::hash::BuildHasher;
4 use std::os::unix::io::AsRawFd;
5 use std::path::{Path, PathBuf};
6 use std::sync::Arc;
7
8 use anyhow::{bail, format_err, Error};
9 use futures::future::FutureExt;
10 use futures::select;
11 use futures::stream::{StreamExt, TryStreamExt};
12 use nix::unistd::{fork, ForkResult};
13 use serde_json::Value;
14 use tokio::signal::unix::{signal, SignalKind};
15
16 use proxmox::{sortable, identity};
17 use proxmox::api::{ApiHandler, ApiMethod, RpcEnvironment, schema::*, cli::*};
18 use proxmox::tools::fd::Fd;
19
20 use proxmox_backup::tools;
21 use proxmox_backup::backup::{
22 load_and_decrypt_key,
23 CryptConfig,
24 IndexFile,
25 BackupDir,
26 BackupGroup,
27 BufferedDynamicReader,
28 AsyncIndexReader,
29 };
30
31 use proxmox_backup::client::*;
32
33 use crate::{
34 REPO_URL_SCHEMA,
35 extract_repository_from_value,
36 complete_pxar_archive_name,
37 complete_img_archive_name,
38 complete_group_or_snapshot,
39 complete_repository,
40 record_repository,
41 connect,
42 api_datastore_latest_snapshot,
43 BufferedDynamicReadAt,
44 };
45
46 #[sortable]
47 const API_METHOD_MOUNT: ApiMethod = ApiMethod::new(
48 &ApiHandler::Sync(&mount),
49 &ObjectSchema::new(
50 "Mount pxar archive.",
51 &sorted!([
52 ("snapshot", false, &StringSchema::new("Group/Snapshot path.").schema()),
53 ("archive-name", false, &StringSchema::new("Backup archive name.").schema()),
54 ("target", false, &StringSchema::new("Target directory path.").schema()),
55 ("repository", true, &REPO_URL_SCHEMA),
56 ("keyfile", true, &StringSchema::new("Path to encryption key.").schema()),
57 ("verbose", true, &BooleanSchema::new("Verbose output and stay in foreground.").default(false).schema()),
58 ]),
59 )
60 );
61
62 #[sortable]
63 const API_METHOD_MAP: ApiMethod = ApiMethod::new(
64 &ApiHandler::Sync(&mount),
65 &ObjectSchema::new(
66 "Map a drive image from a VM backup to a local loopback device. Use 'unmap' to undo.
67 WARNING: Only do this with *trusted* backups!",
68 &sorted!([
69 ("snapshot", false, &StringSchema::new("Group/Snapshot path.").schema()),
70 ("archive-name", false, &StringSchema::new("Backup archive name.").schema()),
71 ("repository", true, &REPO_URL_SCHEMA),
72 ("keyfile", true, &StringSchema::new("Path to encryption key.").schema()),
73 ("verbose", true, &BooleanSchema::new("Verbose output and stay in foreground.").default(false).schema()),
74 ]),
75 )
76 );
77
78 #[sortable]
79 const API_METHOD_UNMAP: ApiMethod = ApiMethod::new(
80 &ApiHandler::Sync(&unmap),
81 &ObjectSchema::new(
82 "Unmap a loop device mapped with 'map' and release all resources.",
83 &sorted!([
84 ("name", true, &StringSchema::new(
85 concat!("Archive name, path to loopdev (/dev/loopX) or loop device number. ",
86 "Omit to list all current mappings and force cleaning up leftover instances.")
87 ).schema()),
88 ]),
89 )
90 );
91
92 pub fn mount_cmd_def() -> CliCommand {
93
94 CliCommand::new(&API_METHOD_MOUNT)
95 .arg_param(&["snapshot", "archive-name", "target"])
96 .completion_cb("repository", complete_repository)
97 .completion_cb("snapshot", complete_group_or_snapshot)
98 .completion_cb("archive-name", complete_pxar_archive_name)
99 .completion_cb("target", tools::complete_file_name)
100 }
101
102 pub fn map_cmd_def() -> CliCommand {
103
104 CliCommand::new(&API_METHOD_MAP)
105 .arg_param(&["snapshot", "archive-name"])
106 .completion_cb("repository", complete_repository)
107 .completion_cb("snapshot", complete_group_or_snapshot)
108 .completion_cb("archive-name", complete_img_archive_name)
109 }
110
111 pub fn unmap_cmd_def() -> CliCommand {
112
113 CliCommand::new(&API_METHOD_UNMAP)
114 .arg_param(&["name"])
115 .completion_cb("name", complete_mapping_names)
116 }
117
118 fn complete_mapping_names<S: BuildHasher>(_arg: &str, _param: &HashMap<String, String, S>)
119 -> Vec<String>
120 {
121 match tools::fuse_loop::find_all_mappings() {
122 Ok(mappings) => mappings
123 .filter_map(|(name, _)| {
124 tools::systemd::unescape_unit(&name).ok()
125 }).collect(),
126 Err(_) => Vec::new()
127 }
128 }
129
130 fn mount(
131 param: Value,
132 _info: &ApiMethod,
133 _rpcenv: &mut dyn RpcEnvironment,
134 ) -> Result<Value, Error> {
135
136 let verbose = param["verbose"].as_bool().unwrap_or(false);
137 if verbose {
138 // This will stay in foreground with debug output enabled as None is
139 // passed for the RawFd.
140 return proxmox_backup::tools::runtime::main(mount_do(param, None));
141 }
142
143 // Process should be daemonized.
144 // Make sure to fork before the async runtime is instantiated to avoid troubles.
145 let (pr, pw) = proxmox_backup::tools::pipe()?;
146 match unsafe { fork() } {
147 Ok(ForkResult::Parent { .. }) => {
148 drop(pw);
149 // Blocks the parent process until we are ready to go in the child
150 let _res = nix::unistd::read(pr.as_raw_fd(), &mut [0]).unwrap();
151 Ok(Value::Null)
152 }
153 Ok(ForkResult::Child) => {
154 drop(pr);
155 nix::unistd::setsid().unwrap();
156 proxmox_backup::tools::runtime::main(mount_do(param, Some(pw)))
157 }
158 Err(_) => bail!("failed to daemonize process"),
159 }
160 }
161
162 async fn mount_do(param: Value, pipe: Option<Fd>) -> Result<Value, Error> {
163 let repo = extract_repository_from_value(&param)?;
164 let archive_name = tools::required_string_param(&param, "archive-name")?;
165 let client = connect(&repo)?;
166
167 let target = param["target"].as_str();
168
169 record_repository(&repo);
170
171 let path = tools::required_string_param(&param, "snapshot")?;
172 let (backup_type, backup_id, backup_time) = if path.matches('/').count() == 1 {
173 let group: BackupGroup = path.parse()?;
174 api_datastore_latest_snapshot(&client, repo.store(), group).await?
175 } else {
176 let snapshot: BackupDir = path.parse()?;
177 (snapshot.group().backup_type().to_owned(), snapshot.group().backup_id().to_owned(), snapshot.backup_time())
178 };
179
180 let keyfile = param["keyfile"].as_str().map(PathBuf::from);
181 let crypt_config = match keyfile {
182 None => None,
183 Some(path) => {
184 println!("Encryption key file: '{:?}'", path);
185 let (key, _, fingerprint) = load_and_decrypt_key(&path, &crate::key::get_encryption_key_password)?;
186 println!("Encryption key fingerprint: '{}'", fingerprint);
187 Some(Arc::new(CryptConfig::new(key)?))
188 }
189 };
190
191 let server_archive_name = if archive_name.ends_with(".pxar") {
192 if target.is_none() {
193 bail!("use the 'mount' command to mount pxar archives");
194 }
195 format!("{}.didx", archive_name)
196 } else if archive_name.ends_with(".img") {
197 if target.is_some() {
198 bail!("use the 'map' command to map drive images");
199 }
200 format!("{}.fidx", archive_name)
201 } else {
202 bail!("Can only mount/map pxar archives and drive images.");
203 };
204
205 let client = BackupReader::start(
206 client,
207 crypt_config.clone(),
208 repo.store(),
209 &backup_type,
210 &backup_id,
211 backup_time,
212 true,
213 ).await?;
214
215 let (manifest, _) = client.download_manifest().await?;
216 manifest.check_fingerprint(crypt_config.as_ref().map(Arc::as_ref))?;
217
218 let file_info = manifest.lookup_file_info(&server_archive_name)?;
219
220 let daemonize = || -> Result<(), Error> {
221 if let Some(pipe) = pipe {
222 nix::unistd::chdir(Path::new("/")).unwrap();
223 // Finish creation of daemon by redirecting filedescriptors.
224 let nullfd = nix::fcntl::open(
225 "/dev/null",
226 nix::fcntl::OFlag::O_RDWR,
227 nix::sys::stat::Mode::empty(),
228 ).unwrap();
229 nix::unistd::dup2(nullfd, 0).unwrap();
230 nix::unistd::dup2(nullfd, 1).unwrap();
231 nix::unistd::dup2(nullfd, 2).unwrap();
232 if nullfd > 2 {
233 nix::unistd::close(nullfd).unwrap();
234 }
235 // Signal the parent process that we are done with the setup and it can
236 // terminate.
237 nix::unistd::write(pipe.as_raw_fd(), &[0u8])?;
238 let _: Fd = pipe;
239 }
240
241 Ok(())
242 };
243
244 let options = OsStr::new("ro,default_permissions");
245
246 // handle SIGINT and SIGTERM
247 let mut interrupt_int = signal(SignalKind::interrupt())?;
248 let mut interrupt_term = signal(SignalKind::terminate())?;
249
250 let mut interrupt = futures::future::select(interrupt_int.recv().boxed(), interrupt_term.recv().boxed());
251
252 if server_archive_name.ends_with(".didx") {
253 let index = client.download_dynamic_index(&manifest, &server_archive_name).await?;
254 let most_used = index.find_most_used_chunks(8);
255 let chunk_reader = RemoteChunkReader::new(client.clone(), crypt_config, file_info.chunk_crypt_mode(), most_used);
256 let reader = BufferedDynamicReader::new(index, chunk_reader);
257 let archive_size = reader.archive_size();
258 let reader: proxmox_backup::pxar::fuse::Reader =
259 Arc::new(BufferedDynamicReadAt::new(reader));
260 let decoder = proxmox_backup::pxar::fuse::Accessor::new(reader, archive_size).await?;
261
262 let session = proxmox_backup::pxar::fuse::Session::mount(
263 decoder,
264 &options,
265 false,
266 Path::new(target.unwrap()),
267 )
268 .map_err(|err| format_err!("pxar mount failed: {}", err))?;
269
270 daemonize()?;
271
272 select! {
273 res = session.fuse() => res?,
274 _ = interrupt => {
275 // exit on interrupted
276 }
277 }
278 } else if server_archive_name.ends_with(".fidx") {
279 let index = client.download_fixed_index(&manifest, &server_archive_name).await?;
280 let size = index.index_bytes();
281 let chunk_reader = RemoteChunkReader::new(client.clone(), crypt_config, file_info.chunk_crypt_mode(), HashMap::new());
282 let reader = AsyncIndexReader::new(index, chunk_reader);
283
284 let name = &format!("{}:{}/{}", repo.to_string(), path, archive_name);
285 let name_escaped = tools::systemd::escape_unit(name, false);
286
287 let mut session = tools::fuse_loop::FuseLoopSession::map_loop(size, reader, &name_escaped, options).await?;
288 let loopdev = session.loopdev_path.clone();
289
290 let (st_send, st_recv) = futures::channel::mpsc::channel(1);
291 let (mut abort_send, abort_recv) = futures::channel::mpsc::channel(1);
292 let mut st_recv = st_recv.fuse();
293 let mut session_fut = session.main(st_send, abort_recv).boxed().fuse();
294
295 // poll until loop file is mapped (or errors)
296 select! {
297 _res = session_fut => {
298 bail!("FUSE session unexpectedly ended before loop file mapping");
299 },
300 res = st_recv.try_next() => {
301 if let Err(err) = res {
302 // init went wrong, abort now
303 abort_send.try_send(()).map_err(|err|
304 format_err!("error while sending abort signal - {}", err))?;
305 // ignore and keep original error cause
306 let _ = session_fut.await;
307 return Err(err);
308 }
309 }
310 }
311
312 // daemonize only now to be able to print mapped loopdev or startup errors
313 println!("Image '{}' mapped on {}", name, loopdev);
314 daemonize()?;
315
316 // continue polling until complete or interrupted (which also happens on unmap)
317 select! {
318 res = session_fut => res?,
319 _ = interrupt => {
320 // exit on interrupted
321 abort_send.try_send(()).map_err(|err|
322 format_err!("error while sending abort signal - {}", err))?;
323 session_fut.await?;
324 }
325 }
326
327 println!("Image unmapped");
328 } else {
329 bail!("unknown archive file extension (expected .pxar or .img)");
330 }
331
332 Ok(Value::Null)
333 }
334
335 fn unmap(
336 param: Value,
337 _info: &ApiMethod,
338 _rpcenv: &mut dyn RpcEnvironment,
339 ) -> Result<Value, Error> {
340
341 let mut name = match param["name"].as_str() {
342 Some(name) => name.to_owned(),
343 None => {
344 tools::fuse_loop::cleanup_unused_run_files(None);
345 let mut any = false;
346 for (backing, loopdev) in tools::fuse_loop::find_all_mappings()? {
347 let name = tools::systemd::unescape_unit(&backing)?;
348 println!("{}:\t{}", loopdev.unwrap_or_else(|| "(unmapped)".to_string()), name);
349 any = true;
350 }
351 if !any {
352 println!("Nothing mapped.");
353 }
354 return Ok(Value::Null);
355 },
356 };
357
358 // allow loop device number alone
359 if let Ok(num) = name.parse::<u8>() {
360 name = format!("/dev/loop{}", num);
361 }
362
363 if name.starts_with("/dev/loop") {
364 tools::fuse_loop::unmap_loopdev(name)?;
365 } else {
366 let name = tools::systemd::escape_unit(&name, false);
367 tools::fuse_loop::unmap_name(name)?;
368 }
369
370 Ok(Value::Null)
371 }