renamed src/tape/sgutils2.rs -> src/tools/sgutils2.rs
This commit is contained in:
@ -6,11 +6,9 @@ use endian_trait::Endian;
|
||||
|
||||
use proxmox::tools::io::{ReadExt, WriteExt};
|
||||
|
||||
use crate::{
|
||||
tape::sgutils2::{
|
||||
SgRaw,
|
||||
alloc_page_aligned_buffer,
|
||||
},
|
||||
use crate::tools::sgutils2::{
|
||||
SgRaw,
|
||||
alloc_page_aligned_buffer,
|
||||
};
|
||||
|
||||
/// Test if drive supports hardware encryption
|
||||
|
@ -9,9 +9,9 @@ use proxmox::tools::io::ReadExt;
|
||||
|
||||
use crate::{
|
||||
api2::types::MamAttribute,
|
||||
tools::sgutils2::SgRaw,
|
||||
tape::{
|
||||
drive::TapeAlertFlags,
|
||||
sgutils2::SgRaw,
|
||||
},
|
||||
};
|
||||
|
||||
|
@ -5,11 +5,7 @@ use anyhow::{bail, format_err, Error};
|
||||
|
||||
use proxmox::tools::io::ReadExt;
|
||||
|
||||
use crate::{
|
||||
tape::{
|
||||
sgutils2::SgRaw,
|
||||
},
|
||||
};
|
||||
use crate::tools::sgutils2::SgRaw;
|
||||
|
||||
bitflags::bitflags!{
|
||||
|
||||
|
@ -7,11 +7,7 @@ use endian_trait::Endian;
|
||||
|
||||
use proxmox::tools::io::ReadExt;
|
||||
|
||||
use crate::{
|
||||
tape::{
|
||||
sgutils2::SgRaw,
|
||||
},
|
||||
};
|
||||
use crate::tools::sgutils2::SgRaw;
|
||||
|
||||
/// SCSI command to query volume statistics
|
||||
///
|
||||
|
@ -7,8 +7,6 @@ use proxmox::tools::fs::{
|
||||
CreateOptions,
|
||||
};
|
||||
|
||||
pub mod sgutils2;
|
||||
|
||||
pub mod file_formats;
|
||||
|
||||
mod tape_write;
|
||||
|
@ -1,268 +0,0 @@
|
||||
//! Bindings for libsgutils2
|
||||
//!
|
||||
//! Incomplete, but we currently do not need more.
|
||||
//!
|
||||
//! See: `/usr/include/scsi/sg_pt.h`
|
||||
|
||||
use std::os::unix::io::AsRawFd;
|
||||
|
||||
use anyhow::{bail, Error};
|
||||
use libc::{c_char, c_int};
|
||||
|
||||
// Opaque wrapper for sg_pt_base
|
||||
#[repr(C)]
|
||||
struct SgPtBase { _private: [u8; 0] }
|
||||
|
||||
impl Drop for SgPtBase {
|
||||
fn drop(&mut self) {
|
||||
unsafe { destruct_scsi_pt_obj(self as *mut SgPtBase) };
|
||||
}
|
||||
}
|
||||
|
||||
pub const SCSI_PT_RESULT_GOOD:c_int = 0;
|
||||
pub const SCSI_PT_RESULT_STATUS:c_int = 1;
|
||||
pub const SCSI_PT_RESULT_SENSE:c_int = 2;
|
||||
pub const SCSI_PT_RESULT_TRANSPORT_ERR:c_int = 3;
|
||||
pub const SCSI_PT_RESULT_OS_ERR:c_int = 4;
|
||||
|
||||
#[link(name = "sgutils2")]
|
||||
extern {
|
||||
|
||||
#[allow(dead_code)]
|
||||
fn scsi_pt_open_device(
|
||||
device_name: * const c_char,
|
||||
read_only: bool,
|
||||
verbose: c_int,
|
||||
) -> c_int;
|
||||
|
||||
fn sg_is_scsi_cdb(
|
||||
cdbp: *const u8,
|
||||
clen: c_int,
|
||||
) -> bool;
|
||||
|
||||
fn construct_scsi_pt_obj() -> *mut SgPtBase;
|
||||
fn destruct_scsi_pt_obj(objp: *mut SgPtBase);
|
||||
|
||||
fn set_scsi_pt_data_in(
|
||||
objp: *mut SgPtBase,
|
||||
dxferp: *const u8,
|
||||
dxfer_ilen: c_int,
|
||||
);
|
||||
|
||||
fn set_scsi_pt_data_out(
|
||||
objp: *mut SgPtBase,
|
||||
dxferp: *const u8,
|
||||
dxfer_olen: c_int,
|
||||
);
|
||||
|
||||
fn set_scsi_pt_cdb(
|
||||
objp: *mut SgPtBase,
|
||||
cdb: *const u8,
|
||||
cdb_len: c_int,
|
||||
);
|
||||
|
||||
fn set_scsi_pt_sense(
|
||||
objp: *mut SgPtBase,
|
||||
sense: *const u8,
|
||||
max_sense_len: c_int,
|
||||
);
|
||||
|
||||
fn do_scsi_pt(
|
||||
objp: *mut SgPtBase,
|
||||
fd: c_int,
|
||||
timeout_secs: c_int,
|
||||
verbose: c_int,
|
||||
) -> c_int;
|
||||
|
||||
fn get_scsi_pt_resid(objp: *const SgPtBase) -> c_int;
|
||||
|
||||
fn get_scsi_pt_sense_len(objp: *const SgPtBase) -> c_int;
|
||||
|
||||
fn get_scsi_pt_status_response(objp: *const SgPtBase) -> c_int;
|
||||
|
||||
#[allow(dead_code)]
|
||||
fn get_scsi_pt_result_category(objp: *const SgPtBase) -> c_int;
|
||||
}
|
||||
|
||||
/// Creates a `Box<SgPtBase>`
|
||||
///
|
||||
/// Which get automatically dropped, so you do not need to call
|
||||
/// destruct_scsi_pt_obj yourself.
|
||||
fn boxed_scsi_pt_obj() -> Result<Box<SgPtBase>, Error> {
|
||||
let objp = unsafe {
|
||||
construct_scsi_pt_obj()
|
||||
};
|
||||
if objp.is_null() {
|
||||
bail!("construct_scsi_pt_ob failed");
|
||||
}
|
||||
|
||||
Ok(unsafe { std::mem::transmute(objp)})
|
||||
}
|
||||
|
||||
/// Safe interface to run RAW SCSI commands
|
||||
pub struct SgRaw<'a, F> {
|
||||
file: &'a mut F,
|
||||
buffer: Box<[u8]>,
|
||||
sense_buffer: [u8; 32],
|
||||
}
|
||||
|
||||
/// Allocate a page aligned buffer
|
||||
///
|
||||
/// SG RAWIO commands needs page aligned transfer buffers.
|
||||
pub fn alloc_page_aligned_buffer(buffer_size: usize) -> Result<Box<[u8]> , Error> {
|
||||
let page_size = unsafe { libc::sysconf(libc::_SC_PAGESIZE) } as usize;
|
||||
let layout = std::alloc::Layout::from_size_align(buffer_size, page_size)?;
|
||||
let dinp = unsafe { std::alloc::alloc_zeroed(layout) };
|
||||
if dinp.is_null() {
|
||||
bail!("alloc SCSI output buffer failed");
|
||||
}
|
||||
|
||||
let buffer_slice = unsafe { std::slice::from_raw_parts_mut(dinp, buffer_size)};
|
||||
Ok(unsafe { Box::from_raw(buffer_slice) })
|
||||
}
|
||||
|
||||
impl <'a, F: AsRawFd> SgRaw<'a, F> {
|
||||
|
||||
/// Create a new instance to run commands
|
||||
///
|
||||
/// The file must be a handle to a SCSI device.
|
||||
pub fn new(file: &'a mut F, buffer_size: usize) -> Result<Self, Error> {
|
||||
|
||||
let buffer;
|
||||
|
||||
if buffer_size > 0 {
|
||||
buffer = alloc_page_aligned_buffer(buffer_size)?;
|
||||
} else {
|
||||
buffer = Box::new([]);
|
||||
}
|
||||
|
||||
let sense_buffer = [0u8; 32];
|
||||
|
||||
Ok(Self { file, buffer, sense_buffer })
|
||||
}
|
||||
|
||||
// create new object with initialized data_in and sense buffer
|
||||
fn create_boxed_scsi_pt_obj(&mut self) -> Result<Box<SgPtBase>, Error> {
|
||||
|
||||
let mut ptvp = boxed_scsi_pt_obj()?;
|
||||
|
||||
if self.buffer.len() > 0 {
|
||||
unsafe {
|
||||
set_scsi_pt_data_in(
|
||||
&mut *ptvp,
|
||||
self.buffer.as_ptr(),
|
||||
self.buffer.len() as c_int,
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
unsafe {
|
||||
set_scsi_pt_sense(
|
||||
&mut *ptvp,
|
||||
self.sense_buffer.as_ptr(),
|
||||
self.sense_buffer.len() as c_int,
|
||||
)
|
||||
};
|
||||
|
||||
Ok(ptvp)
|
||||
}
|
||||
|
||||
/// Run the specified RAW SCSI command
|
||||
pub fn do_command(&mut self, cmd: &[u8]) -> Result<&[u8], Error> {
|
||||
|
||||
if !unsafe { sg_is_scsi_cdb(cmd.as_ptr(), cmd.len() as c_int) } {
|
||||
bail!("no valid SCSI command");
|
||||
}
|
||||
|
||||
if self.buffer.len() < 16 {
|
||||
bail!("output buffer too small");
|
||||
}
|
||||
|
||||
let mut ptvp = self.create_boxed_scsi_pt_obj()?;
|
||||
|
||||
unsafe {
|
||||
set_scsi_pt_cdb(
|
||||
&mut *ptvp,
|
||||
cmd.as_ptr(),
|
||||
cmd.len() as c_int,
|
||||
)
|
||||
};
|
||||
|
||||
let res = unsafe { do_scsi_pt(&mut *ptvp, self.file.as_raw_fd(), 0, 0) };
|
||||
if res < 0 {
|
||||
let err = nix::Error::last();
|
||||
bail!("do_scsi_pt failed - {}", err);
|
||||
}
|
||||
if res != 0 {
|
||||
bail!("do_scsi_pt failed {}", res);
|
||||
}
|
||||
|
||||
// todo: what about sense data?
|
||||
let _sense_len = unsafe { get_scsi_pt_sense_len(&*ptvp) };
|
||||
|
||||
let status = unsafe { get_scsi_pt_status_response(&*ptvp) };
|
||||
if status != 0 {
|
||||
// toto: improve error reporting
|
||||
bail!("unknown scsi error - status response {}", status);
|
||||
}
|
||||
|
||||
let data_len = self.buffer.len() -
|
||||
(unsafe { get_scsi_pt_resid(&*ptvp) } as usize);
|
||||
if data_len == 0 {
|
||||
bail!("do_scsi_pt failed - no data received");
|
||||
}
|
||||
|
||||
Ok(&self.buffer[..data_len])
|
||||
}
|
||||
|
||||
/// Run dataout command
|
||||
///
|
||||
/// Note: use alloc_page_aligned_buffer to alloc data transfer buffer
|
||||
pub fn do_out_command(&mut self, cmd: &[u8], data: &[u8]) -> Result<(), Error> {
|
||||
|
||||
if !unsafe { sg_is_scsi_cdb(cmd.as_ptr(), cmd.len() as c_int) } {
|
||||
bail!("no valid SCSI command");
|
||||
}
|
||||
|
||||
let page_size = unsafe { libc::sysconf(libc::_SC_PAGESIZE) } as usize;
|
||||
if ((data.as_ptr() as usize) & (page_size -1)) != 0 {
|
||||
bail!("wrong transfer buffer alignment");
|
||||
}
|
||||
|
||||
let mut ptvp = self.create_boxed_scsi_pt_obj()?;
|
||||
|
||||
unsafe {
|
||||
set_scsi_pt_data_out(
|
||||
&mut *ptvp,
|
||||
data.as_ptr(),
|
||||
data.len() as c_int,
|
||||
);
|
||||
|
||||
set_scsi_pt_cdb(
|
||||
&mut *ptvp,
|
||||
cmd.as_ptr(),
|
||||
cmd.len() as c_int,
|
||||
);
|
||||
};
|
||||
|
||||
let res = unsafe { do_scsi_pt(&mut *ptvp, self.file.as_raw_fd(), 0, 0) };
|
||||
if res < 0 {
|
||||
let err = nix::Error::last();
|
||||
bail!("do_scsi_pt failed - {}", err);
|
||||
}
|
||||
if res != 0 {
|
||||
bail!("do_scsi_pt failed {}", res);
|
||||
}
|
||||
|
||||
// todo: what about sense data?
|
||||
let _sense_len = unsafe { get_scsi_pt_sense_len(&*ptvp) };
|
||||
|
||||
let status = unsafe { get_scsi_pt_status_response(&*ptvp) };
|
||||
if status != 0 {
|
||||
// toto: improve error reporting
|
||||
bail!("unknown scsi error - status response {}", status);
|
||||
}
|
||||
|
||||
Ok(())
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user