mod virtual_tape; mod linux_mtio; mod linux_tape; mod linux_list_drives; pub use linux_list_drives::*; use anyhow::{bail, format_err, Error}; use ::serde::{Deserialize}; use proxmox::tools::io::ReadExt; use proxmox::api::section_config::SectionConfigData; use crate::{ api2::types::{ VirtualTapeDrive, LinuxTapeDrive, }, tape::{ TapeWrite, TapeRead, MediaId, file_formats::{ PROXMOX_BACKUP_MEDIA_LABEL_MAGIC_1_0, PROXMOX_BACKUP_MEDIA_SET_LABEL_MAGIC_1_0, MediaLabel, MediaSetLabel, MediaContentHeader, }, changer::{ MediaChange, ChangeMediaEmail, }, }, }; /// Tape driver interface pub trait TapeDriver { /// Flush all data to the tape fn sync(&mut self) -> Result<(), Error>; /// Rewind the tape fn rewind(&mut self) -> Result<(), Error>; /// Move to end of recorded data /// /// We assume this flushes the tape write buffer. fn move_to_eom(&mut self) -> Result<(), Error>; /// Current file number fn current_file_number(&mut self) -> Result; /// Completely erase the media fn erase_media(&mut self, fast: bool) -> Result<(), Error>; /// Read/Open the next file fn read_next_file<'a>(&'a mut self) -> Result>, std::io::Error>; /// Write/Append a new file fn write_file<'a>(&'a mut self) -> Result, std::io::Error>; /// Write label to tape (erase tape content) fn label_tape(&mut self, label: &MediaLabel) -> Result<(), Error> { self.rewind()?; self.erase_media(true)?; let raw = serde_json::to_string_pretty(&serde_json::to_value(&label)?)?; let header = MediaContentHeader::new(PROXMOX_BACKUP_MEDIA_LABEL_MAGIC_1_0, raw.len() as u32); { let mut writer = self.write_file()?; writer.write_header(&header, raw.as_bytes())?; writer.finish(false)?; } self.sync()?; // sync data to tape Ok(()) } /// Write the media set label to tape fn write_media_set_label(&mut self, media_set_label: &MediaSetLabel) -> Result<(), Error>; /// Read the media label /// /// This tries to read both media labels (label and media_set_label). fn read_label(&mut self) -> Result, Error> { self.rewind()?; let label = { let mut reader = match self.read_next_file()? { None => return Ok(None), // tape is empty Some(reader) => reader, }; let header: MediaContentHeader = unsafe { reader.read_le_value()? }; header.check(PROXMOX_BACKUP_MEDIA_LABEL_MAGIC_1_0, 1, 64*1024)?; let data = reader.read_exact_allocated(header.size as usize)?; let label: MediaLabel = serde_json::from_slice(&data) .map_err(|err| format_err!("unable to parse drive label - {}", err))?; // make sure we read the EOF marker if reader.skip_to_end()? != 0 { bail!("got unexpected data after label"); } label }; let mut media_id = MediaId { label, media_set_label: None }; // try to read MediaSet label let mut reader = match self.read_next_file()? { None => return Ok(Some(media_id)), Some(reader) => reader, }; let header: MediaContentHeader = unsafe { reader.read_le_value()? }; header.check(PROXMOX_BACKUP_MEDIA_SET_LABEL_MAGIC_1_0, 1, 64*1024)?; let data = reader.read_exact_allocated(header.size as usize)?; let media_set_label: MediaSetLabel = serde_json::from_slice(&data) .map_err(|err| format_err!("unable to parse media set label - {}", err))?; // make sure we read the EOF marker if reader.skip_to_end()? != 0 { bail!("got unexpected data after media set label"); } media_id.media_set_label = Some(media_set_label); Ok(Some(media_id)) } /// Eject media fn eject_media(&mut self) -> Result<(), Error>; } /// Get the media changer (name + MediaChange) associated with a tape drie. /// /// If allow_email is set, returns an ChangeMediaEmail instance for /// standalone tape drives (changer name set to ""). pub fn media_changer( config: &SectionConfigData, drive: &str, allow_email: bool, ) -> Result<(Box, String), Error> { match config.sections.get(drive) { Some((section_type_name, config)) => { match section_type_name.as_ref() { "virtual" => { let tape = VirtualTapeDrive::deserialize(config)?; Ok((Box::new(tape), drive.to_string())) } "linux" => { let tape = LinuxTapeDrive::deserialize(config)?; match tape.changer { Some(ref changer_name) => { let changer_name = changer_name.to_string(); Ok((Box::new(tape), changer_name)) } None => { if !allow_email { bail!("drive '{}' has no changer device", drive); } let to = "root@localhost"; // fixme let changer = ChangeMediaEmail::new(drive, to); Ok((Box::new(changer), String::new())) }, } } _ => bail!("drive type '{}' not implemented!"), } } None => { bail!("no such drive '{}'", drive); } } } pub fn open_drive( config: &SectionConfigData, drive: &str, ) -> Result, Error> { match config.sections.get(drive) { Some((section_type_name, config)) => { match section_type_name.as_ref() { "virtual" => { let tape = VirtualTapeDrive::deserialize(config)?; let handle = tape.open() .map_err(|err| format_err!("open drive '{}' ({}) failed - {}", drive, tape.path, err))?; Ok(Box::new(handle)) } "linux" => { let tape = LinuxTapeDrive::deserialize(config)?; let handle = tape.open() .map_err(|err| format_err!("open drive '{}' ({}) failed - {}", drive, tape.path, err))?; Ok(Box::new(handle)) } _ => bail!("drive type '{}' not implemented!"), } } None => { bail!("no such drive '{}'", drive); } } } /// Requests a specific 'media' to be inserted into 'drive'. Within a /// loop, this then tries to read the media label and waits until it /// finds the requested media. /// /// Returns a handle to the opened drive and the media labels. pub fn request_and_load_media( config: &SectionConfigData, drive: &str, label: &MediaLabel, ) -> Result<( Box, MediaId, ), Error> { match config.sections.get(drive) { Some((section_type_name, config)) => { match section_type_name.as_ref() { "virtual" => { let mut drive = VirtualTapeDrive::deserialize(config)?; let changer_id = label.changer_id.clone(); drive.load_media(&changer_id)?; let mut handle = drive.open()?; if let Ok(Some(media_id)) = handle.read_label() { println!("found media label {} ({})", media_id.label.changer_id, media_id.label.uuid.to_string()); if media_id.label.uuid == label.uuid { return Ok((Box::new(handle), media_id)); } } bail!("read label failed (label all tapes first)"); } "linux" => { let tape = LinuxTapeDrive::deserialize(config)?; let id = label.changer_id.clone(); println!("Please insert media '{}' into drive '{}'", id, drive); loop { let mut handle = match tape.open() { Ok(handle) => handle, Err(_) => { eprintln!("tape open failed - test again in 5 secs"); std::thread::sleep(std::time::Duration::from_millis(5_000)); continue; } }; if let Ok(Some(media_id)) = handle.read_label() { println!("found media label {} ({})", media_id.label.changer_id, media_id.label.uuid.to_string()); if media_id.label.uuid == label.uuid { return Ok((Box::new(handle), media_id)); } } println!("read label failed - test again in 5 secs"); std::thread::sleep(std::time::Duration::from_millis(5_000)); } } _ => bail!("drive type '{}' not implemented!"), } } None => { bail!("no such drive '{}'", drive); } } }