use std::path::{Path, PathBuf}; use std::collections::HashMap; use anyhow::{bail, Error}; use crate::{ api2::types::{ DeviceKind, OptionalDeviceIdentification, TapeDeviceInfo, }, tools::fs::scan_subdir, }; /// List linux tape changer devices pub fn linux_tape_changer_list() -> Vec { lazy_static::lazy_static!{ static ref SCSI_GENERIC_NAME_REGEX: regex::Regex = regex::Regex::new(r"^sg\d+$").unwrap(); } let mut list = Vec::new(); let dir_iter = match scan_subdir( libc::AT_FDCWD, "/sys/class/scsi_generic", &SCSI_GENERIC_NAME_REGEX) { Err(_) => return list, Ok(iter) => iter, }; for item in dir_iter { let item = match item { Err(_) => continue, Ok(item) => item, }; let name = item.file_name().to_str().unwrap().to_string(); let mut sys_path = PathBuf::from("/sys/class/scsi_generic"); sys_path.push(&name); let device = match udev::Device::from_syspath(&sys_path) { Err(_) => continue, Ok(device) => device, }; let devnum = match device.devnum() { None => continue, Some(devnum) => devnum, }; let parent = match device.parent() { None => continue, Some(parent) => parent, }; match parent.attribute_value("type") { Some(type_osstr) => { if type_osstr != "8" { continue; } } _ => { continue; } } // let mut test_path = sys_path.clone(); // test_path.push("device/scsi_changer"); // if !test_path.exists() { continue; } let _dev_path = match device.devnode().map(Path::to_owned) { None => continue, Some(dev_path) => dev_path, }; let serial = match device.property_value("ID_SCSI_SERIAL") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) { None => continue, Some(serial) => serial, }; let vendor = device.property_value("ID_VENDOR") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) .unwrap_or_else(|| String::from("unknown")); let model = device.property_value("ID_MODEL") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) .unwrap_or_else(|| String::from("unknown")); let dev_path = format!("/dev/tape/by-id/scsi-{}", serial); if PathBuf::from(&dev_path).exists() { list.push(TapeDeviceInfo { kind: DeviceKind::Changer, path: dev_path, serial, vendor, model, major: unsafe { libc::major(devnum) }, minor: unsafe { libc::minor(devnum) }, }); } } list } /// List linux tape devices (non-rewinding) pub fn linux_tape_device_list() -> Vec { lazy_static::lazy_static!{ static ref NST_TAPE_NAME_REGEX: regex::Regex = regex::Regex::new(r"^nst\d+$").unwrap(); } let mut list = Vec::new(); let dir_iter = match scan_subdir( libc::AT_FDCWD, "/sys/class/scsi_tape", &NST_TAPE_NAME_REGEX) { Err(_) => return list, Ok(iter) => iter, }; for item in dir_iter { let item = match item { Err(_) => continue, Ok(item) => item, }; let name = item.file_name().to_str().unwrap().to_string(); let mut sys_path = PathBuf::from("/sys/class/scsi_tape"); sys_path.push(&name); let device = match udev::Device::from_syspath(&sys_path) { Err(_) => continue, Ok(device) => device, }; let devnum = match device.devnum() { None => continue, Some(devnum) => devnum, }; let _dev_path = match device.devnode().map(Path::to_owned) { None => continue, Some(dev_path) => dev_path, }; let serial = match device.property_value("ID_SCSI_SERIAL") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) { None => continue, Some(serial) => serial, }; let vendor = device.property_value("ID_VENDOR") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) .unwrap_or_else(|| String::from("unknown")); let model = device.property_value("ID_MODEL") .map(std::ffi::OsString::from) .and_then(|s| if let Ok(s) = s.into_string() { Some(s) } else { None }) .unwrap_or_else(|| String::from("unknown")); let dev_path = format!("/dev/tape/by-id/scsi-{}-nst", serial); if PathBuf::from(&dev_path).exists() { list.push(TapeDeviceInfo { kind: DeviceKind::Tape, path: dev_path, serial, vendor, model, major: unsafe { libc::major(devnum) }, minor: unsafe { libc::minor(devnum) }, }); } } list } /// Test if a device exists, and returns associated `TapeDeviceInfo` pub fn lookup_device<'a>( devices: &'a[TapeDeviceInfo], path: &str, ) -> Option<&'a TapeDeviceInfo> { if let Ok(stat) = nix::sys::stat::stat(path) { let major = unsafe { libc::major(stat.st_rdev) }; let minor = unsafe { libc::minor(stat.st_rdev) }; devices.iter().find(|d| d.major == major && d.minor == minor) } else { None } } /// Lookup optional drive identification attributes pub fn lookup_device_identification<'a>( devices: &'a[TapeDeviceInfo], path: &str, ) -> OptionalDeviceIdentification { if let Some(info) = lookup_device(devices, path) { OptionalDeviceIdentification { vendor: Some(info.vendor.clone()), model: Some(info.model.clone()), serial: Some(info.serial.clone()), } } else { OptionalDeviceIdentification { vendor: None, model: None, serial: None, } } } /// Make sure path is a linux tape device pub fn check_drive_path( drives: &[TapeDeviceInfo], path: &str, ) -> Result<(), Error> { if lookup_device(drives, path).is_none() { bail!("path '{}' is not a linux (non-rewinding) tape device", path); } Ok(()) } // shell completion helper /// List changer device paths pub fn complete_changer_path(_arg: &str, _param: &HashMap) -> Vec { linux_tape_changer_list().iter().map(|v| v.path.clone()).collect() } /// List tape device paths pub fn complete_drive_path(_arg: &str, _param: &HashMap) -> Vec { linux_tape_device_list().iter().map(|v| v.path.clone()).collect() }