mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Added support for list-devices on FreeBSD.
This commit is contained in:
@@ -63,7 +63,7 @@ namespace DiscImageChef.Decoders.SCSI
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(SCSIInquiryResponse.Length != SCSIInquiryResponse[4] + 5)
|
if(SCSIInquiryResponse.Length < SCSIInquiryResponse[4] + 5)
|
||||||
{
|
{
|
||||||
DicConsole.DebugWriteLine("SCSI INQUIRY decoder", "INQUIRY response length ({0} bytes) is different than specified in length field ({1} bytes), decoded data can be incorrect, not decoding.", SCSIInquiryResponse.Length, SCSIInquiryResponse[4] + 4);
|
DicConsole.DebugWriteLine("SCSI INQUIRY decoder", "INQUIRY response length ({0} bytes) is different than specified in length field ({1} bytes), decoded data can be incorrect, not decoding.", SCSIInquiryResponse.Length, SCSIInquiryResponse[4] + 4);
|
||||||
return null;
|
return null;
|
||||||
|
|||||||
@@ -53,6 +53,8 @@ namespace DiscImageChef.Devices
|
|||||||
return Windows.ListDevices.GetList();
|
return Windows.ListDevices.GetList();
|
||||||
case Interop.PlatformID.Linux:
|
case Interop.PlatformID.Linux:
|
||||||
return Linux.ListDevices.GetList();
|
return Linux.ListDevices.GetList();
|
||||||
|
case Interop.PlatformID.FreeBSD:
|
||||||
|
return FreeBSD.ListDevices.GetList();
|
||||||
default:
|
default:
|
||||||
throw new InvalidOperationException(string.Format("Platform {0} not yet supported.", Interop.DetectOS.GetRealPlatformID()));
|
throw new InvalidOperationException(string.Format("Platform {0} not yet supported.", Interop.DetectOS.GetRealPlatformID()));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,7 @@
|
|||||||
<Reference Include="System.Management" />
|
<Reference Include="System.Management" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Compile Include="FreeBSD\ListDevices.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Linux\Extern.cs" />
|
<Compile Include="Linux\Extern.cs" />
|
||||||
<Compile Include="Linux\Structs.cs" />
|
<Compile Include="Linux\Structs.cs" />
|
||||||
|
|||||||
@@ -265,7 +265,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
|
|
||||||
enum dev_match_type
|
enum dev_match_type
|
||||||
{
|
{
|
||||||
DEV_MATCH_PERIPH,
|
DEV_MATCH_PERIPH = 0,
|
||||||
DEV_MATCH_DEVICE,
|
DEV_MATCH_DEVICE,
|
||||||
DEV_MATCH_BUS
|
DEV_MATCH_BUS
|
||||||
}
|
}
|
||||||
@@ -385,5 +385,11 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
CAM_DEV_POS_EDT = 0x100,
|
CAM_DEV_POS_EDT = 0x100,
|
||||||
CAM_DEV_POS_PDRV = 0x200
|
CAM_DEV_POS_PDRV = 0x200
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum FreebsdIoctl : uint
|
||||||
|
{
|
||||||
|
CAMIOCOMMAND = 0xC4D81802,
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -64,6 +64,9 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
|
|
||||||
[DllImport("libcam", CharSet = CharSet.Ansi, SetLastError = true)]
|
[DllImport("libcam", CharSet = CharSet.Ansi, SetLastError = true)]
|
||||||
internal static extern int cam_send_ccb(IntPtr dev, IntPtr ccb);
|
internal static extern int cam_send_ccb(IntPtr dev, IntPtr ccb);
|
||||||
|
|
||||||
|
[DllImport("libc")]
|
||||||
|
internal static extern int ioctl(int fd, FreebsdIoctl request, IntPtr argp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
226
DiscImageChef.Devices/FreeBSD/ListDevices.cs
Normal file
226
DiscImageChef.Devices/FreeBSD/ListDevices.cs
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using DiscImageChef.Console;
|
||||||
|
using path_id_t = System.UInt32;
|
||||||
|
using target_id_t = System.UInt32;
|
||||||
|
using lun_id_t = System.UInt32;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Devices.FreeBSD
|
||||||
|
{
|
||||||
|
public static class ListDevices
|
||||||
|
{
|
||||||
|
const string XPT_DEVICE = "/dev/xpt0";
|
||||||
|
const path_id_t CAM_XPT_PATH_ID = 0xFFFFFFFF;
|
||||||
|
const target_id_t CAM_TARGET_WILDCARD = 0xFFFFFFFF;
|
||||||
|
const lun_id_t CAM_LUN_WILDCARD = 0xFFFFFFFF;
|
||||||
|
const int ccb_size = 1240;
|
||||||
|
|
||||||
|
public static DeviceInfo[] GetList()
|
||||||
|
{
|
||||||
|
int fd = Extern.open(XPT_DEVICE, FileFlags.ReadWrite);
|
||||||
|
|
||||||
|
// MMC support was added to CAM in FreeBSD 12
|
||||||
|
int not_mmc_data = Marshal.SizeOf(typeof(mmc_params));
|
||||||
|
if(Environment.OSVersion.Version.Major >= 12)
|
||||||
|
not_mmc_data = 0;
|
||||||
|
|
||||||
|
int dev_match_result_size = Marshal.SizeOf(typeof(dev_match_result)) - not_mmc_data;
|
||||||
|
|
||||||
|
if(fd == -1)
|
||||||
|
{
|
||||||
|
DicConsole.ErrorWriteLine("Error {0} opening {1}", Marshal.GetLastWin32Error(), XPT_DEVICE);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
int bufsize = dev_match_result_size * 100;
|
||||||
|
ccb_dev_match cdm = new ccb_dev_match();
|
||||||
|
cdm.ccb_h = new ccb_hdr();
|
||||||
|
cdm.ccb_h.path_id = CAM_XPT_PATH_ID;
|
||||||
|
cdm.ccb_h.target_id = CAM_TARGET_WILDCARD;
|
||||||
|
cdm.ccb_h.target_lun = CAM_LUN_WILDCARD;
|
||||||
|
cdm.ccb_h.func_code = xpt_opcode.XPT_DEV_MATCH;
|
||||||
|
cdm.match_buf_len = (uint)bufsize;
|
||||||
|
cdm.matches = Marshal.AllocHGlobal(bufsize);
|
||||||
|
|
||||||
|
IntPtr ccb = Marshal.AllocHGlobal(ccb_size);
|
||||||
|
Marshal.StructureToPtr(cdm, ccb, false);
|
||||||
|
int res = Extern.ioctl(fd, FreebsdIoctl.CAMIOCOMMAND, ccb);
|
||||||
|
|
||||||
|
if(res == -1)
|
||||||
|
{
|
||||||
|
DicConsole.ErrorWriteLine("Error {0} sending ioctl to CAM", Marshal.GetLastWin32Error());
|
||||||
|
Extern.close(fd);
|
||||||
|
Marshal.FreeHGlobal(cdm.matches);
|
||||||
|
Marshal.FreeHGlobal(ccb);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
cdm = (ccb_dev_match)Marshal.PtrToStructure(ccb, typeof(ccb_dev_match));
|
||||||
|
DicConsole.DebugWriteLine("FreeBSD devices", "CAM returned {0} matches", cdm.num_matches);
|
||||||
|
|
||||||
|
if(cdm.num_matches == 0)
|
||||||
|
return null;
|
||||||
|
|
||||||
|
dev_match_result[] matches = new dev_match_result[cdm.num_matches];
|
||||||
|
|
||||||
|
byte[] buffer = new byte[bufsize];
|
||||||
|
Marshal.Copy(cdm.matches, buffer, 0, bufsize);
|
||||||
|
|
||||||
|
List<DeviceInfo> listDevices = new List<DeviceInfo>();
|
||||||
|
DeviceInfo deviceInfo = new DeviceInfo();
|
||||||
|
bool pathFound = false;
|
||||||
|
bool skipDevice = false;
|
||||||
|
|
||||||
|
for(int i = 0; i < matches.Length; i++)
|
||||||
|
{
|
||||||
|
dev_match_type matchType = (dev_match_type)BitConverter.ToUInt32(buffer, i * dev_match_result_size);
|
||||||
|
|
||||||
|
if(matchType == dev_match_type.DEV_MATCH_DEVICE)
|
||||||
|
{
|
||||||
|
byte[] data = new byte[Marshal.SizeOf(typeof(device_match_result))];
|
||||||
|
Buffer.BlockCopy(buffer, (i * dev_match_result_size) + 4, data, 0,
|
||||||
|
Marshal.SizeOf(typeof(device_match_result)));
|
||||||
|
IntPtr matchPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(device_match_result)));
|
||||||
|
Marshal.Copy(data, 0, matchPtr, Marshal.SizeOf(typeof(device_match_result)));
|
||||||
|
device_match_result dmr =
|
||||||
|
(device_match_result)Marshal.PtrToStructure(matchPtr, typeof(device_match_result));
|
||||||
|
Marshal.FreeHGlobal(matchPtr);
|
||||||
|
|
||||||
|
if(dmr.flags.HasFlag(dev_result_flags.DEV_RESULT_UNCONFIGURED))
|
||||||
|
{
|
||||||
|
skipDevice = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(pathFound)
|
||||||
|
{
|
||||||
|
listDevices.Add(deviceInfo);
|
||||||
|
deviceInfo = new DeviceInfo();
|
||||||
|
pathFound = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.Console.WriteLine("{0}", dmr.protocol);
|
||||||
|
|
||||||
|
skipDevice = false;
|
||||||
|
switch(dmr.protocol)
|
||||||
|
{
|
||||||
|
case cam_proto.PROTO_ATA:
|
||||||
|
case cam_proto.PROTO_ATAPI:
|
||||||
|
case cam_proto.PROTO_SATAPM:
|
||||||
|
{
|
||||||
|
// Little-endian FreeBSD gives it resorted
|
||||||
|
// Big-endian FreeBSD, no idea
|
||||||
|
byte[] atad_tneid = new byte[512];
|
||||||
|
for(int aIndex = 0; aIndex < 512; aIndex += 2)
|
||||||
|
{
|
||||||
|
atad_tneid[aIndex] = dmr.ident_data[aIndex + 1];
|
||||||
|
atad_tneid[aIndex + 1] = dmr.ident_data[aIndex];
|
||||||
|
}
|
||||||
|
|
||||||
|
Decoders.ATA.Identify.IdentifyDevice? idt = Decoders.ATA.Identify.Decode(atad_tneid);
|
||||||
|
if(idt.HasValue)
|
||||||
|
{
|
||||||
|
string[] separated = idt.Value.Model.Split(' ');
|
||||||
|
|
||||||
|
if(separated.Length == 1)
|
||||||
|
{
|
||||||
|
deviceInfo.vendor = "ATA";
|
||||||
|
deviceInfo.model = separated[0];
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
deviceInfo.vendor = separated[0];
|
||||||
|
deviceInfo.model = separated[separated.Length - 1];
|
||||||
|
}
|
||||||
|
|
||||||
|
deviceInfo.serial = idt.Value.SerialNumber;
|
||||||
|
deviceInfo.bus = "ATA";
|
||||||
|
deviceInfo.supported = false;
|
||||||
|
}
|
||||||
|
if(dmr.protocol == cam_proto.PROTO_ATAPI)
|
||||||
|
goto case cam_proto.PROTO_SCSI;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case cam_proto.PROTO_SCSI:
|
||||||
|
{
|
||||||
|
|
||||||
|
Decoders.SCSI.Inquiry.SCSIInquiry? inq = Decoders.SCSI.Inquiry.Decode(dmr.inq_data);
|
||||||
|
if(inq.HasValue)
|
||||||
|
{
|
||||||
|
deviceInfo.vendor = StringHandlers.CToString(inq.Value.VendorIdentification).Trim();
|
||||||
|
deviceInfo.model = StringHandlers.CToString(inq.Value.ProductIdentification).Trim();
|
||||||
|
deviceInfo.bus = dmr.protocol == cam_proto.PROTO_ATAPI ? "ATAPI" : "SCSI";
|
||||||
|
deviceInfo.supported = false;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case cam_proto.PROTO_NVME:
|
||||||
|
deviceInfo.bus = "NVMe";
|
||||||
|
deviceInfo.supported = false;
|
||||||
|
break;
|
||||||
|
case cam_proto.PROTO_MMCSD:
|
||||||
|
if(!ArrayHelpers.ArrayIsNullOrEmpty(dmr.mmc_ident_data.model))
|
||||||
|
deviceInfo.model = StringHandlers.CToString(dmr.mmc_ident_data.model);
|
||||||
|
else
|
||||||
|
deviceInfo.model = string.Format("{0} card",
|
||||||
|
dmr.mmc_ident_data.card_features.HasFlag(mmc_card_features.CARD_FEATURE_SDIO)
|
||||||
|
? "SDIO"
|
||||||
|
: "Unknown");
|
||||||
|
|
||||||
|
if(dmr.mmc_ident_data.card_features.HasFlag(mmc_card_features.CARD_FEATURE_SD20) ||
|
||||||
|
dmr.mmc_ident_data.card_features.HasFlag(mmc_card_features.CARD_FEATURE_SDHC) ||
|
||||||
|
dmr.mmc_ident_data.card_features.HasFlag(mmc_card_features.CARD_FEATURE_SDIO))
|
||||||
|
deviceInfo.bus = "SD";
|
||||||
|
else if(dmr.mmc_ident_data.card_features.HasFlag(mmc_card_features.CARD_FEATURE_MMC))
|
||||||
|
deviceInfo.bus = "MMC";
|
||||||
|
else
|
||||||
|
deviceInfo.bus = "MMC/SD";
|
||||||
|
|
||||||
|
deviceInfo.supported = false;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
skipDevice = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(matchType == dev_match_type.DEV_MATCH_PERIPH)
|
||||||
|
{
|
||||||
|
if(skipDevice)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
byte[] data = new byte[Marshal.SizeOf(typeof(periph_match_result))];
|
||||||
|
Buffer.BlockCopy(buffer, (i * dev_match_result_size) + 4, data, 0,
|
||||||
|
Marshal.SizeOf(typeof(periph_match_result)));
|
||||||
|
IntPtr matchPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(periph_match_result)));
|
||||||
|
Marshal.Copy(data, 0, matchPtr, Marshal.SizeOf(typeof(periph_match_result)));
|
||||||
|
periph_match_result pmr =
|
||||||
|
(periph_match_result)Marshal.PtrToStructure(matchPtr, typeof(periph_match_result));
|
||||||
|
Marshal.FreeHGlobal(matchPtr);
|
||||||
|
|
||||||
|
if(deviceInfo.path == null || StringHandlers.CToString(pmr.periph_name) == "pass")
|
||||||
|
{
|
||||||
|
deviceInfo.path = string.Format("/dev/{0}{1}", StringHandlers.CToString(pmr.periph_name),
|
||||||
|
pmr.unit_number);
|
||||||
|
pathFound = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(pathFound)
|
||||||
|
listDevices.Add(deviceInfo);
|
||||||
|
|
||||||
|
|
||||||
|
Marshal.FreeHGlobal(cdm.matches);
|
||||||
|
Marshal.FreeHGlobal(ccb);
|
||||||
|
|
||||||
|
Extern.close(fd);
|
||||||
|
|
||||||
|
if(listDevices.Count > 0)
|
||||||
|
return listDevices.OrderBy(t => t.path).ToArray();
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -35,10 +35,11 @@ using System;
|
|||||||
using System.Runtime.InteropServices;
|
using System.Runtime.InteropServices;
|
||||||
using path_id_t = System.UInt32;
|
using path_id_t = System.UInt32;
|
||||||
using target_id_t = System.UInt32;
|
using target_id_t = System.UInt32;
|
||||||
using lun_id_t = System.UInt64;
|
using lun_id_t = System.UInt32;
|
||||||
|
|
||||||
namespace DiscImageChef.Devices.FreeBSD
|
namespace DiscImageChef.Devices.FreeBSD
|
||||||
{
|
{
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ata_cmd
|
struct ata_cmd
|
||||||
{
|
{
|
||||||
public CamAtaIoFlags flags;
|
public CamAtaIoFlags flags;
|
||||||
@@ -57,6 +58,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte control;
|
public byte control;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ata_res
|
struct ata_res
|
||||||
{
|
{
|
||||||
public CamAtaIoFlags flags;
|
public CamAtaIoFlags flags;
|
||||||
@@ -73,6 +75,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte sector_count_exp;
|
public byte sector_count_exp;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct cam_pinfo
|
struct cam_pinfo
|
||||||
{
|
{
|
||||||
public uint priority;
|
public uint priority;
|
||||||
@@ -80,7 +83,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public int index;
|
public int index;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct camq_entry
|
struct LIST_ENTRY
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// LIST_ENTRY(ccb_hdr)=le->*le_next
|
/// LIST_ENTRY(ccb_hdr)=le->*le_next
|
||||||
@@ -90,10 +93,18 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
/// LIST_ENTRY(ccb_hdr)=le->**le_prev
|
/// LIST_ENTRY(ccb_hdr)=le->**le_prev
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IntPtr le_prev;
|
public IntPtr le_prev;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct SLIST_ENTRY
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// SLIST_ENTRY(ccb_hdr)=sle->*sle_next
|
/// SLIST_ENTRY(ccb_hdr)=sle->*sle_next
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IntPtr sle_next;
|
public IntPtr sle_next;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct TAILQ_ENTRY
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// TAILQ_ENTRY(ccb_hdr)=tqe->*tqe_next
|
/// TAILQ_ENTRY(ccb_hdr)=tqe->*tqe_next
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@@ -102,12 +113,26 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
/// TAILQ_ENTRY(ccb_hdr)=tqe->**tqe_prev
|
/// TAILQ_ENTRY(ccb_hdr)=tqe->**tqe_prev
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IntPtr tqe_prev;
|
public IntPtr tqe_prev;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct STAILQ_ENTRY
|
||||||
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// STAILQ_ENTRY(ccb_hdr)=stqe->*stqe_next
|
/// STAILQ_ENTRY(ccb_hdr)=stqe->*stqe_next
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public IntPtr stqe_next;
|
public IntPtr stqe_next;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Explicit)]
|
||||||
|
struct camq_entry
|
||||||
|
{
|
||||||
|
[FieldOffset(0)] public LIST_ENTRY le;
|
||||||
|
[FieldOffset(0)] public SLIST_ENTRY sle;
|
||||||
|
[FieldOffset(0)] public TAILQ_ENTRY tqe;
|
||||||
|
[FieldOffset(0)] public STAILQ_ENTRY stqe;
|
||||||
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct timeval
|
struct timeval
|
||||||
{
|
{
|
||||||
public long tv_sec;
|
public long tv_sec;
|
||||||
@@ -115,6 +140,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public IntPtr tv_usec;
|
public IntPtr tv_usec;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_qos_area
|
struct ccb_qos_area
|
||||||
{
|
{
|
||||||
public timeval etime;
|
public timeval etime;
|
||||||
@@ -122,6 +148,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public UIntPtr periph_data;
|
public UIntPtr periph_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_hdr
|
struct ccb_hdr
|
||||||
{
|
{
|
||||||
public cam_pinfo pinfo;
|
public cam_pinfo pinfo;
|
||||||
@@ -147,6 +174,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public timeval softtimeout;
|
public timeval softtimeout;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct scsi_sense_data
|
struct scsi_sense_data
|
||||||
{
|
{
|
||||||
public byte error_code;
|
public byte error_code;
|
||||||
@@ -157,6 +185,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// SCSI I/O Request CCB used for the XPT_SCSI_IO and XPT_CONT_TARGET_IO function codes.
|
/// SCSI I/O Request CCB used for the XPT_SCSI_IO and XPT_CONT_TARGET_IO function codes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct cdb_scsiio
|
struct cdb_scsiio
|
||||||
{
|
{
|
||||||
public ccb_hdr ccb_h;
|
public ccb_hdr ccb_h;
|
||||||
@@ -199,6 +228,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// ATA I/O Request CCB used for the XPT_ATA_IO function code.
|
/// ATA I/O Request CCB used for the XPT_ATA_IO function code.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_ataio
|
struct ccb_ataio
|
||||||
{
|
{
|
||||||
public ccb_hdr ccb_h;
|
public ccb_hdr ccb_h;
|
||||||
@@ -222,6 +252,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public uint init_id;
|
public uint init_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct nvme_command
|
struct nvme_command
|
||||||
{
|
{
|
||||||
private ushort opc_fuse_rsvd1;
|
private ushort opc_fuse_rsvd1;
|
||||||
@@ -292,6 +323,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte rsvd1 => (byte)(opc_fuse_rsvd1 & 0x3F);
|
public byte rsvd1 => (byte)(opc_fuse_rsvd1 & 0x3F);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct nvme_status
|
struct nvme_status
|
||||||
{
|
{
|
||||||
private ushort status;
|
private ushort status;
|
||||||
@@ -327,6 +359,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte dnr => (byte)(status & 0x1);
|
public byte dnr => (byte)(status & 0x1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct nvme_completion
|
struct nvme_completion
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -360,6 +393,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// NVMe I/O Request CCB used for the XPT_NVME_IO and XPT_NVME_ADMIN function codes.
|
/// NVMe I/O Request CCB used for the XPT_NVME_IO and XPT_NVME_ADMIN function codes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_nvmeio
|
struct ccb_nvmeio
|
||||||
{
|
{
|
||||||
public ccb_hdr ccb_h;
|
public ccb_hdr ccb_h;
|
||||||
@@ -379,6 +413,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public ushort unused;
|
public ushort unused;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct periph_match_pattern
|
struct periph_match_pattern
|
||||||
{
|
{
|
||||||
private const int DEV_IDLEN = 16;
|
private const int DEV_IDLEN = 16;
|
||||||
@@ -391,12 +426,14 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public periph_pattern_flags flags;
|
public periph_pattern_flags flags;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct device_id_match_pattern
|
struct device_id_match_pattern
|
||||||
{
|
{
|
||||||
public byte id_len;
|
public byte id_len;
|
||||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte[] id;
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 256)] public byte[] id;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct scsi_static_inquiry_pattern
|
struct scsi_static_inquiry_pattern
|
||||||
{
|
{
|
||||||
private const int SID_VENDOR_SIZE = 8;
|
private const int SID_VENDOR_SIZE = 8;
|
||||||
@@ -409,12 +446,14 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SID_REVISION_SIZE + 1)] public byte[] revision;
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = SID_REVISION_SIZE + 1)] public byte[] revision;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Explicit)]
|
||||||
struct device_match_pattern_data
|
struct device_match_pattern_data
|
||||||
{
|
{
|
||||||
[FieldOffset(0)] public scsi_static_inquiry_pattern inq_pat;
|
[FieldOffset(0)] public scsi_static_inquiry_pattern inq_pat;
|
||||||
[FieldOffset(0)] public device_id_match_pattern devid_pat;
|
[FieldOffset(0)] public device_id_match_pattern devid_pat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct device_match_pattern
|
struct device_match_pattern
|
||||||
{
|
{
|
||||||
public path_id_t path_id;
|
public path_id_t path_id;
|
||||||
@@ -424,6 +463,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public device_match_pattern_data data;
|
public device_match_pattern_data data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct bus_match_pattern
|
struct bus_match_pattern
|
||||||
{
|
{
|
||||||
private const int DEV_IDLEN = 16;
|
private const int DEV_IDLEN = 16;
|
||||||
@@ -443,22 +483,24 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
[FieldOffset(0)] public bus_match_pattern bus_pattern;
|
[FieldOffset(0)] public bus_match_pattern bus_pattern;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct dev_match_pattern
|
struct dev_match_pattern
|
||||||
{
|
{
|
||||||
public dev_match_type type;
|
public dev_match_type type;
|
||||||
public match_pattern pattern;
|
public match_pattern pattern;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct periph_match_result
|
struct periph_match_result
|
||||||
{
|
{
|
||||||
private const int DEV_IDLEN = 16;
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 16)] public byte[] periph_name;
|
||||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte[] periph_name;
|
|
||||||
public uint unit_number;
|
public uint unit_number;
|
||||||
public path_id_t path_id;
|
public path_id_t path_id;
|
||||||
public target_id_t target_id;
|
public target_id_t target_id;
|
||||||
public lun_id_t target_lun;
|
public lun_id_t target_lun;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct mmc_cid
|
struct mmc_cid
|
||||||
{
|
{
|
||||||
public uint mid;
|
public uint mid;
|
||||||
@@ -471,6 +513,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte fwrev;
|
public byte fwrev;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct mmc_params
|
struct mmc_params
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -516,6 +559,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public byte sdio_func_count;
|
public byte sdio_func_count;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct device_match_result
|
struct device_match_result
|
||||||
{
|
{
|
||||||
public path_id_t path_id;
|
public path_id_t path_id;
|
||||||
@@ -527,13 +571,17 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public dev_result_flags flags;
|
public dev_result_flags flags;
|
||||||
public mmc_params mmc_ident_data;
|
public mmc_params mmc_ident_data;
|
||||||
}
|
}
|
||||||
struct bus_match_result {
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
|
struct bus_match_result
|
||||||
|
{
|
||||||
public path_id_t path_id;
|
public path_id_t path_id;
|
||||||
private const int DEV_IDLEN = 16;
|
private const int DEV_IDLEN = 16;
|
||||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte[] dev_name;
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = DEV_IDLEN)] public byte[] dev_name;
|
||||||
public uint unit_number;
|
public uint unit_number;
|
||||||
public uint bus_id;
|
public uint bus_id;
|
||||||
}
|
}
|
||||||
|
|
||||||
[StructLayout(LayoutKind.Explicit)]
|
[StructLayout(LayoutKind.Explicit)]
|
||||||
struct match_result
|
struct match_result
|
||||||
{
|
{
|
||||||
@@ -542,12 +590,14 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
[FieldOffset(0)] public bus_match_result bus_result;
|
[FieldOffset(0)] public bus_match_result bus_result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct dev_match_result
|
struct dev_match_result
|
||||||
{
|
{
|
||||||
public dev_match_type type;
|
public dev_match_type type;
|
||||||
public match_result result;
|
public match_result result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_dm_cookie
|
struct ccb_dm_cookie
|
||||||
{
|
{
|
||||||
public IntPtr bus;
|
public IntPtr bus;
|
||||||
@@ -557,6 +607,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public IntPtr pdrv;
|
public IntPtr pdrv;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_dev_position
|
struct ccb_dev_position
|
||||||
{
|
{
|
||||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public cam_generations[] generations;
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)] public cam_generations[] generations;
|
||||||
@@ -564,6 +615,7 @@ namespace DiscImageChef.Devices.FreeBSD
|
|||||||
public ccb_dm_cookie cookie;
|
public ccb_dm_cookie cookie;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[StructLayout(LayoutKind.Sequential)]
|
||||||
struct ccb_dev_match
|
struct ccb_dev_match
|
||||||
{
|
{
|
||||||
public ccb_hdr ccb_h;
|
public ccb_hdr ccb_h;
|
||||||
|
|||||||
Reference in New Issue
Block a user