// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : Structs.cs
// Version : 1.0
// Author(s) : Natalia Portillo
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
//
// --[ Description ] ----------------------------------------------------------
//
// Contains structures necessary for directly interfacing devices under FreeBSD
//
// --[ License ] --------------------------------------------------------------
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see .
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// ****************************************************************************/
// //$Id$
using System;
using System.Runtime.InteropServices;
namespace DiscImageChef.Devices.FreeBSD
{
struct ata_cmd
{
public CamAtaIoFlags flags;
public byte command;
public byte features;
public byte lba_low;
public byte lba_mid;
public byte lba_high;
public byte device;
public byte lba_low_exp;
public byte lba_mid_exp;
public byte lba_high_exp;
public byte features_exp;
public byte sector_count;
public byte sector_count_exp;
public byte control;
}
struct ata_res
{
public CamAtaIoFlags flags;
public byte status;
public byte error;
public byte lba_low;
public byte lba_mid;
public byte lba_high;
public byte device;
public byte lba_low_exp;
public byte lba_mid_exp;
public byte lba_high_exp;
public byte sector_count;
public byte sector_count_exp;
}
struct cam_pinfo
{
public UInt32 priority;
public UInt32 generation;
public int index;
}
struct camq_entry
{
///
/// LIST_ENTRY(ccb_hdr)=le->*le_next
///
public IntPtr le_next;
///
/// LIST_ENTRY(ccb_hdr)=le->**le_prev
///
public IntPtr le_prev;
///
/// SLIST_ENTRY(ccb_hdr)=sle->*sle_next
///
public IntPtr sle_next;
///
/// TAILQ_ENTRY(ccb_hdr)=tqe->*tqe_next
///
public IntPtr tqe_next;
///
/// TAILQ_ENTRY(ccb_hdr)=tqe->**tqe_prev
///
public IntPtr tqe_prev;
///
/// STAILQ_ENTRY(ccb_hdr)=stqe->*stqe_next
///
public IntPtr stqe_next;
}
struct timeval
{
public Int64 tv_sec;
/// long
public IntPtr tv_usec;
}
struct ccb_qos_area
{
public timeval etime;
public UIntPtr sim_data;
public UIntPtr periph_data;
}
struct ccb_hdr
{
public cam_pinfo pinfo;
public camq_entry xpt_links;
public camq_entry sim_links;
public camq_entry periph_links;
public UInt32 retry_count;
public IntPtr cbfcnp;
public xpt_opcode func_code;
public UInt32 status;
public IntPtr path;
public uint path_id;
public uint target_id;
public UInt64 target_lun;
public UInt32 flags;
public UInt32 xflags;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
public IntPtr[] periph_priv;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
public IntPtr[] sim_priv;
public ccb_qos_area qos;
public UInt32 timeout;
public timeval softtimeout;
}
struct scsi_sense_data
{
public byte error_code;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 251)]
public byte[] sense_buf;
}
///
/// SCSI I/O Request CCB used for the XPT_SCSI_IO and XPT_CONT_TARGET_IO function codes.
///
struct cdb_scsiio
{
public ccb_hdr ccb_h;
/// Ptr for next CCB for action
public IntPtr next_ccb;
/// Ptr to mapping info
public IntPtr req_map;
/// Ptr to the data buf/SG list
public IntPtr data_ptr;
/// Data transfer length
public UInt32 dxfer_len;
/// Autosense storage
public scsi_sense_data sense_data;
/// Number of bytes to autosense
public byte sense_len;
/// Number of bytes for the CDB
public byte cdb_len;
/// Number of SG list entries
public UInt16 sglist_cnt;
/// Returned SCSI status
public byte scsi_status;
/// Autosense resid length: 2's comp
public sbyte sense_resid;
/// Transfer residual length: 2's comp
public Int32 resid;
/// Union for CDB bytes/pointer
public IntPtr cdb_io;
/// Pointer to the message buffer
public IntPtr msg_ptr;
/// Number of bytes for the Message
public UInt16 msg_len;
/// What to do for tag queueing. The tag action should be either the define below (to send a non-tagged transaction) or one of the defined scsi tag messages from scsi_message.h.
public byte tag_action;
/// tag id from initator (target mode)
public UInt32 tag_id;
/// initiator id of who selected
public UInt32 init_id;
}
///
/// ATA I/O Request CCB used for the XPT_ATA_IO function code.
///
struct ccb_ataio
{
public ccb_hdr ccb_h;
/// Ptr for next CCB for action
public IntPtr next_ccb;
/// ATA command register set
public ata_cmd cmd;
/// ATA result register set
public ata_res res;
/// Ptr to the data buf/SG list
public IntPtr data_ptr;
/// Data transfer length
public UInt32 dxfer_len;
/// Transfer residual length: 2's comp
public Int32 resid;
/// What to do for tag queueing. The tag action should be either the define below (to send a non-tagged transaction) or one of the defined scsi tag messages from scsi_message.h.
public byte tag_action;
/// tag id from initator (target mode)
public UInt32 tag_id;
/// initiator id of who selected
public UInt32 init_id;
}
}